Monorepo for Tangled tangled.org
at master 967 B view raw
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo.issue", 4 "needsCbor": true, 5 "needsType": true, 6 "defs": { 7 "main": { 8 "type": "record", 9 "key": "tid", 10 "record": { 11 "type": "object", 12 "required": ["repo", "title", "createdAt"], 13 "properties": { 14 "repo": { 15 "type": "string", 16 "format": "at-uri" 17 }, 18 "title": { 19 "type": "string" 20 }, 21 "body": { 22 "type": "string" 23 }, 24 "createdAt": { 25 "type": "string", 26 "format": "datetime" 27 }, 28 "mentions": { 29 "type": "array", 30 "items": { 31 "type": "string", 32 "format": "did" 33 } 34 }, 35 "references": { 36 "type": "array", 37 "items": { 38 "type": "string", 39 "format": "at-uri" 40 } 41 } 42 } 43 } 44 } 45 } 46}