get_optimization_recommendations
Generate optimization recommendations for the ServiceNow service catalog to improve performance and efficiency based on specified recommendation types and categories.
Instructions
Get optimization recommendations for the service catalog.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category_id | No | ||
| recommendation_types | Yes |
Input Schema (JSON Schema)
{
"properties": {
"category_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Category Id"
},
"recommendation_types": {
"items": {
"type": "string"
},
"title": "Recommendation Types",
"type": "array"
}
},
"required": [
"recommendation_types"
],
"type": "object"
}