AI identity and personality configuration. Typically one record per AI with rkey 'self'.
Record Key
any
Any valid record key
Properties
content
union
Required
Core personality and instructions. Supports markdown and other formats via $type.
Known types:
createdAt
string
datetime
Required
Timestamp when this core record was created.
did
string
did
Required
DID of the AI agent.
handle
string
Required
Handle of the AI agent.
updatedAt
string
datetime
Optional
Timestamp of the last update.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"did",
"handle",
"content",
"createdAt"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "DID of the AI agent."
},
"handle": {
"type": "string",
"description": "Handle of the AI agent."
},
"content": {
"refs": [
"#markdown"
],
"type": "union",
"closed": false,
"description": "Core personality and instructions. Supports markdown and other formats via $type."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when this core record was created."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of the last update."
}
}
},
"description": "AI identity and personality configuration. Typically one record per AI with rkey 'self'."
}