Monorepo for Tangled
tangled.org
1{
2 "lexicon": 1,
3 "id": "sh.tangled.repo.removeCollaborator",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Remove a collaborator from a repository on this knot",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": [
13 "repo",
14 "subject"
15 ],
16 "properties": {
17 "repo": {
18 "type": "string",
19 "format": "did",
20 "description": "DID of the repository to remove the collaborator from"
21 },
22 "subject": {
23 "type": "string",
24 "format": "did",
25 "description": "DID of the collaborator to remove"
26 }
27 }
28 }
29 }
30 }
31 }
32}