Properties
| Name | Type | Description |
|---|---|---|
| id | string | ID of the Tool Pack |
| name | string | Name of the Tool Pack |
| description | string | Description of the Tool Pack |
| connectors | array | Connectors enabled with the Tool Pack |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ToolPackPublic",
"title": "ToolPackPublic",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "ID of the Tool Pack"
},
"name": {
"type": "string",
"description": "Name of the Tool Pack"
},
"description": {
"type": "string",
"description": "Description of the Tool Pack"
},
"connectors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ConnectorPublic"
},
"description": "Connectors enabled with the Tool Pack"
}
},
"required": [
"id",
"name",
"description",
"connectors"
]
}