changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "EvaluateHistoryItem": {
+ "description": "One rating-evaluation change in `institution_rating_history`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "date": {
+ "description": "Change date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "firm": {
+ "description": "Issuing firm.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "new_rating": {
+ "description": "New rating.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "old_rating": {
+ "description": "Prior rating.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "TargetHistoryItem": {
+ "description": "One target-price revision in `institution_rating_history`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "analyst": {
+ "description": "Analyst name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "date": {
+ "description": "Revision date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "firm": {
+ "description": "Issuing firm.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "new_target": {
+ "description": "New target price.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "old_target": {
+ "description": "Prior target price.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `institution_rating_history`. Two history arrays: target-price\nrevisions and rating-evaluation changes.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "evaluate_history": {
+ "description": "Rating-evaluation changes.",
+ "items": {
+ "$ref": "#/$defs/EvaluateHistoryItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "target_history": {
+ "description": "Target-price revisions.",
+ "items": {
+ "$ref": "#/$defs/TargetHistoryItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "InstitutionRatingHistoryResponse",
+ "type": "object"
+}