changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "InstitutionalViewsMonth": {
+ "description": "One month in `institutional_views`'s `months`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "buy": {
+ "description": "Buy count.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "date": {
+ "description": "Month date (RFC3339; rewritten from a unix-epoch field).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "hold": {
+ "description": "Hold count.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "outperform": {
+ "description": "Outperform count.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "sell": {
+ "description": "Sell count.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "total": {
+ "description": "Total ratings.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "underperform": {
+ "description": "Underperform count.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `institutional_views`. Wraps a `months` array of monthly\nrating-distribution snapshots.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "months": {
+ "description": "Monthly rating-distribution snapshots.",
+ "items": {
+ "$ref": "#/$defs/InstitutionalViewsMonth"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "InstitutionalViewsResponse",
+ "type": "object"
+}