xray-core
    Preparing search index...

    Interface XRayCriterionResult

    Result of evaluating a candidate against a single criterion

    interface XRayCriterionResult {
        criterion: string;
        detail: string;
        passed: boolean;
    }
    Index

    Properties

    criterion: string

    Name of the criterion (e.g., "price_range")

    detail: string

    Specific detail about why it passed/failed e.g., "$8.99 is below minimum $14.99"

    passed: boolean

    Whether the candidate passed this criterion