Letta · Schema

ToolEnvVarSchema

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
created_at string
description object
key string
updated_at string
value string
View JSON Schema on GitHub

JSON Schema

letta-toolenvvarschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ToolEnvVarSchema",
  "title": "ToolEnvVarSchema",
  "properties": {
    "created_at": {
      "type": "string",
      "title": "Created At"
    },
    "description": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Description"
    },
    "key": {
      "type": "string",
      "title": "Key"
    },
    "updated_at": {
      "type": "string",
      "title": "Updated At"
    },
    "value": {
      "type": "string",
      "title": "Value"
    }
  },
  "type": "object",
  "required": [
    "created_at",
    "description",
    "key",
    "updated_at",
    "value"
  ]
}