changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "ForecastEpsItem": {
+ "description": "One record in `forecast_eps`'s `items`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "analyst_count": {
+ "description": "Number of contributing analysts.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "eps_actual": {
+ "description": "Actual reported EPS.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "eps_estimate": {
+ "description": "Consensus EPS estimate.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "forecast_end_date": {
+ "description": "Forecast period end (RFC3339; rewritten from a unix-epoch field).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "forecast_start_date": {
+ "description": "Forecast period start (RFC3339; rewritten from a unix-epoch field).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "surprise_pct": {
+ "description": "Surprise percentage (actual vs estimate).",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `forecast_eps`. Wraps an `items` array of EPS estimates.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "items": {
+ "description": "EPS forecast / actual records.",
+ "items": {
+ "$ref": "#/$defs/ForecastEpsItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "ForecastEpsResponse",
+ "type": "object"
+}