{ "$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." }