Monorepo for Tangled tangled.org
1

Configure Feed

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

core / lexicons / repo / getIssues.json
1.3 kB 58 lines
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo.getIssues", 4 "defs": { 5 "main": { 6 "type": "query", 7 "parameters": { 8 "type": "params", 9 "required": ["issues"], 10 "properties": { 11 "issues": { 12 "type": "array", 13 "items": { 14 "type": "string", 15 "format": "at-uri" 16 }, 17 "maxLength": 50, 18 "description": "AT-URIs of the sh.tangled.repo.issue records to fetch. At most 50 per request." 19 } 20 } 21 }, 22 "output": { 23 "encoding": "application/json", 24 "schema": { 25 "type": "object", 26 "required": ["items"], 27 "properties": { 28 "items": { 29 "type": "array", 30 "items": { 31 "type": "ref", 32 "ref": "#recordView" 33 } 34 } 35 } 36 } 37 } 38 }, 39 "recordView": { 40 "type": "object", 41 "required": ["uri", "value"], 42 "properties": { 43 "uri": { 44 "type": "string", 45 "format": "at-uri" 46 }, 47 "cid": { 48 "type": "string", 49 "format": "cid" 50 }, 51 "value": { 52 "type": "unknown", 53 "description": "Embedded sh.tangled.repo.issue record." 54 } 55 } 56 } 57 } 58}