Member Junction
    Preparing search index...

    Variable MJEncryptionKeySourceSchemaConst

    MJEncryptionKeySourceSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            ConfigTemplate: ZodNullable<ZodString>;
            Description: ZodNullable<ZodString>;
            DriverClass: ZodString;
            DriverImportPath: ZodNullable<ZodString>;
            ID: ZodString;
            IsActive: ZodBoolean;
            Name: ZodString;
            Status: ZodUnion<
                [
                    ZodLiteral<"Active">,
                    ZodLiteral<"Deprecated">,
                    ZodLiteral<"Inactive">,
                ],
            >;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            ConfigTemplate?: string;
            Description?: string;
            DriverClass?: string;
            DriverImportPath?: string;
            ID?: string;
            IsActive?: boolean;
            Name?: string;
            Status?: "Active"
            | "Deprecated"
            | "Inactive";
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            ConfigTemplate?: string;
            Description?: string;
            DriverClass?: string;
            DriverImportPath?: string;
            ID?: string;
            IsActive?: boolean;
            Name?: string;
            Status?: "Active"
            | "Deprecated"
            | "Inactive";
        },
    > = ...

    zod schema definition for the entity MJ: Encryption Key Sources