forked from tangled.org/core
this repo has no description
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 "repo": { 23 "type": "string", 24 "format": "at-uri" 25 }, 26 "commentId": { 27 "type": "integer" 28 }, 29 "owner": { 30 "type": "string", 31 "format": "did" 32 }, 33 "body": { 34 "type": "string" 35 }, 36 "createdAt": { 37 "type": "string", 38 "format": "datetime" 39 } 40 } 41 } 42 } 43 } 44}