Variable MJArtifactSchemaConst
MJArtifactSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Comments: ZodNullable<ZodString>;
Description: ZodNullable<ZodString>;
Environment: ZodString;
EnvironmentID: ZodString;
ID: ZodString;
Name: ZodString;
Type: ZodString;
TypeID: ZodString;
User: ZodString;
UserID: ZodString;
Visibility: ZodUnion<[ZodLiteral<"Always">, ZodLiteral<"System Only">]>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Comments?: string;
Description?: string;
Environment?: string;
EnvironmentID?: string;
ID?: string;
Name?: string;
Type?: string;
TypeID?: string;
User?: string;
UserID?: string;
Visibility?: "Always"
| "System Only";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Comments?: string;
Description?: string;
Environment?: string;
EnvironmentID?: string;
ID?: string;
Name?: string;
Type?: string;
TypeID?: string;
User?: string;
UserID?: string;
Visibility?: "Always"
| "System Only";
},
> = ...
zod schema definition for the entity MJ: Artifacts