changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "ValuationComparisonHistoryPoint": {
+ "description": "One history point in `valuation_comparison`'s nested `history`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "date": {
+ "description": "Sample date (RFC3339; rewritten from a unix-epoch field).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pb": {
+ "description": "Price-to-book at this date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pe": {
+ "description": "Price-to-earnings at this date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ps": {
+ "description": "Price-to-sales at this date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "ValuationComparisonItem": {
+ "description": "One stock in `valuation_comparison`'s `list`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "history": {
+ "description": "Per-date valuation history.",
+ "items": {
+ "$ref": "#/$defs/ValuationComparisonHistoryPoint"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "market_value": {
+ "description": "Market value.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Display name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pb": {
+ "description": "Price-to-book.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pe": {
+ "description": "Price-to-earnings.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "price_close": {
+ "description": "Latest close price.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ps": {
+ "description": "Price-to-sales.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Security symbol (transformed from `counter_id`).",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `valuation_comparison`. Wraps a `list` of compared stocks.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "list": {
+ "description": "Compared stocks (primary + peers).",
+ "items": {
+ "$ref": "#/$defs/ValuationComparisonItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "ValuationComparisonResponse",
+ "type": "object"
+}