Variable ActionContextSchemaConst
ActionContextSchema: ZodObject<{
Action: ZodString;
ActionID: ZodString;
ContextType: ZodNullable<ZodString>;
ContextTypeID: ZodNullable<ZodString>;
ID: ZodString;
Status: ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Disabled">, ZodLiteral<"Pending">]>;
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
}, "strip", ZodTypeAny, {
Action?: string;
ActionID?: string;
ContextType?: string;
ContextTypeID?: string;
ID?: string;
Status?: "Active" | "Disabled" | "Pending";
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
}, {
Action?: string;
ActionID?: string;
ContextType?: string;
ContextTypeID?: string;
ID?: string;
Status?: "Active" | "Disabled" | "Pending";
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
}> = ...
Type declaration
Action: ZodString
ActionID: ZodString
ContextType: ZodNullable<ZodString>
ContextTypeID: ZodNullable<ZodString>
ID: ZodString
Status: ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Disabled">, ZodLiteral<"Pending">]>
__mj_CreatedAt: ZodDate
__mj_UpdatedAt: ZodDate
Type declaration
Optional Action?: string
Optional ActionID?: string
Optional ContextType?: string
Optional ContextTypeID?: string
Optional ID?: string
Optional Status?: "Active" | "Disabled" | "Pending"
Optional __mj_CreatedAt?: Date
Optional __mj_UpdatedAt?: Date
Type declaration
Optional Action?: string
Optional ActionID?: string
Optional ContextType?: string
Optional ContextTypeID?: string
Optional ID?: string
Optional Status?: "Active" | "Disabled" | "Pending"
Optional __mj_CreatedAt?: Date
Optional __mj_UpdatedAt?: Date
zod schema definition for the entity Action Contexts