changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "average_price": {
+ "description": "Average sale price all-time",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "floor_price": {
+ "description": "Floor price in ETH or native token",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "intervals": {
+ "description": "Time-windowed statistics (24h, 7d, 30d)",
+ "items": {
+ "properties": {
+ "average_price": {
+ "description": "Average price in interval",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "sales": {
+ "description": "Number of sales in interval",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "volume": {
+ "description": "Volume in interval",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "volume_change_pct": {
+ "description": "Volume change percentage",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "window": {
+ "description": "Time interval (24h, 7d, 30d)",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "market_cap": {
+ "description": "Collection market cap",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "num_owners": {
+ "description": "Number of unique owners",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "slug": {
+ "description": "Collection slug",
+ "type": "string"
+ },
+ "total_sales": {
+ "description": "Total number of sales all-time",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "total_volume": {
+ "description": "Total trading volume all-time",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "slug",
+ "floor_price",
+ "market_cap",
+ "total_volume",
+ "total_sales",
+ "average_price",
+ "num_owners",
+ "intervals"
+ ],
+ "type": "object"
+}