changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": {},
+ "properties": {
+ "access_note": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "What this connection could not return and what lifts it. Always pass this on to the user: it is the only place that information appears."
+ },
+ "available": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "False when this lane could not answer: a producer is dark, the pair sits outside this plan, or the argument named something we do not carry. Absent or true means the numbers are a real reading, not a guess."
+ },
+ "capped": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "applied": {
+ "description": "The value actually used.",
+ "type": "number"
+ },
+ "argument": {
+ "description": "Which argument was cut down, for example limit or hours.",
+ "type": "string"
+ },
+ "by": {
+ "description": "Why it was cut: keyless for the free ceiling, plan_max for a paid ceiling, tool_max for a ceiling no plan raises.",
+ "type": "string"
+ },
+ "max": {
+ "description": "The ceiling that applied.",
+ "type": "number"
+ },
+ "requested": {
+ "description": "The value the caller asked for.",
+ "type": "number"
+ }
+ },
+ "required": [
+ "argument",
+ "requested",
+ "applied",
+ "max",
+ "by"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Present only when an argument was cut down to a ceiling. Absent means nothing was clamped, so a smaller number than you asked for is the data and not a limit."
+ },
+ "coin": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The symbol asked for, when a single row was requested."
+ },
+ "coverage_note": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The same in one sentence, present only when something is missing."
+ },
+ "note": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "One line saying what the numbers cover, or why there are none. Read it before reporting any zero as a market reading."
+ },
+ "regime": {
+ "anyOf": [
+ {
+ "additionalProperties": {},
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The Bitcoin risk state: state, btc_price and breadth_pct. A null state means the field is absent, not neutral."
+ },
+ "returned": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "How many rows are in this reply."
+ },
+ "row": {
+ "anyOf": [
+ {
+ "additionalProperties": {},
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "That one symbol row: base, price_usd, chg_24h_pct, vol_usd_24h and oi_usd."
+ },
+ "rows": {
+ "anyOf": [
+ {
+ "items": {},
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The board, ranked by volume: base symbol, price, 24h change, 24h volume and open interest."
+ },
+ "total_rows": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "How many rows the whole board holds."
+ },
+ "totals": {
+ "description": "Market-wide totals: volume, open interest, forced closes and market cap."
+ },
+ "truncated": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "True when more rows matched than were returned, so what you have is a page and not the whole set."
+ },
+ "unavailable_fields": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Fields this snapshot is not carrying. They are null because the field is absent, NOT because the value is zero."
+ },
+ "updated_at": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "number"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "When the snapshot was published."
+ },
+ "whale_net_usd_24h": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Buys minus sells across the board over 24h. Null means the field is absent from this snapshot, not that flow was balanced."
+ }
+ },
+ "type": "object"
+}