jamespot-user-api
    Preparing search index...

    Variable surveyFieldGridCheckSchemaConst

    surveyFieldGridCheckSchema: 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: ZodObject<
                ZodShape<SurveyFieldGridCheckData>,
                "strip",
                ZodTypeAny,
                SurveyFieldGridCheckData,
                SurveyFieldGridCheckData,
            >;
            name: ZodLiteral<GridCheck>;
            widgetOptions: ZodObject<
                ZodShape<SurveyFieldOptionGridCheck>,
                "strip",
                ZodTypeAny,
                SurveyFieldOptionGridCheck,
                SurveyFieldOptionGridCheck,
            >;
        },
        "strip",
        ZodTypeAny,
        {
            condition: boolean;
            data: SurveyFieldGridCheckData;
            description: string;
            extraParams?: Record<string, unknown>;
            label: string;
            mandatory: boolean;
            name: GridCheck;
            uniqid: string;
            widgetOptions: SurveyFieldOptionGridCheck;
        },
        {
            condition: boolean;
            data: SurveyFieldGridCheckData;
            description: string;
            extraParams?: Record<string, unknown>;
            label: string;
            mandatory: boolean;
            name: GridCheck;
            uniqid: string;
            widgetOptions: SurveyFieldOptionGridCheck;
        },
    > = ...