changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "IpoOrderItem": {
+ "description": "A single IPO order entry. Subset of upstream fields; amount fields are\nstringified by the transform pipeline and `submitted_at` is RFC3339.",
+ "properties": {
+ "market": {
+ "description": "Market code, e.g. \"HK\" / \"US\".",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "order_id": {
+ "description": "IPO order ID.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "quantity": {
+ "description": "Subscription quantity.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "Order status.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "submitted_at": {
+ "description": "Order submission time (RFC3339).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Security symbol, e.g. \"6871.HK\".",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "total_amount": {
+ "description": "Total subscription amount (stringified decimal).",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "IpoOrdersFeed": {
+ "description": "One side of the IPO orders feed (active or historical). The documented\nportion is `orders[]`.",
+ "properties": {
+ "orders": {
+ "description": "IPO order entries (documented subset of upstream fields).",
+ "items": {
+ "$ref": "#/$defs/IpoOrderItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `ipo_orders`. Active orders and order history combined under an\n`{orders, history}` wrapper object built by the tool.",
+ "properties": {
+ "history": {
+ "$ref": "#/$defs/IpoOrdersFeed",
+ "description": "Historical IPO orders feed."
+ },
+ "orders": {
+ "$ref": "#/$defs/IpoOrdersFeed",
+ "description": "Active IPO orders feed."
+ }
+ },
+ "required": [
+ "orders",
+ "history"
+ ],
+ "title": "IpoOrdersResponse",
+ "type": "object"
+}