MonoCloud Management SDK
    Preparing search index...

    Scope Claim Response: Represents a user claim granted by a scope and included in the ID token or UserInfo endpoint.

    ScopeClaim

    interface ScopeClaim {
        claim: string;
        include_in_identity_token: boolean;
        include_in_user_info: boolean;
    }
    Index

    Properties

    claim: string

    The name of the user claim granted by this scope.

    ScopeClaim

    include_in_identity_token: boolean

    Indicates whether this claim is included in the issued ID token when the scope is granted.

    ScopeClaim

    include_in_user_info: boolean

    Indicates whether this claim is returned by the UserInfo endpoint when the scope is granted.

    ScopeClaim