swag-payments/spec/definitions/RussianPrivateEntity.yaml
Evgeny Levenets 0ac84f2f71
CAPI-282: add private entity to public api (#218)
for proper wallet's contract decoding
2018-08-15 18:56:23 +03:00

26 lines
609 B
YAML

description: Физическое лицо под юрисдикцией РФ
type: object
allOf:
- $ref: '#/definitions/PrivateEntity'
- type: object
required:
- firstName
- secondName
- middleName
- contactInfo
properties:
firstName:
description: Имя
type: string
maxLength: 200
secondName:
description: Фамилия
type: string
maxLength: 200
middleName:
description: Отчество
type: string
maxLength: 200
contactInfo:
$ref: '#/definitions/ContactInfo'