Composio · Schema

ErrorResponse

AI AgentsAuthenticationIntegrationsMCPOAuthSandboxToolsTriggersUnified_APIWebhooks

Properties

Name Type Description
error string Error message.
code string Machine-readable error code.
details object
View JSON Schema on GitHub

JSON Schema

composio-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "Error message."
    },
    "code": {
      "type": "string",
      "description": "Machine-readable error code."
    },
    "details": {
      "type": "object",
      "additionalProperties": true
    }
  }
}