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