Variable MJQueryEntitySchemaConst
MJQueryEntitySchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
AutoDetectConfidenceScore: ZodNullable<ZodNumber>;
DetectionMethod: ZodUnion<[ZodLiteral<"AI">, ZodLiteral<"Manual">]>;
Entity: ZodString;
EntityID: ZodString;
ID: ZodString;
Query: ZodString;
QueryID: ZodString;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
AutoDetectConfidenceScore?: number;
DetectionMethod?: "Manual"
| "AI";
Entity?: string;
EntityID?: string;
ID?: string;
Query?: string;
QueryID?: string;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
AutoDetectConfidenceScore?: number;
DetectionMethod?: "Manual"
| "AI";
Entity?: string;
EntityID?: string;
ID?: string;
Query?: string;
QueryID?: string;
},
> = ...
zod schema definition for the entity MJ: Query Entities