# coop.hypha.spores.item.specialSpore

> Published by [hypha.coop](https://lexicon.garden/identity/did:plc:rxduhzsfgfpl2glle7vagcwl)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.spores.item.specialSpore)
- [Documentation](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.spores.item.specialSpore/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.spores.item.specialSpore/examples)

## Definitions

### `coop.hypha.spores.item.specialSpore`

**Type**: `record`

A special spore capture record. Each steal creates a new record with a TID key. Current holder is determined by the most recent createdAt timestamp across all backlinked records for a given origin (subject).

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (did) | Yes | Origin garden DID. Used for backlink indexing to find all captures of this spore. |
| `createdAt` | `string` (datetime) | Yes | When this capture occurred. |

## Raw Schema

```json
{
  "id": "coop.hypha.spores.item.specialSpore",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "did",
            "description": "Origin garden DID. Used for backlink indexing to find all captures of this spore."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this capture occurred."
          }
        }
      },
      "description": "A special spore capture record. Each steal creates a new record with a TID key. Current holder is determined by the most recent createdAt timestamp across all backlinked records for a given origin (subject)."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
