RED-9749 - Remove notnull constraint

This commit is contained in:
Andrei Isvoran 2024-07-26 17:04:01 +03:00
parent b7c8c2b668
commit e73a4cb8a3
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;