Merge · Schema

ToolDescriptionOverride

Response serializer for tool-level description overrides. Includes a computed `defined_at` field (CONNECTOR or TOOL_PACK) indicating whether the override originates from the connector level or tool pack level.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
connector_slug string
tool_name string Name of the tool being overridden
description string Custom description for the tool
defined_at string
created_at string
modified_at string
View JSON Schema on GitHub

JSON Schema

merge-tooldescriptionoverride-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ToolDescriptionOverride",
  "title": "ToolDescriptionOverride",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "connector_slug": {
      "type": "string"
    },
    "tool_name": {
      "type": "string",
      "description": "Name of the tool being overridden"
    },
    "description": {
      "type": "string",
      "description": "Custom description for the tool"
    },
    "defined_at": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "modified_at": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "id",
    "connector_slug",
    "tool_name",
    "description",
    "defined_at",
    "created_at",
    "modified_at"
  ],
  "description": "Response serializer for tool-level description overrides.\n\nIncludes a computed `defined_at` field (CONNECTOR or TOOL_PACK) indicating\nwhether the override originates from the connector level or tool pack level."
}