Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4738,9 +4738,9 @@ paths:
properties:
remittanceData:
type: string
description: Remittance information for Real-Time Payments, providing context about the payment purpose
description: 'Remittance information for Real-Time Payments, providing context about the payment purpose. Acceptable characters: alphanumeric (0-9, a-z, A-Z), space, and special characters (#,.''&/-@!$%*()_+={}|:;`[]^~\")'
maxLength: 140
pattern: ^[A-Za-z0-9\s\-_\.\/\(\),]*$
pattern: '^[0-9a-zA-Z #,.''&/\-@!$%*()_+={}|:;`\[\]\^\~\\"]+$'
example: ABC_123 Remittance Data
instantDetails:
type: object
Expand All @@ -4752,9 +4752,9 @@ paths:
properties:
remittanceData:
type: string
description: Remittance information for Instant Payments (RTP/FedNow), providing context about the payment purpose
description: 'Remittance information for Instant Payments (RTP/FedNow), providing context about the payment purpose. Acceptable characters: alphanumeric (0-9, a-z, A-Z), space, and special characters (#,.''&/-@!$%*()_+={}|:;`[]^~\")'
maxLength: 140
pattern: ^[A-Za-z0-9\s\-_\.\/\(\),]*$
pattern: '^[0-9a-zA-Z #,.''&/\-@!$%*()_+={}|:;`\[\]\^\~\\"]+$'
example: ABC_123 Remittance Data
correlationId:
type: string
Expand Down
8 changes: 4 additions & 4 deletions specs/resources/transfers/initiateTransfer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -405,9 +405,9 @@ post:
properties:
remittanceData:
type: string
description: "Remittance information for Real-Time Payments, providing context about the payment purpose"
description: "Remittance information for Real-Time Payments, providing context about the payment purpose. Acceptable characters: alphanumeric (0-9, a-z, A-Z), space, and special characters (#,.'&/-@!$%*()_+={}|:;`[]^~\\\")"
maxLength: 140
pattern: '^[A-Za-z0-9\s\-_\.\/\(\),]*$'
pattern: '^[0-9a-zA-Z #,.''&/\-@!$%*()_+={}|:;`\[\]\^\~\\"]+$'
example: "ABC_123 Remittance Data"
instantDetails:
type: object
Expand All @@ -419,9 +419,9 @@ post:
properties:
remittanceData:
type: string
description: "Remittance information for Instant Payments (RTP/FedNow), providing context about the payment purpose"
description: "Remittance information for Instant Payments (RTP/FedNow), providing context about the payment purpose. Acceptable characters: alphanumeric (0-9, a-z, A-Z), space, and special characters (#,.'&/-@!$%*()_+={}|:;`[]^~\\\")"
maxLength: 140
pattern: '^[A-Za-z0-9\s\-_\.\/\(\),]*$'
pattern: '^[0-9a-zA-Z #,.''&/\-@!$%*()_+={}|:;`\[\]\^\~\\"]+$'
example: "ABC_123 Remittance Data"
correlationId:
type: string
Expand Down