{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OlapTrendingCollectionEntry", "required": [ "id", "numberOfSales", "volumeNative", "volumeUsd" ], "type": "object", "properties": { "id": { "type": "string", "description": "Identifier of collection" }, "numberOfSales": { "$ref": "#/components/schemas/OlapIntegerNumberWithChange" }, "volumeUsd": { "$ref": "#/components/schemas/OlapCurrencyAmountWithChange" }, "volumeNative": { "$ref": "#/components/schemas/OlapCurrencyAmount" }, "floorPrice": { "$ref": "#/components/schemas/OlapCurrencyAmount" } } }