From 9749b6421442d55700ccda15c7ca25a479d5a464 Mon Sep 17 00:00:00 2001 From: Lightspark Eng Date: Fri, 26 Jun 2026 18:03:52 +0000 Subject: [PATCH] chore: Sync account schemas --- mintlify/openapi.yaml | 14 ++++++++++++++ openapi.yaml | 14 ++++++++++++++ .../schemas/common/GtqAccountInfoBase.yaml | 7 +++++++ .../schemas/common/JmdAccountInfoBase.yaml | 7 +++++++ 4 files changed, 42 insertions(+) diff --git a/mintlify/openapi.yaml b/mintlify/openapi.yaml index 65956615a..bdf070f87 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 65956615a..bdf070f87 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 026f3e2a2..2aa3f12a6 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 7449ae1d1..14a4cb3a6 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