changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "count": {
+ "description": "Events returned.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "events": {
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "cik": {
+ "description": "SEC Central Index Key.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "company": {
+ "description": "Registrant name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "date": {
+ "description": "YYYY-MM-DD.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "exchange": {
+ "description": "Listing exchange.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "listing": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "properties": {},
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Listing events only: offer price, first-day pop, close return, lead managers."
+ },
+ "lockupDays": {
+ "description": "Lock-up length in days (lockup_expiry only).",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Ticker.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "lockup_expiry, quiet_period_expiry or listing.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Events in date order."
+ },
+ "from": {
+ "description": "Window start, YYYY-MM-DD.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "to": {
+ "description": "Window end, YYYY-MM-DD, inclusive.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "types": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Event types included."
+ }
+ },
+ "type": "object"
+}