Monorepo for Tangled
at master 39 lines 782 B view raw
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 "createdAt" 15 ], 16 "properties": { 17 "subject": { 18 "type": "string", 19 "format": "did" 20 }, 21 "repo": { 22 "type": "string", 23 "description": "repo to add this user to", 24 "format": "at-uri" 25 }, 26 "repoDid": { 27 "type": "string", 28 "format": "did" 29 }, 30 "createdAt": { 31 "type": "string", 32 "format": "datetime" 33 } 34 } 35 } 36 } 37 } 38} 39