swag-payments/spec/definitions/Contract.yaml
Andrew Mayorov b6d690c730 HG-192: Move onto claim-centric design (#81)
* 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)
2017-07-17 14:46:51 +03:00

38 lines
1007 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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'