{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-schema/alphasense-watchlist-schema.json", "title": "Watchlist", "description": "A user-owned watchlist of companies, tickers, and saved queries that personalize Search and trigger alerts.", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "items": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string", "enum": ["company", "ticker", "query"] }, "value": { "type": "string" } }, "required": ["type", "value"] } } }, "required": ["id", "name", "items"] }