Run strata analysis on an island. Cross-references the island's vertices and edges against vault and carry data, producing themes, connections, tensions, and a synthesis. Returns an org.latha.island record ready to be written to PDS.
Input
application/jsondid
stringdid
Optional
DID of the user requesting analysis (used to look up vault/carry data).
island
ref#islandInput
Required
No description available.
Output
application/jsonanalysis
ref#analysisResult
Required
No description available.
record
reforg.latha.island#main
Optional
Complete org.latha.island record ready to be written to PDS.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"island"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "DID of the user requesting analysis (used to look up vault/carry data)."
},
"island": {
"ref": "#islandInput",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"analysis"
],
"properties": {
"record": {
"ref": "org.latha.island#main",
"type": "ref",
"description": "Complete org.latha.island record ready to be written to PDS."
},
"analysis": {
"ref": "#analysisResult",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"description": "Run strata analysis on an island. Cross-references the island's vertices and edges against vault and carry data, producing themes, connections, tensions, and a synthesis. Returns an org.latha.island record ready to be written to PDS."
}