Monorepo for Tangled tangled.org
4

Configure Feed

Select the types of activity you want to include in your feed.

core / lexicons / issue / state.json
871 B 39 lines
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 "createdAt" 16 ], 17 "properties": { 18 "issue": { 19 "type": "string", 20 "format": "at-uri" 21 }, 22 "createdAt": { 23 "type": "string", 24 "format": "datetime" 25 }, 26 "state": { 27 "type": "string", 28 "description": "state of the issue", 29 "knownValues": [ 30 "sh.tangled.repo.issue.state.open", 31 "sh.tangled.repo.issue.state.closed" 32 ], 33 "default": "sh.tangled.repo.issue.state.open" 34 } 35 } 36 } 37 } 38 } 39}