* ✨ Add team member handle and displayName * ✨ Add periodic profile details sync * 📝 Add changeset * ✨ Update team service instantiation * 🐛 Cleanup * 🧹 Cleanup unnecessary index
56 lines
1.2 KiB
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|