Variable MJScheduledActionParamSchemaConst
MJScheduledActionParamSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
ActionParam: ZodString;
ActionParamID: ZodString;
Comments: ZodNullable<ZodString>;
ID: ZodString;
ScheduledAction: ZodString;
ScheduledActionID: ZodString;
Value: ZodNullable<ZodString>;
ValueType: ZodUnion<[ZodLiteral<"SQL Statement">, ZodLiteral<"Static">]>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
ActionParam?: string;
ActionParamID?: string;
Comments?: string;
ID?: string;
ScheduledAction?: string;
ScheduledActionID?: string;
Value?: string;
ValueType?: "Static"
| "SQL Statement";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
ActionParam?: string;
ActionParamID?: string;
Comments?: string;
ID?: string;
ScheduledAction?: string;
ScheduledActionID?: string;
Value?: string;
ValueType?: "Static"
| "SQL Statement";
},
> = ...
zod schema definition for the entity MJ: Scheduled Action Params