Type Alias ClaimsMappingInteractive

Mappings from claim name to an array of JSON pointers that point to locations in the claims from the IdP to retrieve the value from.

type ClaimsMappingInteractive = {
    client_id?: string[];
    email?: string[];
    email_verified?: string[];
    groups?: string[];
    locale?: string[];
    name?: string[];
    picture?: string[];
    sub?: string[];
    zoneinfo?: string[];
}
Index

Properties

client_id?: string[]

A list of JSON pointers used to map the user's client ID.

email?: string[]

A list of JSON pointers used to map the user's email.

email_verified?: string[]

A list of JSON pointers used to map the user's email_verified claim.

groups?: string[]

A list of JSON pointers used to map the user's groups.

locale?: string[]

A list of JSON pointers used to map the user's locale.

name?: string[]

A list of JSON pointers used to map the user's name.

picture?: string[]

A list of JSON pointers used to map the user's picture.

sub?: string[]

A list of JSON pointers used to map the user's subject.

zoneinfo?: string[]

A list of JSON pointers used to map the user's zoneinfo.