changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "BrokerHoldingDetailItem": {
+ "properties": {
+ "broker_id": {
+ "description": "Broker (participant) number.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "broker_name": {
+ "description": "Broker (participant) name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "date": {
+ "description": "Disclosure date (yyyy-mm-dd).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "holding_change": {
+ "description": "Change in shares held.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "holding_quantity": {
+ "description": "Shares held by this broker.",
+ "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_detail`. Wraps an `items` array of the full\nbroker holding list for an HK stock (HKEX CCASS participant disclosure).\nSubset of the wire response.",
+ "properties": {
+ "items": {
+ "description": "Full broker holding detail entries.",
+ "items": {
+ "$ref": "#/$defs/BrokerHoldingDetailItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "BrokerHoldingDetailResponse",
+ "type": "object"
+}