Monorepo for Tangled tangled.org
2

Configure Feed

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

core / lexicons / string / getString.json
952 B 41 lines
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.string.getString", 4 "defs": { 5 "main": { 6 "type": "query", 7 "parameters": { 8 "type": "params", 9 "required": ["string"], 10 "properties": { 11 "string": { 12 "type": "string", 13 "format": "at-uri", 14 "description": "AT-URI of the sh.tangled.string record to fetch." 15 } 16 } 17 }, 18 "output": { 19 "encoding": "application/json", 20 "schema": { 21 "type": "object", 22 "required": ["uri", "value"], 23 "properties": { 24 "uri": { 25 "type": "string", 26 "format": "at-uri" 27 }, 28 "cid": { 29 "type": "string", 30 "format": "cid" 31 }, 32 "value": { 33 "type": "unknown", 34 "description": "Embedded sh.tangled.string record." 35 } 36 } 37 } 38 } 39 } 40 } 41}