changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "InstitutionRatingIndustryRankItem": {
+ "description": "One peer in `institution_rating_industry_rank`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "buy_count": {
+ "description": "Buy rating count.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "consensus_rating": {
+ "description": "Consensus rating label.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Display name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "sell_count": {
+ "description": "Sell rating count.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Security symbol (transformed from `counter_id`).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "target_price": {
+ "description": "Target price.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `institution_rating_industry_rank`. Peers ranked by analyst\nratings.\n\nThe tool description says `list[]`, while the implementation transforms a\ntop-level `items[]` array (rewriting `counter_id` → `symbol`). Both names\nare modelled so the schema matches whichever the upstream emits. Subset of\ndocumented fields; upstream may return more.",
+ "properties": {
+ "items": {
+ "description": "Ranked peers (key the implementation transforms in place).",
+ "items": {
+ "$ref": "#/$defs/InstitutionRatingIndustryRankItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "list": {
+ "description": "Ranked peers (description's documented key).",
+ "items": {
+ "$ref": "#/$defs/InstitutionRatingIndustryRankItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "InstitutionRatingIndustryRankResponse",
+ "type": "object"
+}