Letta · Schema
CoreMemoryBlockSchema
AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | |
| description | object | |
| is_template | boolean | |
| label | string | |
| limit | integer | |
| metadata_ | object | |
| template_name | object | |
| updated_at | string | |
| value | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CoreMemoryBlockSchema",
"title": "CoreMemoryBlockSchema",
"properties": {
"created_at": {
"type": "string",
"title": "Created At"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Description"
},
"is_template": {
"type": "boolean",
"title": "Is Template"
},
"label": {
"type": "string",
"title": "Label"
},
"limit": {
"type": "integer",
"title": "Limit"
},
"metadata_": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"title": "Metadata"
},
"template_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Template Name"
},
"updated_at": {
"type": "string",
"title": "Updated At"
},
"value": {
"type": "string",
"title": "Value"
}
},
"type": "object",
"required": [
"created_at",
"description",
"is_template",
"label",
"limit",
"template_name",
"updated_at",
"value"
]
}