{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/mojang/refs/heads/main/json-schema/public-api-sale-statistics-schema.json", "title": "SaleStatistics", "description": "Aggregate sale figures.", "type": "object", "properties": { "total": { "type": "integer", "description": "Total units sold across the requested SKUs.", "example": 41000000 }, "last24h": { "type": "integer", "description": "Units sold in the last 24 hours.", "example": 75000 }, "saleVelocityPerSeconds": { "type": "number", "format": "float", "description": "Recent average sales per second.", "example": 0.85 } } }