Merge · Schema

ConnectorTool

Full version of ConnectorTool serializer that includes input_schema details.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
name string
description stringnull
input_schema object Any type
credit_type string
View JSON Schema on GitHub

JSON Schema

merge-connectortool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectorTool",
  "title": "ConnectorTool",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": [
        "string",
        "null"
      ]
    },
    "input_schema": {
      "description": "Any type"
    },
    "credit_type": {
      "type": "string"
    }
  },
  "required": [
    "name",
    "description",
    "input_schema",
    "credit_type"
  ],
  "description": "Full version of ConnectorTool serializer that includes input_schema details."
}