{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OlapCollectionStatsVolumeChangeData", "type": "object", "required": [ "period", "currencyId", "volumeNative", "volumeUsd", "updatedAt" ], "properties": { "period": { "$ref": "#/components/schemas/OlapPeriod" }, "currencyId": { "$ref": "#/components/schemas/CurrencyId" }, "volumeNative": { "type": "number", "format": "bigdecimal", "description": "volume in native currency for the given period, if period is null it is total volume" }, "volumeUsd": { "type": "number", "format": "bigdecimal", "description": "volume in usd for the given period, if period is null it is total volume" }, "updatedAt": { "type": "string", "format": "date-time", "description": "when the value was updated" } } }