changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "ShareholderTrading": {
+ "description": "One per-period trading record in `shareholder_detail`'s `tradings`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "accum_buy": {
+ "description": "Accumulated buys.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "accum_sell": {
+ "description": "Accumulated sells.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "net_buy": {
+ "description": "Net buys.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "period": {
+ "description": "Reporting period.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "trading_details": {
+ "description": "Individual trades. Empty for institutional (13F) holders; populated\nonly for insider / individual filers (Form 4).",
+ "items": {
+ "$ref": "#/$defs/ShareholderTradingDetail"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "ShareholderTradingDetail": {
+ "description": "One trade in `shareholder_detail`'s `trading_details`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "filing_date": {
+ "description": "Filing date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "security_type": {
+ "description": "Security type.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "trading_date": {
+ "description": "Trade date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "trading_price": {
+ "description": "Trade price.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "trading_shares": {
+ "description": "Number of shares traded.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "trading_type": {
+ "description": "Trade type (buy / sell).",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `shareholder_detail`. A single holder's holding and trade\nhistory.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "holding_periods": {
+ "description": "Holding periods. Shape unspecified by the description; raw JSON."
+ },
+ "holding_summary": {
+ "description": "Holding summary. Shape unspecified by the description; raw JSON."
+ },
+ "name": {
+ "description": "Holder name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "owner_source": {
+ "description": "Holder source: Company / Institution / Person / Insider.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "trading_periods": {
+ "description": "Trading periods. Shape unspecified by the description; raw JSON."
+ },
+ "tradings": {
+ "description": "Per-period trading records.",
+ "items": {
+ "$ref": "#/$defs/ShareholderTrading"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "ShareholderDetailResponse",
+ "type": "object"
+}