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;
resourceSampleDefinitions: ZodDefault<
ZodArray<
ZodObject<
{
description: ZodString;
properties: ZodRecord<ZodString, ZodType<Json, ZodTypeDef, Json>>;
resource_type: ZodString;
title: ZodString;
},
"strip",
ZodTypeAny,
{
description: string;
properties: Record<string, Json>;
resource_type: string;
title: string;
},
{
description: string;
properties: Record<string, Json>;
resource_type: string;
title: string;
},
>,
"many",
>,
>;
schemas: ZodDefault<ZodOptional<ZodRecord<ZodString, ZodUnknown>>>;
},
"strip",
ZodTypeAny,
{
codeSampleDefinitions: {
description: string;
request: { parameters: Record<string, Json>; path: string };
response: { body: null | Record<string, Json> };
title: string;
}[];
openapi?: any;
resourceSampleDefinitions: {
description: string;
properties: Record<string, Json>;
resource_type: string;
title: string;
}[];
schemas: Record<string, unknown>;
},
{
codeSampleDefinitions?: {
description: string;
request: { parameters?: Record<string, Json>; path: string };
response: { body: null | Record<string, Json> };
title: string;
}[];
openapi?: any;
resourceSampleDefinitions?: {
description: string;
properties: Record<string, Json>;
resource_type: string;
title: string;
}[];
schemas?: Record<string, unknown>;
},
> = ...