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: 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;
}> = ...