# com.cultureblocs.strand

> Published by [cultureblocs.com](https://lexicon.garden/identity/did:plc:l3726um33xesakwqhjkkpoet)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:l3726um33xesakwqhjkkpoet/com.cultureblocs.strand)
- [Documentation](https://lexicon.garden/lexicon/did:plc:l3726um33xesakwqhjkkpoet/com.cultureblocs.strand/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:l3726um33xesakwqhjkkpoet/com.cultureblocs.strand/examples)

## Definitions

### `com.cultureblocs.strand`

**Type**: `record`

A curated, ordered string of beads and annotations — typically one day's cultural path. The publishable story unit.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `day` | `string` (datetime) | No | The day this strand covers (date portion significant). |
| `items` | `array` | Yes | Ordered refs to bead and annotation records. |
| `links` | `array` | No |  |
| `place` | `ref` → `com.cultureblocs.defs#placeRef` | No | Where this strand happened (e.g. Tate Modern). |
| `title` | `string` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `narrative` | `string` | No |  |

## Raw Schema

```json
{
  "id": "com.cultureblocs.strand",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt",
          "items"
        ],
        "properties": {
          "day": {
            "type": "string",
            "format": "datetime",
            "description": "The day this strand covers (date portion significant)."
          },
          "items": {
            "type": "array",
            "items": {
              "ref": "com.cultureblocs.defs#strongRef",
              "type": "ref"
            },
            "maxLength": 200,
            "description": "Ordered refs to bead and annotation records."
          },
          "links": {
            "type": "array",
            "items": {
              "ref": "com.cultureblocs.defs#linkRef",
              "type": "ref"
            },
            "maxLength": 8
          },
          "place": {
            "ref": "com.cultureblocs.defs#placeRef",
            "type": "ref",
            "description": "Where this strand happened (e.g. Tate Modern)."
          },
          "title": {
            "type": "string",
            "maxGraphemes": 300
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "narrative": {
            "type": "string",
            "maxGraphemes": 10000
          }
        }
      },
      "description": "A curated, ordered string of beads and annotations — typically one day's cultural path. The publishable story unit."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
