Skip to content

Commit 4fdba37

Browse files
authoredJun 24, 2024··
Patterns of IDs have been generalized.
1 parent 064eda8 commit 4fdba37

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎openapi.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -167,15 +167,15 @@ components:
167167
messageId:
168168
description: Unique ID of the message
169169
type: string
170-
pattern: "^[ -~]{35,50}$"
171-
minLength: 35
172-
maxLength: 50
170+
pattern: "^[ -~]{24,64}$"
171+
minLength: 24
172+
maxLength: 64
173173
recipientId:
174-
description: ID (tax code) of the recipient
174+
description: ID of the recipient
175175
type: string
176-
pattern: "^(([A-Z]{6}\\d{2}[A-Z]\\d{2}[A-Z]\\d{3}[A-Z])|(\\d{11}))$"
177-
minLength: 11
178-
maxLength: 16
176+
pattern: "^[ -~]{8,64}$"
177+
minLength: 8
178+
maxLength: 64
179179
triggerDateTime:
180180
description: When (date and time) the subject who originated the message requested to send it
181181
type: string

0 commit comments

Comments
 (0)
Please sign in to comment.