{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OlapCollectionStatisticsResponse", "required": [ "highestSale", "items", "listed", "owners", "volume", "marketCap", "floorPrice" ], "type": "object", "properties": { "highestSale": { "description": "Highest worth transaction in collection", "type": "array", "items": { "$ref": "#/components/schemas/OlapCurrencyAmount" } }, "floorPrice": { "description": "Minimal price of nft in this collection available on rarible", "type": "array", "items": { "$ref": "#/components/schemas/OlapCurrencyAmount" } }, "marketCap": { "description": "Market cap of collection (floor price * total item supply)", "type": "array", "items": { "$ref": "#/components/schemas/OlapCurrencyAmount" } }, "volume": { "description": "Total worth of all transactions were made with nfts in this collection", "type": "array", "items": { "$ref": "#/components/schemas/OlapCurrencyAmount" } }, "listed": { "type": "integer", "description": "Amount of currently listed items", "format": "int32" }, "items": { "type": "integer", "description": "Total item supply of all nfts in the collection", "format": "int32" }, "owners": { "type": "integer", "description": "Current amount of unique owners who hold nfts of this collection", "format": "int32" } } }