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"
+ },
+ "page_info": {
+ "additionalProperties": true,
+ "properties": {
+ "limit": {
+ "description": "Items per page in the request.",
+ "type": "number"
+ },
+ "page": {
+ "description": "Current page number (1-indexed).",
+ "type": "number"
+ },
+ "total_items": {
+ "description": "Total number of items across all pages.",
+ "type": "number"
+ },
+ "total_pages": {
+ "description": "Total number of pages available.",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "dexes",
+ "page_info"
+ ],
+ "type": "object"
+}