A concept the agent has developed understanding of. Keyed by concept name slug.
Record Key
any
Any valid record key
Properties
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"text",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 500,
"description": "Human-readable concept name."
},
"text": {
"type": "string",
"maxLength": 10000,
"description": "Explanation or understanding of the concept."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this concept was last updated."
}
}
},
"description": "A concept the agent has developed understanding of. Keyed by concept name slug."
}