CvdsRun
State of a single search run, as returned by
GET /api/v1/cvds/runs/{id}. The results fields are pending the
results pipeline — until it ships, results is null and
results_pending is true.
idstringrequired
The run id (opaque cvds_… string).
Example:
cvds_8mK2pQ7rT1aB9xY3wZ0vNnstatusstringrequired
The run lifecycle state. pending while the search is in progress;
terminal states (the completed / failed values) are finalized with
the results pipeline.
Example:
pendingcorpus_idstring
Example:
acme-eng-poolposition_idstringnullable
Example:
eng-backend-2026is_job_updatedbooleannullable
top_nintegernullable
Example:
50sourcestring
Traffic origin — requests for API-key calls, playground for console calls.
Possible values: [requests, playground]
created_atdate-time
resultsnullable
Pending the results pipeline. Always null for now; the
best-first candidate list lands with the
GET /api/v1/cvds/runs/{id}/results endpoint in a follow-up release.
results_pendingboolean
true while the results side is not yet finalized. Will be removed
once results land.
CvdsRun
{
"id": "cvds_8mK2pQ7rT1aB9xY3wZ0vNn",
"status": "pending",
"corpus_id": "acme-eng-pool",
"position_id": "eng-backend-2026",
"is_job_updated": true,
"top_n": 50,
"source": "requests",
"created_at": "2024-07-29T15:51:28.071Z",
"results_pending": true
}