changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "gainers": {
+ "description": "Top 24h gainers in the requested segment",
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "id": {
+ "description": "Canonical coin ID (e.g. `bitcoin`)",
+ "type": "string"
+ },
+ "marketCap": {
+ "description": "Market cap in USD",
+ "type": "number"
+ },
+ "name": {
+ "description": "Human-readable name (e.g. `Bitcoin`)",
+ "type": "string"
+ },
+ "price": {
+ "description": "Current spot price in USD",
+ "type": "number"
+ },
+ "rank": {
+ "description": "Market cap rank (1 = largest)",
+ "type": "integer"
+ },
+ "symbol": {
+ "description": "Trading symbol (e.g. `btc`)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "symbol",
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "losers": {
+ "description": "Top 24h losers in the requested segment",
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "id": {
+ "description": "Canonical coin ID (e.g. `bitcoin`)",
+ "type": "string"
+ },
+ "marketCap": {
+ "description": "Market cap in USD",
+ "type": "number"
+ },
+ "name": {
+ "description": "Human-readable name (e.g. `Bitcoin`)",
+ "type": "string"
+ },
+ "price": {
+ "description": "Current spot price in USD",
+ "type": "number"
+ },
+ "rank": {
+ "description": "Market cap rank (1 = largest)",
+ "type": "integer"
+ },
+ "symbol": {
+ "description": "Trading symbol (e.g. `btc`)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "symbol",
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "gainers",
+ "losers"
+ ],
+ "type": "object"
+}