swag-payments/spec/definitions/Contract.yaml

38 lines
1007 B
YAML
Raw Normal View History

description: Данные договора с участником
type: object
required:
- id
- createdAt
- status
- contractor
properties:
id:
description: Идентификатор договора
type: string
createdAt:
description: Дата и время создания договора
type: string
format: date-time
status:
description: Статус договора
type: string
enum:
- active
- terminated
validSince:
description: Дата и время вступления договора в силу
type: string
format: date-time
validUntil:
description: Дата и время прекращения силы договора
type: string
format: date-time
terminatedAt:
description: Дата и время расторжения договора
type: string
format: date-time
contractor:
$ref: '#/definitions/Contractor'
legalAgreement:
$ref: '#/definitions/LegalAgreement'