# xyz.quasigod.lab.letta.profile

> Published by [quasigod.spaces-alpha.bsky.network](https://lexicon.garden/identity/did:plc:7pezv7mb4agwyktraauhl26g)

## Description

Signaling record: this space participates in the letta modality. Single instance per space, fixed rkey `self` (key: literal:self). Deletion indicates the space is no longer active for letta.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7pezv7mb4agwyktraauhl26g/xyz.quasigod.lab.letta.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7pezv7mb4agwyktraauhl26g/xyz.quasigod.lab.letta.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7pezv7mb4agwyktraauhl26g/xyz.quasigod.lab.letta.profile/examples)

## Definitions

### `xyz.quasigod.lab.letta.profile`

**Type**: `record`

Space-level letta profile. Created once when the space is first used for letta.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes |  |
| `appVersion` | `string` | No | Letta Code version that last wrote to this space. |
| `schemaVersion` | `integer` | Yes | Letta space schema generation this data conforms to. Bumped on non-backwards-compatible record changes. |

## Raw Schema

```json
{
  "id": "xyz.quasigod.lab.letta.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "schemaVersion",
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "appVersion": {
            "type": "string",
            "maxLength": 64,
            "description": "Letta Code version that last wrote to this space."
          },
          "schemaVersion": {
            "type": "integer",
            "minimum": 1,
            "description": "Letta space schema generation this data conforms to. Bumped on non-backwards-compatible record changes."
          }
        }
      },
      "description": "Space-level letta profile. Created once when the space is first used for letta."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Signaling record: this space participates in the letta modality. Single instance per space, fixed rkey `self` (key: literal:self). Deletion indicates the space is no longer active for letta."
}
```
