Merge · Schema

ConnectorToolMini

Mini version of ConnectorTool serializer that excludes input_schema details.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
name string
description stringnull
credit_type string
View JSON Schema on GitHub

JSON Schema

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