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": "Sectors returned.",
+ "type": "number"
+ },
+ "is_etf": {
+ "description": "Whether the symbol is an ETF, from the instrument type on its ticker record.",
+ "type": "boolean"
+ },
+ "sectors": {
+ "description": "Sector weights, heaviest first, in the vendor's ETF-profile vocabulary.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "ticker": {
+ "description": "The ETF you asked for.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "as_of",
+ "ticker",
+ "is_etf",
+ "count",
+ "sectors"
+ ],
+ "type": "object"
+}