changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "BrokerHoldingDailyItem": {
+ "properties": {
+ "date": {
+ "description": "Disclosure date (yyyy-mm-dd).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "holding_change": {
+ "description": "Change in shares held versus the prior day.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "holding_quantity": {
+ "description": "Shares held by this broker on that date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "holding_ratio": {
+ "description": "Holding as a ratio of total issued shares.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `broker_holding_daily`. Wraps an `items` array of the daily\nholding history for one broker in an HK stock. Subset of the wire response.",
+ "properties": {
+ "items": {
+ "description": "Daily holding history entries.",
+ "items": {
+ "$ref": "#/$defs/BrokerHoldingDailyItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "BrokerHoldingDailyResponse",
+ "type": "object"
+}