Space-level letta profile. Created once when the space is first used for letta.
Record Key
literal:self
Fixed literal value
Properties
appVersion
string
Optional
Letta Code version that last wrote to this space.
maxLength: 64 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
schemaVersion
integer
Required
Letta space schema generation this data conforms to. Bumped on non-backwards-compatible record changes.
minimum: 1View raw schema
{
"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."
}