swag-analytics/spec/definitions/BankAccount.yaml
ndiezel0 558c63b116
CAPI-381: Return missing definitions (#3)
* CAPI-381: Return missing definitions

* CAPI-381: Remove readOnly fields and remove fill info from descriptions
2019-09-11 19:29:46 +03:00

26 lines
718 B
YAML

description: |
Данные расчётного счёта в банковской организации, ведущей деятельность под
юрисдикцией РФ.
type: object
required:
- account
- bankName
- bankPostAccount
- bankBik
properties:
account:
description: Номер счёта
type: string
pattern: '^\d{20}$'
bankName:
description: Наименование юридического лица банковской организации
type: string
maxLength: 100
bankPostAccount:
type: string
pattern: '^\d{20}$'
bankBik:
description: БИК банковской организации
type: string
pattern: '^\d{9}$'