Merge · Schema

BulkToolDescriptionOverrideInput

Input serializer for each item in a bulk PATCH request.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
connector_slug string
tool_name string
description stringnull
View JSON Schema on GitHub

JSON Schema

merge-bulktooldescriptionoverrideinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkToolDescriptionOverrideInput",
  "title": "BulkToolDescriptionOverrideInput",
  "type": "object",
  "properties": {
    "connector_slug": {
      "type": "string"
    },
    "tool_name": {
      "type": "string"
    },
    "description": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "connector_slug",
    "tool_name",
    "description"
  ],
  "description": "Input serializer for each item in a bulk PATCH request."
}