Letta · Schema

ParametersSchema

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
type object
properties object
required array
View JSON Schema on GitHub

JSON Schema

letta-parametersschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ParametersSchema",
  "title": "ParametersSchema",
  "properties": {
    "type": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Type",
      "default": "object"
    },
    "properties": {
      "additionalProperties": {
        "$ref": "#/components/schemas/ParameterProperties"
      },
      "type": "object",
      "title": "Properties"
    },
    "required": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "title": "Required"
    }
  },
  "type": "object",
  "required": [
    "properties"
  ]
}