changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "IndustryValuationHistoryPoint": {
+ "description": "One history point in `industry_valuation`'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"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "IndustryValuationItem": {
+ "description": "One peer in `industry_valuation`'s `list`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "dividend_yield": {
+ "description": "Dividend yield.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "history": {
+ "description": "Per-date history of PE/PB.",
+ "items": {
+ "$ref": "#/$defs/IndustryValuationHistoryPoint"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Display name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pb": {
+ "description": "Price-to-book.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pe": {
+ "description": "Price-to-earnings.",
+ "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 `industry_valuation`. Wraps a `list` of industry peers.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "list": {
+ "description": "Peers in the same industry.",
+ "items": {
+ "$ref": "#/$defs/IndustryValuationItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "IndustryValuationResponse",
+ "type": "object"
+}