Skip to content

Commit

Permalink
Add getActorLabelers
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrazee committed Jan 8, 2024
1 parent 354d63c commit d513e5d
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions lexicons/app/bsky/label/getActorLabelers.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
}
}
}
}
}

0 comments on commit d513e5d

Please sign in to comment.