Variable MJComponentRegistrySchemaConst
MJComponentRegistrySchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
APIVersion: ZodNullable<ZodString>;
Description: ZodNullable<ZodString>;
ID: ZodString;
Name: ZodString;
Status: ZodNullable<
ZodUnion<
[
ZodLiteral<"Active">,
ZodLiteral<"Deprecated">,
ZodLiteral<"Offline">,
],
>,
>;
Type: ZodNullable<
ZodUnion<
[ZodLiteral<"Internal">, ZodLiteral<"Private">, ZodLiteral<"Public">],
>,
>;
URI: ZodNullable<ZodString>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
APIVersion?: string;
Description?: string;
ID?: string;
Name?: string;
Status?: "Active"
| "Deprecated"
| "Offline";
Type?: "Public" | "Internal" | "Private";
URI?: string;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
APIVersion?: string;
Description?: string;
ID?: string;
Name?: string;
Status?: "Active"
| "Deprecated"
| "Offline";
Type?: "Public" | "Internal" | "Private";
URI?: string;
},
> = ...
zod schema definition for the entity MJ: Component Registries