changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `ipo_order_detail`. Passthrough of a single IPO order; the\ndocumented subset is typed here. Amount fields are stringified decimals and\n`submitted_at` is RFC3339.",
+ "properties": {
+ "allotted_quantity": {
+ "description": "Allotted quantity after the IPO drawing.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "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"
+ ]
+ }
+ },
+ "title": "IpoOrderDetailResponse",
+ "type": "object"
+}