Summary
Run Evaluation
Description
Run an evaluation
Route
No Northbound API Available
Roles
admin
apiread
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| job_id |
string |
yes |
- |
| evaluation_groups |
array |
yes |
- |
| all_true_flag |
boolean |
yes |
- |
Copied to Clipboard
{
"job_id": "incididunt pariatur Excepteur non",
"evaluation_groups": [],
"all_true_flag": true
}
Copied to Clipboard
{
"type": "object",
"properties": {
"job_id": {
"type": "string"
},
"evaluation_groups": {
"type": "array"
},
"all_true_flag": {
"type": "boolean"
}
},
"required": [
"job_id",
"evaluation_groups",
"all_true_flag"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| return_value |
object |
Result of evaluation |
Copied to Clipboard
{
"return_value": true
}
Copied to Clipboard
{
"description": "Result of evaluation",
"type": "object",
"properties": {
"return_value": true
},
"required": [
"return_value"
],
"additionalProperties": false
}