changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "InvestRelationItem": {
+ "description": "One event in `invest_relation`'s `items`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "description": {
+ "description": "Free-text description.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "event_date": {
+ "description": "Event date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "event_type": {
+ "description": "Event type.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Event title.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "Related URL.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `invest_relation`. Wraps an `items` array of IR events.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "items": {
+ "description": "Investor-relations events and announcements.",
+ "items": {
+ "$ref": "#/$defs/InvestRelationItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "InvestRelationResponse",
+ "type": "object"
+}