changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "ShareholderItem": {
+ "description": "One holder in `shareholder`'s `shareholders`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "change": {
+ "description": "Change in shares.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "change_type": {
+ "description": "Direction / kind of change.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "institution": {
+ "description": "Institution name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ratio": {
+ "description": "Ownership ratio.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "reported_at": {
+ "description": "Report date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "shares": {
+ "description": "Shares held.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `shareholder`. Wraps a `shareholders` array.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "shareholders": {
+ "description": "Institutional shareholders.",
+ "items": {
+ "$ref": "#/$defs/ShareholderItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "ShareholderResponse",
+ "type": "object"
+}