changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "available": {
+ "description": "False when this call has no data — a snapshot that is not warm yet, a domain switched off, or an argument that was rejected. NOT an error, and NOT a statement about the market.",
+ "type": "boolean"
+ },
+ "fetchedAt": {
+ "description": "When the underlying snapshot was refreshed (epoch ms, or ISO-8601 for the Bitcoin cycle feed). Age matters: these are cached reads, not live queries."
+ },
+ "limit": {
+ "description": "Row cap applied to every list in this payload.",
+ "type": "number"
+ },
+ "lookbackHours": {
+ "description": "Window scanned."
+ },
+ "minCollateralUsd": {
+ "description": "USD size a ticket had to clear."
+ },
+ "priceFloor": {
+ "description": "Entry price a ticket had to clear, 0-1."
+ },
+ "reason": {
+ "description": "Why the payload is absent, when `available` is false.",
+ "type": "string"
+ },
+ "stale": {
+ "description": "True when the snapshot is past its refresh interval."
+ },
+ "totals": {
+ "additionalProperties": true,
+ "description": "Totals across the surface.",
+ "properties": {
+ "collateralUsd": {
+ "description": "USD collateral behind them."
+ },
+ "spreadUsd": {
+ "description": "USD spread to resolution."
+ },
+ "trades": {
+ "description": "Tickets counted."
+ }
+ }
+ },
+ "trades": {
+ "description": "Redemption-arb tickets — near-certain outcomes still trading below $1.",
+ "items": {},
+ "type": "array"
+ },
+ "truncated": {
+ "additionalProperties": true,
+ "description": "Present only when a list was cut to `limit`.",
+ "properties": {
+ "limit": {
+ "description": "The cap that was applied.",
+ "type": "number"
+ },
+ "originalLengths": {
+ "additionalProperties": true,
+ "description": "Field name → its full length before the cut."
+ }
+ }
+ },
+ "wallets": {
+ "description": "Wallets taking those tickets.",
+ "items": {},
+ "type": "array"
+ }
+ },
+ "type": "object"
+}