RED-9749 - Remove notnull constraint #629

Merged
andrei.isvoran.ext merged 1 commits from RED-9749-fp into master 2024-07-29 08:15:10 +02:00
2 changed files with 0 additions and 3 deletions

View File

@ -14,11 +14,9 @@ import lombok.NonNull;
@Schema(description = "Object containing information about a component.")
public class ComponentDefinitionAddRequest {
@NonNull
@Schema(description = "The technical name of the component in snake case. Must be unique within the same dossier template.")
private String technicalName;
@NonNull
@Schema(description = "The display name of the component.")
private String displayName;

View File

@ -17,7 +17,6 @@ public class ComponentDefinitionUpdateRequest {
@Schema(description = "The id of the component.")
private String id;
@NonNull
@Schema(description = "The display name of the component.")
private String displayName;