xray-core
    Preparing search index...

    Interface XRayEvaluation

    Result of evaluating a single candidate against all criteria

    interface XRayEvaluation {
        candidate: Record<string, unknown>;
        candidateId: string;
        passed: boolean;
        results: XRayCriterionResult[];
        summary?: string;
    }
    Index

    Properties

    candidate: Record<string, unknown>

    The candidate data being evaluated

    candidateId: string

    Unique identifier for the candidate

    passed: boolean

    Whether the candidate passed all criteria

    Results for each criterion/filter

    summary?: string

    Optional summary of the evaluation