Letta · Schema

OrganizationCreate

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
name object The name of the organization.
privileged_tools object Whether the organization has access to privileged tools.
View JSON Schema on GitHub

JSON Schema

letta-organizationcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationCreate",
  "title": "OrganizationCreate",
  "properties": {
    "name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Name",
      "description": "The name of the organization."
    },
    "privileged_tools": {
      "anyOf": [
        {
          "type": "boolean"
        },
        {
          "type": "null"
        }
      ],
      "title": "Privileged Tools",
      "description": "Whether the organization has access to privileged tools.",
      "default": false
    }
  },
  "additionalProperties": false,
  "type": "object"
}