{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/watchlist_subscription_list", "title": "watchlist_subscription_list", "allOf": [ { "properties": { "subscriptions": { "items": { "$ref": "#/components/schemas/watchlist_subscription" }, "type": "array" } }, "required": [ "subscriptions" ], "type": "object" }, { "$ref": "#/components/schemas/paginated_response" } ] }