# The Tool object

## Attributes

- `name` (string, Beta)
  Full resource name:
   supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- `id` (string, Beta)
  Deprecated: Use tool_id instead.
- `tool_type` (string, Beta)
  Tool type. Must be one of: "genie_space", "knowledge_assistant", "uc_function", "uc_connection", "uc_mcp", "app", "volume", "dashboard", "serving_endpoint", "table", "vector_search_index", "catalog", "schema", "supervisor_agent", "databricks_web_search", "skill". The legacy values "lakeview_dashboard", "uc_table", and "web_search" are also accepted and remain equivalent to "dashboard", "table", and "databricks_web_search" respectively. The "databricks_web_search" tool_type maps to the `web_search` spec field.
- `genie_space` (object, Beta)
  - `id` (string, Beta)
    Deprecated: use space_id instead. Still REQUIRED for backward compatibility
     until a future API version removes it.
- `knowledge_assistant` (object, Beta)
  - `serving_endpoint_name` (string, Beta)
    Deprecated: use knowledge_assistant_id instead.
  - `knowledge_assistant_id` (string, Beta)
    The ID of the knowledge assistant.
- `uc_function` (object, Beta)
  - `name` (string, Beta)
    Full uc function name
- `app` (object, Beta)
  - `name` (string, Beta)
    App name
- `volume` (object, Beta)
  - `name` (string, Beta)
    Full uc volume name
- `uc_connection` (object, Beta)
  - `name` (string, Beta)
- `description` (string, Beta)
  Description of what this tool does (user-facing).
- `tool_id` (string, Beta)
  User specified id of the Tool.

## Example

```json
{
  "name": "string",
  "id": "string",
  "tool_type": "string",
  "genie_space": {
    "id": "string"
  },
  "knowledge_assistant": {
    "serving_endpoint_name": "string",
    "knowledge_assistant_id": "string"
  },
  "uc_function": {
    "name": "string"
  },
  "app": {
    "name": "string"
  },
  "volume": {
    "name": "string"
  },
  "uc_connection": {
    "name": "string"
  },
  "description": "string",
  "tool_id": "string"
}
```


