changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "MarketStatusEntry": {
+ "properties": {
+ "delay_timestamp": {
+ "description": "Delayed-quote status timestamp (RFC3339).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "delay_trade_status": {
+ "description": "Delayed-quote trading status label (same value set as `trade_status`).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "market": {
+ "description": "Market code, e.g. \"US\" / \"HK\" / \"CN\" / \"SG\".",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "timestamp": {
+ "description": "Status snapshot timestamp (RFC3339).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "trade_status": {
+ "description": "Trading status label: one of Pre-Open / Trading / Lunch Break /\nPost-Trading / Closed / Pre-Market / Post-Market / Unknown.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `market_status`. Wraps a `market_time` array, one entry per\nmarket. Subset of the wire response — `trade_status` is mapped from the\nupstream numeric code to a human label, and `timestamp` is converted to\nRFC3339.",
+ "properties": {
+ "market_time": {
+ "description": "Per-market trading status entries.",
+ "items": {
+ "$ref": "#/$defs/MarketStatusEntry"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "MarketStatusResponse",
+ "type": "object"
+}