Monorepo for Tangled tangled.org
6

Configure Feed

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

1{ 2 "lexicon": 1, 3 "id": "sh.tangled.knot.listMembersBy", 4 "defs": { 5 "main": { 6 "type": "query", 7 "parameters": { 8 "type": "params", 9 "required": ["subject"], 10 "properties": { 11 "subject": { 12 "type": "string", 13 "format": "did", 14 "description": "Actor DID whose knot-member authorings to list." 15 }, 16 "cursor": { 17 "type": "string", 18 "description": "Pagination cursor" 19 }, 20 "limit": { 21 "type": "integer", 22 "minimum": 1, 23 "maximum": 1000, 24 "default": 50 25 }, 26 "order": { 27 "type": "string", 28 "knownValues": ["asc", "desc"], 29 "default": "desc", 30 "description": "Sort direction by createdAt." 31 } 32 } 33 }, 34 "output": { 35 "encoding": "application/json", 36 "schema": { 37 "type": "object", 38 "required": ["items"], 39 "properties": { 40 "items": { 41 "type": "array", 42 "items": { "type": "ref", "ref": "sh.tangled.knot.listMembers#listItem" } 43 }, 44 "cursor": { "type": "string" } 45 } 46 } 47 } 48 } 49 } 50}