atproto/lexicons/tools/ozone/team/listMembers.json
Foysal Ahamed 18fbfa0005
Add team member handle and displayName (#3587)
*  Add team member handle and displayName

*  Add periodic profile details sync

* 📝 Add changeset

*  Update team service instantiation

* 🐛 Cleanup

* 🧹 Cleanup unnecessary index
2025-03-07 23:00:25 +00:00

56 lines
1.2 KiB
JSON

{
"lexicon": 1,
"id": "tools.ozone.team.listMembers",
"defs": {
"main": {
"type": "query",
"description": "List all members with access to the ozone service.",
"parameters": {
"type": "params",
"properties": {
"q": {
"type": "string"
},
"disabled": {
"type": "boolean"
},
"roles": {
"type": "array",
"items": {
"type": "string"
}
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 50
},
"cursor": {
"type": "string"
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["members"],
"properties": {
"cursor": {
"type": "string"
},
"members": {
"type": "array",
"items": {
"type": "ref",
"ref": "tools.ozone.team.defs#member"
}
}
}
}
}
}
}
}