Model of a custom tool
| name | data type | constraints | description |
|---|---|---|---|
| id | number | required int | Internal ID |
| key | string | Unique key of the tool | |
| name | map of string | Name of the Tool in english and german | |
| toolUrl | string | Tool URL | |
| iconUrl | string | Optional icon URL | |
| newtab | boolean | required boolean | True if the tool shall be opened in a new tab |
Example
{
"id" : 12345,
"key" : "...",
"name" : {
"property1" : "...",
"property2" : "..."
},
"toolUrl" : "...",
"iconUrl" : "...",
"newtab" : true
}