ToolResponse
Data returned for Tool. Required fields are id, name, category, type, description, item.
Server-assigned unique identifier
Resource name
alias object
URL-safe short handle
- string
- null
Resource type tag
Possible values: [python, agent, workflow]
collection_id object
Parent collection ID
- string
- null
folder_id object
Identifier of the containing folder.
- string
- null
tags object
Classification labels
- string[]
- null
Mandatory marking ids this resource requires; read-only — set via the marking guard endpoints, not Create/PATCH.
[]created_at object
Creation timestamp (Unix ms)
- integer
- null
updated_at object
Last update timestamp (Unix ms)
- integer
- null
owners object[]
Users and groups that own the resource.
"user.
Possible values: [user, group, public]
avatar_url object
- string
- null
avatar_config object
- object
- null
email object
- string<email>
- null
my_share_scope object
How the current caller received access to the resource.
- string
- null
Possible values: [owner, grant, admin]
Whether this is a platform-provided built-in
falsefunction object
Python function schema
- PythonFunctionSchema
- null
inputs object
{}outputs object
{}[]decorators object[]
Decorator bindings declared in configuration. Configured bindings take precedence over source bindings with the same kind and name; an empty list uses source bindings only.
Decorator name, such as use_connector or use_llm. The name must identify a supported decorator.
Binding variable name injected into the namespace
arguments object
Decorator arguments, e.g. {'ref':...} or {'model':...}
Decorator arguments, e.g. {'ref':...} or {'model':...}
ref object
Referenced agent or pipeline name (for agent/workflow tools)
- string
- null
Whether this tool needs a browser sidecar at agent deploy
falseexamples object[]
Worked call examples surfaced as few-shot guidance
description object
- string
- null
arguments object필수
options object
- object
- null
{
"id": "string",
"name": "string",
"alias": "string",
"category": "string",
"type": "python",
"collection_id": "string",
"folder_id": "string",
"tags": [
"string"
],
"description": "string",
"markings": [
"string"
],
"created_at": 0,
"updated_at": 0,
"owners": [
{
"id": "string",
"type": "user",
"display_name": "string",
"avatar_url": "string",
"avatar_config": {},
"email": "user@example.com"
}
],
"my_share_scope": "owner",
"is_builtin": false,
"function": {
"source": "string",
"inputs": {},
"outputs": {},
"dependencies": [
"string"
],
"decorators": [
{
"decorator": "string",
"name": "string",
"arguments": {}
}
]
},
"ref": "string",
"require_browser": false,
"examples": [
{
"description": "string",
"arguments": {}
}
],
"options": {}
}