forked from tangled.org/core
this repo has no description
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo.collaborator", 4 "needsCbor": true, 5 "needsType": true, 6 "defs": { 7 "main": { 8 "type": "record", 9 "key": "tid", 10 "record": { 11 "type": "object", 12 "required": [ 13 "subject", 14 "repo", 15 "createdAt" 16 ], 17 "properties": { 18 "subject": { 19 "type": "string", 20 "format": "did" 21 }, 22 "repo": { 23 "type": "string", 24 "description": "repo to add this user to", 25 "format": "at-uri" 26 }, 27 "createdAt": { 28 "type": "string", 29 "format": "datetime" 30 } 31 } 32 } 33 } 34 } 35} 36