changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "InstitutionRatingDetailItem": {
+ "description": "One per-institution record in `institution_rating_detail`'s `target.list`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "analyst": {
+ "description": "Analyst name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "firm": {
+ "description": "Issuing firm / institution name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "rating": {
+ "description": "Rating label.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "target_price": {
+ "description": "Target price.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "timestamp": {
+ "description": "Rating timestamp (RFC3339; rewritten from a unix-epoch field).",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "InstitutionRatingDetailTarget": {
+ "description": "`target` block of `institution_rating_detail`.",
+ "properties": {
+ "list": {
+ "description": "Per-institution rating records.",
+ "items": {
+ "$ref": "#/$defs/InstitutionRatingDetailItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `institution_rating_detail`.\n\nDetailed historical institution ratings and target price history, grouped\nunder `target.list[]`. Subset of documented fields; upstream may return\nmore.",
+ "properties": {
+ "target": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/InstitutionRatingDetailTarget"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Target-price / rating history container."
+ }
+ },
+ "title": "InstitutionRatingDetailResponse",
+ "type": "object"
+}