# org.latha.island.getIsland

> Published by [nandi.uk](https://lexicon.garden/identity/did:plc:ngokl2gnmpbvuvrfckja3g7p)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ngokl2gnmpbvuvrfckja3g7p/org.latha.island.getIsland)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ngokl2gnmpbvuvrfckja3g7p/org.latha.island.getIsland/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ngokl2gnmpbvuvrfckja3g7p/org.latha.island.getIsland/examples)

## Definitions

### `org.latha.island.getIsland`

**Type**: `query`

Get a single island by its stable ID. Returns the full island with vertices, edges, vertex metadata, and strata analysis if available.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes | Island ID (truncated SHA-256 of lexmin vertex) or AT URI of an org.latha.island record. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `island` | `ref` → `#islandDetail` | Yes |  |
| `recordUri` | `string` (at-uri) | No | AT URI of the org.latha.island record, if analyzed. |

### `org.latha.island.getIsland#islandDetail`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes |  |
| `edges` | `array` | Yes |  |
| `lexmin` | `string` | Yes |  |
| `strata` | `unknown` | No | Full strata analysis data (themes, connections, tensions, synthesis). |
| `summary` | `string` | No | Strata analysis title. |
| `vertices` | `array` | Yes |  |
| `vertexMeta` | `unknown` | No | Map of vertex URI to {title, description, type}. |

## Raw Schema

```json
{
  "id": "org.latha.island.getIsland",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "island"
          ],
          "properties": {
            "island": {
              "ref": "#islandDetail",
              "type": "ref"
            },
            "recordUri": {
              "type": "string",
              "format": "at-uri",
              "description": "AT URI of the org.latha.island record, if analyzed."
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "id"
        ],
        "properties": {
          "id": {
            "type": "string",
            "description": "Island ID (truncated SHA-256 of lexmin vertex) or AT URI of an org.latha.island record."
          }
        }
      },
      "description": "Get a single island by its stable ID. Returns the full island with vertices, edges, vertex metadata, and strata analysis if available."
    },
    "islandDetail": {
      "type": "object",
      "required": [
        "id",
        "lexmin",
        "vertices",
        "edges"
      ],
      "properties": {
        "id": {
          "type": "string"
        },
        "edges": {
          "type": "array",
          "items": {
            "ref": "org.latha.island.deriveIsland#edge",
            "type": "ref"
          }
        },
        "lexmin": {
          "type": "string"
        },
        "strata": {
          "type": "unknown",
          "description": "Full strata analysis data (themes, connections, tensions, synthesis)."
        },
        "summary": {
          "type": "string",
          "description": "Strata analysis title."
        },
        "vertices": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "vertexMeta": {
          "type": "unknown",
          "description": "Map of vertex URI to {title, description, type}."
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
