Plane docs
ApiSchemas

ProviderToolConfig

One shape from the contract, as it appears on the wire.

Used by agents.create, agents.promote, agents.update, agents.upsert, agents.versions

Referenced from ToolConfig

JSON Schema

{
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "provider"
      ]
    },
    "name": {
      "$ref": "#/components/schemas/ProviderToolName"
    },
    "config": {
      "type": "object"
    },
    "raw": {
      "type": "object"
    },
    "provider": {
      "$ref": "#/components/schemas/ProviderType"
    },
    "required": {
      "type": "boolean"
    },
    "pin": {
      "type": "boolean"
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": false
}

On this page