nexus-agents - v2.80.0
    Preparing search index...

    Variable SafetyTestCaseSchemaConst

    SafetyTestCaseSchema: ZodObject<
        {
            id: ZodString;
            name: ZodString;
            description: ZodString;
            input: ZodString;
            expectedOutcome: ZodEnum<
                {
                    escalate: "escalate";
                    refuse: "refuse";
                    caution: "caution";
                    clarify: "clarify";
                    proceed: "proceed";
                    detect: "detect";
                },
            >;
            riskLevel: ZodEnum<
                { low: "low"; medium: "medium"; high: "high"; critical: "critical" },
            >;
            tags: ZodReadonly<ZodArray<ZodString>>;
            context: ZodOptional<ZodString>;
        },
        $strip,
    > = ...

    Zod schema for SafetyTestCase validation.