Circle V2 API Docs
    Preparing search index...

    Variable passFailQuestionTypeSchemaConst

    passFailQuestionTypeSchema: ZodObject<
        {
            answer: ZodString;
            citation: ZodNullable<
                ZodArray<
                    ZodObject<
                        {
                            quote: ZodString;
                            source: ZodObject<
                                {
                                    documentId: ZodNullable<ZodString>;
                                    name: ZodString;
                                    page: ZodNullable<ZodCoercedNumber<unknown>>;
                                },
                                $strip,
                            >;
                        },
                        $strip,
                    >,
                >,
            >;
            recommendation: ZodNullable<ZodString>;
            status: ZodEnum<
                {
                    fail: "fail";
                    not_applicable: "not_applicable";
                    pass: "pass";
                    warning: "warning";
                },
            >;
            type: ZodLiteral<"pass_fail">;
        },
        $strict,
    > = ...