mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-07 01:55:22 +00:00
b6d690c730
* CAPI-74: Move onto claim-centric design (#51) * CAPI-74: Move onto claim-centric design * CAPI-74: Redesign contractor schema in accordance with new partymgmt * FE-278: Redesign payout tool with aggregation instead of inclusion (#56) * FE-278: Redesign payout tool with aggregation instead of inclusion * FE-278: Add forgotten schema * CAPI-113: updated interface to match latest damsel (#57) * Merge master to epic/multiclaims (#72) * CAPI-153: Support of holds added (#70) * CAPI-153: Support of holds added * Added wrecker config for epic/* branches * Added event-batching support (#74) * Fixed some issues (#76) - removed acceptedAt from ClaimAccepted - added reason to ClaimRevoked - changed bankAccount to required in RussianLegalEntity * HG-192: Fix some party management related types (#77) * HG-192: Fix some party management related types (#78)
26 lines
718 B
YAML
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}$'
|