changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "as_of": {
+ "description": "Server time this response was assembled (ISO 8601).",
+ "type": "string"
+ },
+ "count": {
+ "description": "Holdings in this page.",
+ "type": "number"
+ },
+ "holdings": {
+ "description": "Constituents, heaviest first, each with its weight.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "is_etf": {
+ "description": "Whether the symbol is an ETF, from the instrument type on its ticker record.",
+ "type": "boolean"
+ },
+ "ticker": {
+ "description": "The ETF you asked for.",
+ "type": "string"
+ },
+ "total": {
+ "description": "Total constituents held, before `limit`.",
+ "type": "number"
+ },
+ "truncated": {
+ "description": "`true` when `limit` cut the list short.",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "as_of",
+ "ticker",
+ "is_etf",
+ "count",
+ "truncated",
+ "total",
+ "holdings"
+ ],
+ "type": "object"
+}