changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "ShortTradesItem": {
+ "properties": {
+ "balance": {
+ "description": "HK only — outstanding short balance (HKD).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "close": {
+ "description": "Close price for the day.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "market_vol": {
+ "description": "HK only — total market trading volume for the day.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "nasdaq_vol": {
+ "description": "US only — NASDAQ short volume.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "nyse_vol": {
+ "description": "US only — NYSE short volume.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "rate": {
+ "description": "Short volume as a ratio of total volume (decimal, e.g. 0.36 = 36%).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "short_vol": {
+ "description": "Daily short-sale volume in shares.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "timestamp": {
+ "description": "Trade date (RFC3339).",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `short_trades`. Wraps a unified `data` array of daily short-sale\nvolume history for HK or US stocks. Market-specific fields are populated\nonly for their respective market (US: `nasdaq_vol`/`nyse_vol`; HK:\n`balance`/`market_vol`). Subset of the wire response.",
+ "properties": {
+ "data": {
+ "description": "Daily short-sale volume entries.",
+ "items": {
+ "$ref": "#/$defs/ShortTradesItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "ShortTradesResponse",
+ "type": "object"
+}