Variable EntityDocumentRunSchemaConst
EntityDocumentRunSchema: ZodObject<{
EndedAt: ZodNullable<ZodDate>;
EntityDocument: ZodString;
EntityDocumentID: ZodString;
ID: ZodString;
StartedAt: ZodNullable<ZodDate>;
Status: ZodUnion<[ZodLiteral<"Complete">, ZodLiteral<"Failed">, ZodLiteral<"Pending">]>;
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
}, "strip", ZodTypeAny, {
EndedAt?: Date;
EntityDocument?: string;
EntityDocumentID?: string;
ID?: string;
StartedAt?: Date;
Status?: "Pending" | "Complete" | "Failed";
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
}, {
EndedAt?: Date;
EntityDocument?: string;
EntityDocumentID?: string;
ID?: string;
StartedAt?: Date;
Status?: "Pending" | "Complete" | "Failed";
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
}> = ...
Type declaration
EndedAt: ZodNullable<ZodDate>
EntityDocument: ZodString
EntityDocumentID: ZodString
ID: ZodString
StartedAt: ZodNullable<ZodDate>
Status: ZodUnion<[ZodLiteral<"Complete">, ZodLiteral<"Failed">, ZodLiteral<"Pending">]>
__mj_CreatedAt: ZodDate
__mj_UpdatedAt: ZodDate
Type declaration
Optional EndedAt?: Date
Optional EntityDocument?: string
Optional EntityDocumentID?: string
Optional ID?: string
Optional StartedAt?: Date
Optional Status?: "Pending" | "Complete" | "Failed"
Optional __mj_CreatedAt?: Date
Optional __mj_UpdatedAt?: Date
Type declaration
Optional EndedAt?: Date
Optional EntityDocument?: string
Optional EntityDocumentID?: string
Optional ID?: string
Optional StartedAt?: Date
Optional Status?: "Pending" | "Complete" | "Failed"
Optional __mj_CreatedAt?: Date
Optional __mj_UpdatedAt?: Date
zod schema definition for the entity Entity Document Runs