Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 75 additions & 1 deletion public/api-schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -4940,6 +4940,58 @@
},
"description": "The job name to exclude"
},
{
"name": "health_status",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "array",
"items": {
"enum": [
"healthy",
"flaky",
"broken"
],
"type": "string"
}
},
{
"type": "null"
}
],
"description": "The health status to filter on",
"title": "Health Status"
},
"description": "The health status to filter on"
},
{
"name": "health_confidence",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "array",
"items": {
"enum": [
"low",
"medium",
"high"
],
"type": "string"
}
},
{
"type": "null"
}
],
"description": "The health confidence to filter on",
"title": "Health Confidence"
},
"description": "The health confidence to filter on"
},
{
"name": "cursor",
"in": "query",
Expand Down Expand Up @@ -16424,14 +16476,36 @@
"type": "string",
"title": "Job Name",
"description": "Name of the job within the pipeline that ran the test."
},
"health_status": {
"type": "string",
"enum": [
"healthy",
"flaky",
"broken"
],
"title": "Health Status",
"description": "Current health classification of the test: healthy, flaky, or broken."
},
"health_confidence": {
"type": "string",
"enum": [
"low",
"medium",
"high"
],
"title": "Health Confidence",
"description": "Confidence in the health classification, derived from how many times the test has been rerun."
}
},
"type": "object",
"required": [
"test_id",
"test_name",
"pipeline_name",
"job_name"
"job_name",
"health_status",
"health_confidence"
],
"title": "TestSearchResult"
},
Expand Down