Type Alias OAuth2TrustedJwtIssuerSkeleton

OAuth2TrustedJwtIssuerSkeleton: IdObjectSkeletonInterface & {
    _type: {
        _id: "TrustedJwtIssuer";
        collection: true;
        name: "OAuth2 Trusted JWT Issuer";
    };
    allowedSubjects?: Readable<string[]>
    | Writable<string[]>;
    consentedScopesClaim?: Readable<string> | Writable<string>;
    issuer: Readable<string> | Writable<string>;
    jwksCacheTimeout?: Readable<number> | Writable<number>;
    jwkSet?: Readable<string> | Writable<string>;
    jwkStoreCacheMissCacheTime?: Readable<number> | Writable<number>;
    jwksUri?: Readable<string> | Writable<string>;
    resourceOwnerIdentityClaim?: Readable<string> | Writable<string>;
}