mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-07 01:55:22 +00:00
22 lines
746 B
YAML
22 lines
746 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:
|
|
$ref: '#/definitions/InternationalCorrespondentBankAccount'
|