diff --git a/lexicons/app/bsky/label/getActorLabelers.json b/lexicons/app/bsky/label/getActorLabelers.json new file mode 100644 index 00000000000..39b219595c0 --- /dev/null +++ b/lexicons/app/bsky/label/getActorLabelers.json @@ -0,0 +1,41 @@ +{ + "lexicon": 1, + "id": "app.bsky.label.getActorLabelers", + "defs": { + "main": { + "type": "query", + "description": "Get a list of labelers created by the actor.", + "parameters": { + "type": "params", + "required": ["actor"], + "properties": { + "actor": { "type": "string", "format": "at-identifier" }, + "limit": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "default": 50 + }, + "cursor": { "type": "string" } + } + }, + "output": { + "encoding": "application/json", + "schema": { + "type": "object", + "required": ["labelers"], + "properties": { + "cursor": { "type": "string" }, + "labelers": { + "type": "array", + "items": { + "type": "ref", + "ref": "app.bsky.label.defs#labelerView" + } + } + } + } + } + } + } +}