Monorepo for Tangled tangled.org
2

Configure Feed

Select the types of activity you want to include in your feed.

1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo.addCollaborator", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Add a collaborator to 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 add the collaborator to" 21 }, 22 "subject": { 23 "type": "string", 24 "format": "did", 25 "description": "DID of the collaborator to add" 26 } 27 } 28 } 29 } 30 } 31 } 32}