Variable MJEntityRelationshipDisplayComponentSchemaConst
MJEntityRelationshipDisplayComponentSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Description: ZodNullable<ZodString>;
ID: ZodString;
Name: ZodString;
RelationshipType: ZodUnion<
[
ZodLiteral<"Both">,
ZodLiteral<"Many to Many">,
ZodLiteral<"One to Many">,
],
>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Description?: string;
ID?: string;
Name?: string;
RelationshipType?: "Both"
| "Many to Many"
| "One to Many";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Description?: string;
ID?: string;
Name?: string;
RelationshipType?: "Both"
| "Many to Many"
| "One to Many";
},
> = ...
zod schema definition for the entity MJ: Entity Relationship Display Components