atproto blogging
1{
2 "lexicon": 1,
3 "id": "tools.ozone.team.deleteMember",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Delete a member from ozone team. Requires admin role.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": [
13 "did"
14 ],
15 "properties": {
16 "did": {
17 "type": "string",
18 "format": "did"
19 }
20 }
21 }
22 },
23 "errors": [
24 {
25 "description": "The member being deleted does not exist",
26 "name": "MemberNotFound"
27 },
28 {
29 "description": "You can not delete yourself from the team",
30 "name": "CannotDeleteSelf"
31 }
32 ]
33 }
34 }
35}