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