changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "_meta": {
+ "description": "With `asof` only: how the read was resolved — the interval served and requested, whether rows blend intervals, sources and frozen fields. See the as-of read below.",
+ "type": "object"
+ },
+ "as_of": {
+ "description": "Server time this response was assembled (ISO 8601).",
+ "type": "string"
+ },
+ "count": {
+ "description": "List form only — how many of `requested` were found.",
+ "type": "number"
+ },
+ "data": {
+ "description": "The full ticker row — every signal on the schema page. On the list form, an object keyed by symbol, one full row each.",
+ "type": "object"
+ },
+ "not_found": {
+ "description": "List form only — the requested symbols we do not track, in request order. An empty array when every symbol was found.",
+ "type": "string"
+ },
+ "requested": {
+ "description": "List form only — the canonical symbols asked for, de-duplicated, in request order.",
+ "type": "string"
+ },
+ "ticker": {
+ "description": "The symbol you asked for, normalised. Single form only.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "as_of",
+ "data"
+ ],
+ "type": "object"
+}