@seamapi/blueprint - v0.53.0
    Preparing search index...

    Variable CodeSampleDefinitionSchemaConst

    CodeSampleDefinitionSchema: ZodObject<
        {
            description: ZodString;
            request: ZodObject<
                {
                    parameters: ZodDefault<
                        ZodOptional<ZodRecord<ZodString, ZodType<Json, ZodTypeDef, Json>>>,
                    >;
                    path: ZodString;
                },
                "strip",
                ZodTypeAny,
                { parameters: Record<string, Json>; path: string },
                { parameters?: Record<string, Json>; path: string },
            >;
            response: ZodObject<
                {
                    body: ZodNullable<
                        ZodRecord<ZodString, ZodType<Json, ZodTypeDef, Json>>,
                    >;
                },
                "strip",
                ZodTypeAny,
                { body: Record<string, Json>
                | null },
                { body: Record<string, Json> | null },
            >;
            title: ZodString;
        },
        "strip",
        ZodTypeAny,
        {
            description: string;
            request: { parameters: Record<string, Json>; path: string };
            response: { body: Record<string, Json> | null };
            title: string;
        },
        {
            description: string;
            request: { parameters?: Record<string, Json>; path: string };
            response: { body: Record<string, Json> | null };
            title: string;
        },
    > = ...