This repository has no description
0

Configure Feed

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

stigmergic / lexicons / org / latha / island / getIsland.json
2.0 kB 75 lines
1{ 2 "lexicon": 1, 3 "id": "org.latha.island.getIsland", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get a single island by its stable ID. Returns the full island with vertices, edges, vertex metadata, and strata analysis if available.", 8 "parameters": { 9 "type": "params", 10 "required": ["id"], 11 "properties": { 12 "id": { 13 "type": "string", 14 "description": "Island ID (truncated SHA-256 of lexmin vertex) or AT URI of an org.latha.island record." 15 } 16 } 17 }, 18 "output": { 19 "encoding": "application/json", 20 "schema": { 21 "type": "object", 22 "required": ["island"], 23 "properties": { 24 "island": { 25 "type": "ref", 26 "ref": "#islandDetail" 27 }, 28 "recordUri": { 29 "type": "string", 30 "format": "at-uri", 31 "description": "AT URI of the org.latha.island record, if analyzed." 32 } 33 } 34 } 35 } 36 }, 37 "islandDetail": { 38 "type": "object", 39 "required": ["id", "lexmin", "vertices", "edges"], 40 "properties": { 41 "id": { 42 "type": "string" 43 }, 44 "lexmin": { 45 "type": "string" 46 }, 47 "vertices": { 48 "type": "array", 49 "items": { 50 "type": "string" 51 } 52 }, 53 "edges": { 54 "type": "array", 55 "items": { 56 "type": "ref", 57 "ref": "org.latha.island.deriveIsland#edge" 58 } 59 }, 60 "vertexMeta": { 61 "type": "unknown", 62 "description": "Map of vertex URI to {title, description, type}." 63 }, 64 "summary": { 65 "type": "string", 66 "description": "Strata analysis title." 67 }, 68 "strata": { 69 "type": "unknown", 70 "description": "Full strata analysis data (themes, connections, tensions, synthesis)." 71 } 72 } 73 } 74 } 75}