swag-payments/spec/definitions/InvoiceTemplateCostFixed.yaml
Anton Belyaev 2e5cc1fb2b Introduce invoice templates (#79)
* introduce invoice templates
* refactor authorization description
* clarify auth description for Invoices operations
2017-07-26 19:06:15 +03:00

22 lines
775 B
YAML

type: object
allOf:
- $ref: '#/definitions/InvoiceTemplateCost'
- type: object
required:
- currency
- amount
properties:
currency:
description: |
Валюта, символьный код согласно
[ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm).
type: string
pattern: '^[A-Z]{3}$'
amount:
description: |
Стоимость предлагаемых товаров или услуг, в минорных денежных единицах,
например в копейках в случае указания российских рублей в качестве валюты.
type: integer
format: int64
minimum: 1