{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://opensea.io/schemas/ToolPaymentStatsResponse", "title": "ToolPaymentStatsResponse", "type": "object", "properties": { "total_payments": { "type": "integer", "format": "int64" }, "total_volume_usd": { "type": "number", "format": "double" }, "unique_buyers": { "type": "integer", "format": "int64" }, "payments_last_24h": { "type": "integer", "format": "int64" }, "payments_last_7d": { "type": "integer", "format": "int64" } }, "required": [ "payments_last_24h", "payments_last_7d", "total_payments", "total_volume_usd", "unique_buyers" ] }