{ "$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" ] }