Agno · Schema

UserMemorySchema

AI AgentsMulti-Agent SystemsPython FrameworkLLMMachine LearningAgentic AIOpen SourceAgent Runtime

Properties

Name Type Description
memory_id string Unique identifier for the memory
memory string Memory content text
topics object Topics or tags associated with the memory
agent_id object Agent ID associated with this memory
team_id object Team ID associated with this memory
user_id object User ID who owns this memory
updated_at object Timestamp when memory was last updated
View JSON Schema on GitHub

JSON Schema

agno-user-memory-schema.json Raw ↑
{
  "properties": {
    "memory_id": {
      "type": "string",
      "title": "Memory Id",
      "description": "Unique identifier for the memory"
    },
    "memory": {
      "type": "string",
      "title": "Memory",
      "description": "Memory content text"
    },
    "topics": {
      "anyOf": [
        {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "title": "Topics",
      "description": "Topics or tags associated with the memory"
    },
    "agent_id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Agent Id",
      "description": "Agent ID associated with this memory"
    },
    "team_id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Team Id",
      "description": "Team ID associated with this memory"
    },
    "user_id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "User Id",
      "description": "User ID who owns this memory"
    },
    "updated_at": {
      "anyOf": [
        {
          "type": "string",
          "format": "date-time"
        },
        {
          "type": "null"
        }
      ],
      "title": "Updated At",
      "description": "Timestamp when memory was last updated"
    }
  },
  "type": "object",
  "required": [
    "memory_id",
    "memory"
  ],
  "title": "UserMemorySchema",
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}