mirror of
https://github.com/valitydev/swag-analytics.git
synced 2024-11-06 16:55:21 +00:00
0fa13899d8
This is used for things like shop balances which may often be zero and occasionally negative.
18 lines
561 B
YAML
18 lines
561 B
YAML
type: object
|
|
allOf:
|
|
- type: object
|
|
required:
|
|
- amount
|
|
- currency
|
|
properties:
|
|
amount:
|
|
description: |
|
|
Стоимость предлагаемых товаров или услуг, в минорных денежных
|
|
единицах, например в копейках в случае указания российских рублей в
|
|
качестве валюты.
|
|
type: integer
|
|
format: int64
|
|
currency:
|
|
x-merge-obj:
|
|
- $ref: '#/definitions/Currency'
|