Member Junction
    Preparing search index...

    Variable MJAuthorizationRoleSchemaConst

    MJAuthorizationRoleSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            Authorization: ZodString;
            AuthorizationID: ZodString;
            ID: ZodString;
            Role: ZodString;
            RoleID: ZodString;
            Type: ZodUnion<[ZodLiteral<"Allow">, ZodLiteral<"Deny">]>;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Authorization?: string;
            AuthorizationID?: string;
            ID?: string;
            Role?: string;
            RoleID?: string;
            Type?: "Allow"
            | "Deny";
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Authorization?: string;
            AuthorizationID?: string;
            ID?: string;
            Role?: string;
            RoleID?: string;
            Type?: "Allow"
            | "Deny";
        },
    > = ...

    zod schema definition for the entity MJ: Authorization Roles