changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "cik": {
+ "description": "SEC Central Index Key, 10 digits.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "company": {
+ "description": "Registrant name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ipoDetails": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "properties": {},
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Public deal facts: date, exchange, shares offered, priceRange, offerPrice (final terms only), offerSize (gross proceeds). No valuation."
+ },
+ "premium": {
+ "description": "What get_ipo_snapshot adds.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Ticker.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbolNote": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "properties": {},
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Present only when the requested ticker is contested: which registrant it belongs to now vs. the record served."
+ },
+ "venue": {
+ "description": "Listing exchange.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+}