mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-07 01:55:22 +00:00
2e5cc1fb2b
* introduce invoice templates * refactor authorization description * clarify auth description for Invoices operations
22 lines
775 B
YAML
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
|