Variable TypesModuleSchemaConst

TypesModuleSchema: ZodObject<{
    codeSampleDefinitions: ZodDefault<ZodArray<ZodObject<{
        description: ZodString;
        request: ZodObject<{
            parameters: ZodDefault<ZodOptional<ZodRecord<(...), (...)>>>;
            path: ZodString;
        }, "strip", ZodTypeAny, {
            parameters: Record<string, Json>;
            path: string;
        }, {
            parameters?: Record<string, Json>;
            path: string;
        }>;
        response: ZodObject<{
            body: ZodNullable<ZodRecord<ZodString, ZodType<(...), (...), (...)>>>;
        }, "strip", ZodTypeAny, {
            body: null | Record<string, Json>;
        }, {
            body: null | Record<string, Json>;
        }>;
        title: ZodString;
    }, "strip", ZodTypeAny, {
        description: string;
        request: {
            parameters: Record<string, Json>;
            path: string;
        };
        response: {
            body: null | Record<string, Json>;
        };
        title: string;
    }, {
        description: string;
        request: {
            parameters?: Record<string, Json>;
            path: string;
        };
        response: {
            body: null | Record<string, Json>;
        };
        title: string;
    }>, "many">>;
    openapi: ZodAny;
}, "strip", ZodTypeAny, {
    codeSampleDefinitions: {
        description: string;
        request: {
            parameters: Record<string, Json>;
            path: string;
        };
        response: {
            body: null | Record<string, Json>;
        };
        title: string;
    }[];
    openapi?: any;
}, {
    codeSampleDefinitions?: {
        description: string;
        request: {
            parameters?: Record<string, Json>;
            path: string;
        };
        response: {
            body: null | Record<string, Json>;
        };
        title: string;
    }[];
    openapi?: any;
}> = ...