changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "SharelistConstituent": {
+ "description": "A single constituent of a sharelist detail. Subset of upstream fields;\nquote fields are stringified by the transform pipeline.",
+ "properties": {
+ "change_rate": {
+ "description": "Change rate (stringified decimal / percentage).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "last_done": {
+ "description": "Latest traded price (stringified decimal).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Display name of the security.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Security symbol, e.g. \"AAPL.US\".",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `sharelist_detail`. Subset of the upstream detail payload: list\nmetadata plus the constituent rows. Additional quote and subscription\nfields may be present but are not enumerated here.",
+ "properties": {
+ "constituents": {
+ "description": "Constituent securities with quote snapshots.",
+ "items": {
+ "$ref": "#/$defs/SharelistConstituent"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "List description.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Sharelist ID.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "List name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "title": "SharelistDetailResponse",
+ "type": "object"
+}