Type Alias EvaluationResultWithCriteriaListResponse

EvaluationResultWithCriteriaListResponse: Omit<
    components["schemas"]["EvaluationResultWithCriteriaListResponse"],
    "total"
    | "page"
    | "limit",
> & {
    limit?: number;
    page?: number;
    pagination?: PaginationResponse;
    total?: number;
}

A page of evaluation results with criteria context.

Not a generated type: two endpoints share this shape and populate different halves of it.

  • GET /agents/{id}/evaluation-results is always paginated and fills total, page and limit.
  • GET /agents/{id}/runs/{runId}/evaluation-results is version-gated: a bare array by default, and the canonical {data, pagination} envelope once apiVersion is 2026-07-27 or later — in which case the metadata is on pagination and the flat fields are absent.