{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OlapCollectionLeaderboardItem", "required": [ "id", "sales", "volume", "floorHistory", "globalStats" ], "type": "object", "properties": { "id": { "type": "string", "description": "Identifier of collection" }, "sales": { "type": "integer", "format": "int64" }, "volume": { "$ref": "#/components/schemas/OlapPriceWithUsd" }, "floorChangePercent": { "type": "number", "format": "bigdecimal" }, "floorHistory": { "$ref": "#/components/schemas/OlapHistoryValuesByTimestamps" }, "globalStats": { "$ref": "#/components/schemas/OlapCollectionLeaderboardStatistics" } } }