jamespot-user-api
    Preparing search index...

    Variable surveyFieldCheckSchemaConst

    surveyFieldCheckSchema: ZodObject<
        {
            condition: ZodType<boolean, ZodTypeDef, boolean>;
            description: ZodType<string, ZodTypeDef, string>;
            extraParams: ZodOptionalType<
                ZodType<
                    Record<string, unknown>
                    | undefined,
                    ZodTypeDef,
                    Record<string, unknown> | undefined,
                >,
            >;
            label: ZodType<string, ZodTypeDef, string>;
            mandatory: ZodType<boolean, ZodTypeDef, boolean>;
            uniqid: ZodType<string, ZodTypeDef, string>;
        } & {
            data: ZodArray<
                ZodObject<
                    ZodShape<SurveyFieldCheckData>,
                    "strip",
                    ZodTypeAny,
                    SurveyFieldCheckData,
                    SurveyFieldCheckData,
                >,
                "many",
            >;
            name: ZodLiteral<Check>;
            widgetOptions: ZodObject<
                ZodShape<SurveyFieldOptionCheck>,
                "strip",
                ZodTypeAny,
                SurveyFieldOptionCheck,
                SurveyFieldOptionCheck,
            >;
        },
        "strip",
        ZodTypeAny,
        {
            condition: boolean;
            data: SurveyFieldCheckData[];
            description: string;
            extraParams?: Record<string, unknown>;
            label: string;
            mandatory: boolean;
            name: Check;
            uniqid: string;
            widgetOptions: SurveyFieldOptionCheck;
        },
        {
            condition: boolean;
            data: SurveyFieldCheckData[];
            description: string;
            extraParams?: Record<string, unknown>;
            label: string;
            mandatory: boolean;
            name: Check;
            uniqid: string;
            widgetOptions: SurveyFieldOptionCheck;
        },
    > = ...