org.latha.island

nandi.uk

Documentation

A Stigmergic island: a centroid URL, pointers to network.cosmik.connection records, and analysis of the resulting graph component.

main record

A Stigmergic island: a centroid URL, pointers to network.cosmik.connection records, and analysis of the resulting graph component.

Record Key tid Timestamp-based ID

Properties

carryRefs array of ref #carryCrossRef Optional

Carry entities cross-referenced in this analysis. Carry stays local-first — only summaries are included unless explicitly published as companion records.

maxLength: 20 items
connections array of string at-uri Required

AT URIs of actual network.cosmik.connection records. The island does not embed edge source/target/type/note data.

maxLength: 500 items
createdAt string datetime Required

When this synthesis was created.

forkOf string at-uri Optional

Original org.latha.island AT URI when this record is a fork/update of another user's island.

source ref #sourceRef Required

The island centroid/canonical source URL.

updatedAt string datetime Optional

When this synthesis was last updated.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "source",
      "connections",
      "analysis",
      "createdAt"
    ],
    "properties": {
      "forkOf": {
        "type": "string",
        "format": "at-uri",
        "description": "Original org.latha.island AT URI when this record is a fork/update of another user's island."
      },
      "source": {
        "ref": "#sourceRef",
        "type": "ref",
        "description": "The island centroid/canonical source URL."
      },
      "analysis": {
        "ref": "#structuredAnalysis",
        "type": "ref",
        "description": "The structured analysis output."
      },
      "carryRefs": {
        "type": "array",
        "items": {
          "ref": "#carryCrossRef",
          "type": "ref"
        },
        "maxLength": 20,
        "description": "Carry entities cross-referenced in this analysis. Carry stays local-first — only summaries are included unless explicitly published as companion records."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When this synthesis was created."
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "When this synthesis was last updated."
      },
      "connections": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "at-uri"
        },
        "maxLength": 500,
        "description": "AT URIs of actual network.cosmik.connection records. The island does not embed edge source/target/type/note data."
      }
    }
  },
  "description": "A Stigmergic island: a centroid URL, pointers to network.cosmik.connection records, and analysis of the resulting graph component."
}
carryCrossRef object

Cross-reference to a carry entity, translated to AT Protocol addressable format.

Properties

atUri string at-uri Required

AT Protocol URI for this carry entity (if published as companion record).

carryId string Optional

Original carry entity ID for local correlation.

entityType string Required

Type of carry entity.

Known values: org.latha.island.defs#claimRef, org.latha.island.defs#sourceRef
summary string Optional

Summary of the carry entity.

maxGraphemes: 500 graphemes
View raw schema
{
  "type": "object",
  "required": [
    "entityType",
    "atUri"
  ],
  "properties": {
    "atUri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT Protocol URI for this carry entity (if published as companion record)."
    },
    "carryId": {
      "type": "string",
      "description": "Original carry entity ID for local correlation."
    },
    "summary": {
      "type": "string",
      "description": "Summary of the carry entity.",
      "maxGraphemes": 500
    },
    "entityType": {
      "type": "string",
      "description": "Type of carry entity.",
      "knownValues": [
        "org.latha.island.defs#claimRef",
        "org.latha.island.defs#sourceRef"
      ]
    }
  },
  "description": "Cross-reference to a carry entity, translated to AT Protocol addressable format."
}
sourceRef object

Reference to the source/centroid for this island.

Properties

cid string Optional

CID of the source record at time of analysis.

collection string Optional

Collection being analyzed. For islands over connection graphs this is usually network.cosmik.connection.

uri string uri Required

Canonical HTTPS URL of the island centroid.

View raw schema
{
  "type": "object",
  "required": [
    "uri"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "description": "CID of the source record at time of analysis."
    },
    "uri": {
      "type": "string",
      "format": "uri",
      "description": "Canonical HTTPS URL of the island centroid."
    },
    "collection": {
      "type": "string",
      "description": "Collection being analyzed. For islands over connection graphs this is usually network.cosmik.connection."
    }
  },
  "description": "Reference to the source/centroid for this island."
}
structuredAnalysis object

The structured output of a Strata analysis run.

Properties

highlights array of stringat-uri Optional

AT URIs of network.cosmik.connection records flagged as semantically significant by the analysis. Hot edges.

maxLength: 20 items
openQuestions array of string Optional

Questions raised by the analysis.

maxLength: 10 items
synthesis string Optional

Prose synthesis connecting the source to existing knowledge. Legacy plain-text format.

maxLength: 20000 bytesmaxGraphemes: 2000 graphemes
synthesisDoc string at-uri Optional

AT URI of a pub.oxa.document record containing the rich-text synthesis. Takes precedence over the plain-text synthesis field when present.

tensions array of string Optional

Tensions or contradictions with existing claims.

maxLength: 10 items
themes array of string Required

Key themes identified in the source.

maxLength: 20 items
title string Optional

A concise sentence capturing the core argument or narrative arc of this analysis.

maxGraphemes: 300 graphemes
View raw schema
{
  "type": "object",
  "required": [
    "themes"
  ],
  "properties": {
    "title": {
      "type": "string",
      "description": "A concise sentence capturing the core argument or narrative arc of this analysis.",
      "maxGraphemes": 300
    },
    "themes": {
      "type": "array",
      "items": {
        "type": "string",
        "maxGraphemes": 100
      },
      "maxLength": 20,
      "description": "Key themes identified in the source."
    },
    "tensions": {
      "type": "array",
      "items": {
        "type": "string",
        "maxGraphemes": 500
      },
      "maxLength": 10,
      "description": "Tensions or contradictions with existing claims."
    },
    "synthesis": {
      "type": "string",
      "maxLength": 20000,
      "description": "Prose synthesis connecting the source to existing knowledge. Legacy plain-text format.",
      "maxGraphemes": 2000
    },
    "highlights": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "at-uri"
      },
      "maxLength": 20,
      "description": "AT URIs of network.cosmik.connection records flagged as semantically significant by the analysis. Hot edges."
    },
    "synthesisDoc": {
      "type": "string",
      "format": "at-uri",
      "description": "AT URI of a pub.oxa.document record containing the rich-text synthesis. Takes precedence over the plain-text synthesis field when present."
    },
    "openQuestions": {
      "type": "array",
      "items": {
        "type": "string",
        "maxGraphemes": 500
      },
      "maxLength": 10,
      "description": "Questions raised by the analysis."
    }
  },
  "description": "The structured output of a Strata analysis run."
}

Lexicon Garden

@