MonoCloud Management SDK
    Preparing search index...

    Scope Response: Represents a permission that can be requested by clients and evaluated during authorization.

    Scope

    interface Scope {
        creation_time: number;
        description?: string | null;
        display_name?: string | null;
        emphasize: boolean;
        id: string;
        is_default: boolean;
        last_updated: number;
        name: string;
        required: boolean;
        show_in_discovery_document: boolean;
        user_claims: ScopeClaim[];
    }
    Index

    Properties

    creation_time: number

    Specifies the creation time of the resource (in Epoch).

    Scope

    description?: string | null

    Description that explains the purpose of the resource.

    Scope

    display_name?: string | null

    Human-readable display name for the resource.

    Scope

    emphasize: boolean

    Indicates whether this scope is visually emphasized on the consent screen, typically for sensitive or high-impact permissions.

    Scope

    id: string

    The unique identifier of the resource.

    Scope

    is_default: boolean

    Indicates whether this is a built-in identity scope provided by the platform.

    Scope

    last_updated: number

    Specifies the last update time of the resource (in Epoch).

    Scope

    name: string

    The unique name of the scope. This is the value a client will use for the scope parameter in the authorize request.

    Scope

    required: boolean

    Specifies whether the scope is mandatory and cannot be de-selected by the user on the consent screen.

    Scope

    show_in_discovery_document: boolean

    Indicates whether this resource is advertised via the discovery document.

    Scope

    user_claims: ScopeClaim[]

    List of user claim types that will be embedded into identity tokens and/or returned from the UserInfo endpoint when this scope is granted.

    Scope