diff --git a/mintlify/openapi.yaml b/mintlify/openapi.yaml index 65956615..bdf070f8 100644 --- a/mintlify/openapi.yaml +++ b/mintlify/openapi.yaml @@ -12216,6 +12216,7 @@ components: - accountType - accountNumber - bankAccountType + - bankName properties: accountType: type: string @@ -12232,10 +12233,16 @@ components: enum: - CHECKING - SAVINGS + bankName: + type: string + description: The name of the bank + minLength: 1 + maxLength: 255 example: accountType: GTQ_ACCOUNT accountNumber: '1234567890' bankAccountType: CHECKING + bankName: Example Bank GtqAccountInfo: allOf: - $ref: '#/components/schemas/GtqAccountInfoBase' @@ -12315,6 +12322,7 @@ components: - accountNumber - branchCode - bankAccountType + - bankName properties: accountType: type: string @@ -12337,11 +12345,17 @@ components: enum: - CHECKING - SAVINGS + bankName: + type: string + description: The name of the bank + minLength: 1 + maxLength: 255 example: accountType: JMD_ACCOUNT accountNumber: '1234567890' branchCode: '11111' bankAccountType: CHECKING + bankName: Example Bank JmdAccountInfo: allOf: - $ref: '#/components/schemas/JmdAccountInfoBase' diff --git a/openapi.yaml b/openapi.yaml index 65956615..bdf070f8 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -12216,6 +12216,7 @@ components: - accountType - accountNumber - bankAccountType + - bankName properties: accountType: type: string @@ -12232,10 +12233,16 @@ components: enum: - CHECKING - SAVINGS + bankName: + type: string + description: The name of the bank + minLength: 1 + maxLength: 255 example: accountType: GTQ_ACCOUNT accountNumber: '1234567890' bankAccountType: CHECKING + bankName: Example Bank GtqAccountInfo: allOf: - $ref: '#/components/schemas/GtqAccountInfoBase' @@ -12315,6 +12322,7 @@ components: - accountNumber - branchCode - bankAccountType + - bankName properties: accountType: type: string @@ -12337,11 +12345,17 @@ components: enum: - CHECKING - SAVINGS + bankName: + type: string + description: The name of the bank + minLength: 1 + maxLength: 255 example: accountType: JMD_ACCOUNT accountNumber: '1234567890' branchCode: '11111' bankAccountType: CHECKING + bankName: Example Bank JmdAccountInfo: allOf: - $ref: '#/components/schemas/JmdAccountInfoBase' diff --git a/openapi/components/schemas/common/GtqAccountInfoBase.yaml b/openapi/components/schemas/common/GtqAccountInfoBase.yaml index 026f3e2a..2aa3f12a 100644 --- a/openapi/components/schemas/common/GtqAccountInfoBase.yaml +++ b/openapi/components/schemas/common/GtqAccountInfoBase.yaml @@ -3,6 +3,7 @@ required: - accountType - accountNumber - bankAccountType +- bankName properties: accountType: type: string @@ -19,7 +20,13 @@ properties: enum: - CHECKING - SAVINGS + bankName: + type: string + description: The name of the bank + minLength: 1 + maxLength: 255 example: accountType: GTQ_ACCOUNT accountNumber: '1234567890' bankAccountType: CHECKING + bankName: Example Bank diff --git a/openapi/components/schemas/common/JmdAccountInfoBase.yaml b/openapi/components/schemas/common/JmdAccountInfoBase.yaml index 7449ae1d..14a4cb3a 100644 --- a/openapi/components/schemas/common/JmdAccountInfoBase.yaml +++ b/openapi/components/schemas/common/JmdAccountInfoBase.yaml @@ -4,6 +4,7 @@ required: - accountNumber - branchCode - bankAccountType +- bankName properties: accountType: type: string @@ -26,8 +27,14 @@ properties: enum: - CHECKING - SAVINGS + bankName: + type: string + description: The name of the bank + minLength: 1 + maxLength: 255 example: accountType: JMD_ACCOUNT accountNumber: '1234567890' branchCode: '11111' bankAccountType: CHECKING + bankName: Example Bank