swag-payments/spec/definitions/InvoiceLine.yaml
2019-04-12 13:28:55 +03:00

36 lines
1.1 KiB
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:
- product
- quantity
- price
properties:
product:
description: Описание предлагаемого товара или услуги
type: string
maxLength: 1000
quantity:
description: |
Количество единиц товаров или услуг, предлагаемых в этой
позиции
type: integer
format: int64
minimum: 1
default: 1
price:
description: |
Цена предлагаемого товара или услуги, в минорных денежных единицах, например
в копейках в случае указания российских рублей в качестве валюты
type: integer
format: int64
minimum: 1
cost:
description: |
Суммарная стоимость позиции с учётом количества единиц товаров или услуг
type: integer
format: int64
minimum: 1
readOnly: true
taxMode:
$ref: '#/definitions/InvoiceLineTaxMode'