changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "FundHolderItem": {
+ "description": "One holder in `fund_holder`'s `fund_holders`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "change": {
+ "description": "Change in shares.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "fund_name": {
+ "description": "Fund name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "fund_symbol": {
+ "description": "Fund symbol.",
+ "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 `fund_holder`. Wraps a `fund_holders` array.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "fund_holders": {
+ "description": "Funds / ETFs that hold the symbol.",
+ "items": {
+ "$ref": "#/$defs/FundHolderItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "FundHolderResponse",
+ "type": "object"
+}