Member Junction
    Preparing search index...

    Variable MJAPIKeyScopeSchemaConst

    MJAPIKeyScopeSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            APIKey: ZodString;
            APIKeyID: ZodString;
            ID: ZodString;
            IsDeny: ZodBoolean;
            PatternType: ZodUnion<[ZodLiteral<"Exclude">, ZodLiteral<"Include">]>;
            Priority: ZodNumber;
            ResourcePattern: ZodNullable<ZodString>;
            Scope: ZodString;
            ScopeID: ZodString;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            APIKey?: string;
            APIKeyID?: string;
            ID?: string;
            IsDeny?: boolean;
            PatternType?: "Exclude"
            | "Include";
            Priority?: number;
            ResourcePattern?: string;
            Scope?: string;
            ScopeID?: string;
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            APIKey?: string;
            APIKeyID?: string;
            ID?: string;
            IsDeny?: boolean;
            PatternType?: "Exclude"
            | "Include";
            Priority?: number;
            ResourcePattern?: string;
            Scope?: string;
            ScopeID?: string;
        },
    > = ...

    zod schema definition for the entity MJ: API Key Scopes