mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-07 09:58:57 +00:00
24 lines
860 B
YAML
24 lines
860 B
YAML
description: Данные международного банковского счёта
|
|
type: object
|
|
properties:
|
|
number:
|
|
description: |
|
|
Номер счёта
|
|
type: string
|
|
pattern: '^[0-9A-Z]{8,40}$'
|
|
example: "123006951"
|
|
iban:
|
|
description: |
|
|
International Bank Account Number [ISO 13616](https://en.wikipedia.org/wiki/International_Bank_Account_Number)
|
|
|
|
_* Если `iban` задан, `bankDetails` не обязательны к заполнению._
|
|
type: string
|
|
pattern: '^[A-Z0-9]{14,35}$'
|
|
example: "GR1601101250000000012300695"
|
|
bankDetails:
|
|
$ref: '#/definitions/InternationalBankDetails'
|
|
correspondentBankAccount:
|
|
allOf:
|
|
- description: Данные корреспондентского счёта указанного банка
|
|
- $ref: '#/definitions/InternationalBankAccount'
|