mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-06 09:35:22 +00:00
0ac84f2f71
for proper wallet's contract decoding
26 lines
609 B
YAML
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'
|