a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
at major 28 lines 581 B view raw
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": ["issue", "state"], 13 "properties": { 14 "issue": { 15 "type": "string", 16 "format": "at-uri" 17 }, 18 "state": { 19 "type": "string", 20 "description": "state of the issue", 21 "knownValues": ["sh.tangled.repo.issue.state.open", "sh.tangled.repo.issue.state.closed"], 22 "default": "sh.tangled.repo.issue.state.open" 23 } 24 } 25 } 26 } 27 } 28}