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"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `ipo_calendar`. Passthrough of the upstream calendar payload;\nthe documented portion is `items[]`. The upstream `timestamp` is converted\nto RFC3339 by the unix-path transform.",
+ "properties": {
+ "items": {
+ "description": "Calendar entries for upcoming and recent IPOs.",
+ "items": {
+ "$ref": "#/$defs/IpoItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "IpoCalendarResponse",
+ "type": "object"
+}