changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "ValuationHistoryBlock": {
+ "description": "`history` block of `valuation_history`.",
+ "properties": {
+ "metrics": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/ValuationHistoryMetrics"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Per-indicator time series."
+ }
+ },
+ "type": "object"
+ },
+ "ValuationHistoryMetrics": {
+ "description": "`history.metrics` block of `valuation_history`. Each indicator is an array\nof time-series samples.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "dividend_yield": {
+ "description": "Dividend-yield series.",
+ "items": {
+ "$ref": "#/$defs/ValuationHistoryPoint"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "pb": {
+ "description": "Price-to-book series.",
+ "items": {
+ "$ref": "#/$defs/ValuationHistoryPoint"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "pe": {
+ "description": "Price-to-earnings series.",
+ "items": {
+ "$ref": "#/$defs/ValuationHistoryPoint"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "ps": {
+ "description": "Price-to-sales series.",
+ "items": {
+ "$ref": "#/$defs/ValuationHistoryPoint"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "ValuationHistoryPoint": {
+ "description": "One sample in a `valuation_history` metric time series.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "timestamp": {
+ "description": "Sample timestamp (RFC3339; rewritten from a unix-epoch field).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "description": "Metric value at this timestamp.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `valuation_history`. Time-series valuation metrics grouped\nunder `history.metrics`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "history": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/ValuationHistoryBlock"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "History container."
+ }
+ },
+ "title": "ValuationHistoryResponse",
+ "type": "object"
+}