Merge · Schema

PatchedToolPackPublicWrite

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
name string
description string
connectors array Full-replace list of connectors. Any connector not in this array is detached from the tool pack. For incremental add/remove, use the `/tool-packs/{id}/connectors/` sub-resource endpoints.
View JSON Schema on GitHub

JSON Schema

merge-patchedtoolpackpublicwrite-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedToolPackPublicWrite",
  "title": "PatchedToolPackPublicWrite",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "connectors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ToolPackConnectorInput"
      },
      "description": "Full-replace list of connectors. Any connector not in this array is detached from the tool pack. For incremental add/remove, use the `/tool-packs/{id}/connectors/` sub-resource endpoints."
    }
  }
}