{ "lexicon": 1, "id": "sh.weaver.graph.getSubscribers", "defs": { "main": { "type": "query", "description": "Get subscribers to a notebook (accepted subscriptions only).", "parameters": { "type": "params", "required": [ "notebook" ], "properties": { "cursor": { "type": "string" }, "limit": { "type": "integer", "default": 50, "minimum": 1, "maximum": 100 }, "notebook": { "type": "string", "format": "at-uri" } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": [ "notebook", "subscribers" ], "properties": { "cursor": { "type": "string" }, "notebook": { "type": "ref", "ref": "sh.weaver.notebook.defs#notebookView" }, "subscribers": { "type": "array", "items": { "type": "ref", "ref": "sh.weaver.actor.defs#profileViewBasic" } } } } } } } }