Letta · Schema

ModifyApprovalRequest

Request body for modifying tool approval requirements.

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
requires_approval boolean Whether the tool requires approval before execution
View JSON Schema on GitHub

JSON Schema

letta-modifyapprovalrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModifyApprovalRequest",
  "title": "ModifyApprovalRequest",
  "properties": {
    "requires_approval": {
      "type": "boolean",
      "title": "Requires Approval",
      "description": "Whether the tool requires approval before execution"
    }
  },
  "additionalProperties": false,
  "type": "object",
  "required": [
    "requires_approval"
  ],
  "description": "Request body for modifying tool approval requirements."
}