Skip to content

Commit

Permalink
Merge pull request #162 from /issues/161-document-data-id-optional
Browse files Browse the repository at this point in the history
Fix #161: Make documentDataId optional in request
  • Loading branch information
romanstrobl authored Jun 14, 2024
2 parents 245b171 + 6714911 commit 01f2134
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public record DocumentCreateRequest(
String documentType,
@NotBlank @Size(max = 32)
String dataType,
@NotBlank @Size(max = 255)
@Size(max = 255)
String documentDataId,
@Size(max = 255)
String externalId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public record DocumentUpdateRequest(
String documentType,
@NotBlank @Size(max = 32)
String dataType,
@NotBlank @Size(max = 255)
@Size(max = 255)
String documentDataId,
@Size(max = 255)
String externalId,
Expand Down

0 comments on commit 01f2134

Please sign in to comment.