forked from tangled.org/core
this repo has no description
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo.issue.state", 4 "needsCbor": true, 5 "needsType": true, 6 "defs": { 7 "main": { 8 "type": "record", 9 "key": "tid", 10 "record": { 11 "type": "object", 12 "required": [ 13 "issue", 14 "state" 15 ], 16 "properties": { 17 "issue": { 18 "type": "string", 19 "format": "at-uri" 20 }, 21 "state": { 22 "type": "string", 23 "description": "state of the issue", 24 "knownValues": [ 25 "sh.tangled.repo.issue.state.open", 26 "sh.tangled.repo.issue.state.closed" 27 ], 28 "default": "sh.tangled.repo.issue.state.open" 29 } 30 } 31 } 32 } 33 } 34}