Letta · Schema

SandboxEnvironmentVariableCreate

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
key string The name of the environment variable.
value string The value of the environment variable.
description object An optional description of the environment variable.
View JSON Schema on GitHub

JSON Schema

letta-sandboxenvironmentvariablecreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SandboxEnvironmentVariableCreate",
  "title": "SandboxEnvironmentVariableCreate",
  "properties": {
    "key": {
      "type": "string",
      "title": "Key",
      "description": "The name of the environment variable."
    },
    "value": {
      "type": "string",
      "title": "Value",
      "description": "The value of the environment variable."
    },
    "description": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Description",
      "description": "An optional description of the environment variable."
    }
  },
  "additionalProperties": false,
  "type": "object",
  "required": [
    "key",
    "value"
  ]
}