stats.json
1 { 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "type": "object", 4 "properties": { 5 "average_block_time": { 6 "type": ["string", "null", "number"] 7 }, 8 "coin_image": { 9 "type": ["null", "string"] 10 }, 11 "coin_price": { 12 "type": ["null", "number"] 13 }, 14 "coin_price_change_percentage": { 15 "type": ["null", "number"] 16 }, 17 "gas_price_updated_at": { 18 "type": "string", 19 "format": "date-time" 20 }, 21 "gas_prices": { 22 "type": "object", 23 "properties": { 24 "slow": { 25 "type": "number" 26 }, 27 "average": { 28 "type": "number" 29 }, 30 "fast": { 31 "type": "number" 32 } 33 }, 34 "required": ["slow", "average", "fast"] 35 }, 36 "gas_prices_update_in": { 37 "type": ["integer"] 38 }, 39 "gas_used_today": { 40 "type": ["string"] 41 }, 42 "market_cap": { 43 "type": "string" 44 }, 45 "network_utilization_percentage": { 46 "type": "number" 47 }, 48 "secondary_coin_image": { 49 "type": ["null", "string"] 50 }, 51 "secondary_coin_price": { 52 "type": ["null", "number"] 53 }, 54 "static_gas_price": { 55 "type": ["null", "number"] 56 }, 57 "total_addresses": { 58 "type": "string" 59 }, 60 "total_blocks": { 61 "type": "string" 62 }, 63 "total_gas_used": { 64 "type": "string" 65 }, 66 "total_transactions": { 67 "type": "string" 68 }, 69 "transactions_today": { 70 "type": "string" 71 }, 72 "tvl": { 73 "type": ["null", "number"] 74 } 75 } 76 } 77