Letta · Schema

AuthResponse

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
uuid string UUID of the user
is_admin object Whether the user is an admin
View JSON Schema on GitHub

JSON Schema

letta-authresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthResponse",
  "title": "AuthResponse",
  "properties": {
    "uuid": {
      "type": "string",
      "format": "uuid",
      "title": "Uuid",
      "description": "UUID of the user"
    },
    "is_admin": {
      "anyOf": [
        {
          "type": "boolean"
        },
        {
          "type": "null"
        }
      ],
      "title": "Is Admin",
      "description": "Whether the user is an admin"
    }
  },
  "type": "object",
  "required": [
    "uuid"
  ]
}