changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "ShareholderTopHolder": {
+ "description": "One holder in `shareholder_top`'s `share_holders`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "filing_date": {
+ "description": "Filing date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Holder name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "object_id": {
+ "description": "Holder object id. Pass to `shareholder_detail`.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "percent_shares_held": {
+ "description": "Percentage of shares held.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "shares_changed": {
+ "description": "Change in shares held.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "shares_held": {
+ "description": "Shares held.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Holder title / role.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "ShareholderTopPeriod": {
+ "description": "One period snapshot in `shareholder_top`'s `info`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "period": {
+ "description": "Reporting period.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "share_holders": {
+ "description": "Holders for this period.",
+ "items": {
+ "$ref": "#/$defs/ShareholderTopHolder"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `shareholder_top`. Wraps an `info` array of per-period\nsnapshots, each with a `share_holders` list.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "info": {
+ "description": "Per-period holder snapshots.",
+ "items": {
+ "$ref": "#/$defs/ShareholderTopPeriod"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "ShareholderTopResponse",
+ "type": "object"
+}