changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "dexes": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "chain": {
+ "type": "string"
+ },
+ "dex_id": {
+ "type": "string"
+ },
+ "dex_name": {
+ "type": "string"
+ },
+ "display_name": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "network_id": {
+ "type": "string"
+ },
+ "pools_count": {
+ "type": "number"
+ },
+ "protocol": {
+ "type": "string"
+ },
+ "txns_24h": {
+ "type": "number"
+ },
+ "volume_usd_24h": {
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "pools": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "chain": {
+ "description": "Network slug (e.g. 'ethereum'). Note: also exposed as 'network' on some endpoints.",
+ "type": "string"
+ },
+ "created_at": {
+ "description": "ISO 8601 pool-creation timestamp.",
+ "type": "string"
+ },
+ "created_at_block_number": {
+ "type": "number"
+ },
+ "dex_id": {
+ "type": "string"
+ },
+ "dex_name": {
+ "type": "string"
+ },
+ "fee": {
+ "description": "Pool fee (units depend on DEX; null for some DEXes).",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Pool contract address.",
+ "type": "string"
+ },
+ "last_price": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "last_price_usd": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "tokens": {
+ "items": {
+ "$ref": "#/properties/tokens/items"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "tokens": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "added_at": {
+ "description": "ISO 8601 timestamp when DexPaprika first indexed this token.",
+ "type": "string"
+ },
+ "chain": {
+ "type": "string"
+ },
+ "decimals": {
+ "type": "number"
+ },
+ "fdv": {
+ "description": "Fully-diluted valuation in USD.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Token contract address (chain-canonical form).",
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "symbol": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "tokens",
+ "pools",
+ "dexes"
+ ],
+ "type": "object"
+}