Variable MJInstanceConfigurationSchemaConst
MJInstanceConfigurationSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Category: ZodString;
DefaultValue: ZodString;
Description: ZodNullable<ZodString>;
DisplayName: ZodString;
FeatureKey: ZodString;
ID: ZodString;
Value: ZodString;
ValueType: ZodUnion<
[
ZodLiteral<"boolean">,
ZodLiteral<"json">,
ZodLiteral<"number">,
ZodLiteral<"string">,
],
>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Category?: string;
DefaultValue?: string;
Description?: string;
DisplayName?: string;
FeatureKey?: string;
ID?: string;
Value?: string;
ValueType?: "string"
| "number"
| "boolean"
| "json";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Category?: string;
DefaultValue?: string;
Description?: string;
DisplayName?: string;
FeatureKey?: string;
ID?: string;
Value?: string;
ValueType?: "string"
| "number"
| "boolean"
| "json";
},
> = ...
zod schema definition for the entity MJ: Instance Configurations