File

src/issuer/configuration/credentials/dto/authorization-identity.ts

Description

Identity context from authorization server token (internal or external AS).

Index

Properties

Properties

iss
iss: string
Type : string

The issuer (iss) of the authorization server

sub
sub: string
Type : string

The subject (sub) from the AS token - user identifier

token_claims
token_claims: Record<string | unknown>
Type : Record<string | unknown>

Additional claims from the access token

export interface AuthorizationIdentity {
    /**
     * The issuer (iss) of the authorization server
     */
    iss: string;
    /**
     * The subject (sub) from the AS token - user identifier
     */
    sub: string;
    /**
     * Additional claims from the access token
     */
    token_claims: Record<string, unknown>;
}

results matching ""

    No results matching ""