changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "adjusted": {
+ "description": "Whether the bars are split-adjusted — `true` unless you passed `adjusted=false`.",
+ "type": "boolean"
+ },
+ "as_of": {
+ "description": "Server time this response was assembled (ISO 8601).",
+ "type": "string"
+ },
+ "bars": {
+ "description": "OHLCV bars, chronological, in the compact array shape. Bulk requests key this by symbol instead.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "count": {
+ "description": "Bars returned in single-symbol mode; the number of SYMBOLS in bulk mode.",
+ "type": "number"
+ },
+ "coverage": {
+ "description": "Why the page looks the way it does: `covered` when bars were found, `no_data` when the vendor has none for the window, `not_in_minute_tier` when a sub-hour interval was asked of a symbol the minute store does not carry.",
+ "type": "string"
+ },
+ "interval": {
+ "description": "The bar size served.",
+ "type": "string"
+ },
+ "next_cursor": {
+ "description": "Opaque token for the next page; `null` on the last page. Absent on bulk (comma-list) requests, which are unpaged. Absent on bulk requests — page bulk symbol-by-symbol.",
+ "type": "string"
+ },
+ "note": {
+ "description": "Present only when there is something to disclose about how the page was served: the first on-demand fetch for an untiered symbol (explains the latency; later calls are stored), or a `1s` page served from the local store because the provider could not be reached. Bulk responses carry `notes[symbol]` instead.",
+ "type": "string"
+ },
+ "notes": {
+ "description": "Bulk (comma-list) requests only: the per-symbol disclosures, keyed by symbol, in place of `note`.",
+ "type": "object"
+ },
+ "session": {
+ "description": "The session filter applied: `all` (default) or `regular` (09:30–16:00 ET, sub-hour intervals only).",
+ "type": "string"
+ },
+ "ticker": {
+ "description": "The symbol you asked for.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "as_of",
+ "ticker",
+ "interval",
+ "adjusted",
+ "session",
+ "count",
+ "coverage",
+ "bars"
+ ],
+ "type": "object"
+}