changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "SharelistSummary": {
+ "description": "A single sharelist summary entry. Subset of upstream fields.",
+ "properties": {
+ "creator": {
+ "description": "Creator info (`sharelist_popular` only); passthrough, shape\nupstream-defined."
+ },
+ "description": {
+ "description": "List description.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "follower_count": {
+ "description": "Number of followers / subscribers of this list.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Sharelist ID.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "is_owner": {
+ "description": "Whether the current user owns this list (`sharelist_list` only).",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "List name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbol_count": {
+ "description": "Number of securities in the list.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `sharelist_list` and `sharelist_popular`. Documented portion is\n`lists[]`.",
+ "properties": {
+ "lists": {
+ "description": "Sharelist summaries.",
+ "items": {
+ "$ref": "#/$defs/SharelistSummary"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "SharelistListResponse",
+ "type": "object"
+}