changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "IpoItem": {
+ "description": "A single IPO entry as it appears in the subscription / calendar / listed\nfeeds. Subset of the upstream item; field availability varies by feed and\nmarket. Numeric/price fields are stringified by the transform pipeline.",
+ "properties": {
+ "issue_price": {
+ "description": "Issue price (stringified decimal).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "listing_date": {
+ "description": "Listing date (yyyy-mm-dd).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "market": {
+ "description": "Market code, e.g. \"HK\" / \"US\".",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "min_lot_size": {
+ "description": "Minimum lot size for subscription.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Display name of the security.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "IPO status (calendar feed), e.g. upcoming / listed.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "sub_end_date": {
+ "description": "Subscription window end date (yyyy-mm-dd).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "sub_start_date": {
+ "description": "Subscription window start date (yyyy-mm-dd).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Security symbol, e.g. \"6871.HK\" or \"ARM.US\".",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "IpoMarketFeed": {
+ "description": "One side (HK or US) of an IPO feed that splits results by market. Each side\nis the raw upstream payload; the documented portion is `items[]`.",
+ "properties": {
+ "items": {
+ "description": "IPO entries for this market (documented subset of upstream fields).",
+ "items": {
+ "$ref": "#/$defs/IpoItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `ipo_subscriptions`. HK and US subscription feeds combined under\na `{hk, us}` wrapper object built by the tool.",
+ "properties": {
+ "hk": {
+ "$ref": "#/$defs/IpoMarketFeed",
+ "description": "Hong Kong subscription / pre-filing feed."
+ },
+ "us": {
+ "$ref": "#/$defs/IpoMarketFeed",
+ "description": "US subscription / pre-filing feed."
+ }
+ },
+ "required": [
+ "hk",
+ "us"
+ ],
+ "title": "IpoSubscriptionsResponse",
+ "type": "object"
+}