MonoCloud Management SDK
    Preparing search index...

    Interface ClaimResource

    Claim Response: Represents a claim that may be included in identity tokens, access tokens, or UserInfo responses.

    ClaimResource

    interface ClaimResource {
        creation_time: number;
        description?: string | null;
        display_name?: string | null;
        id: string;
        is_default: boolean;
        last_updated: number;
        name: string;
        show_in_discovery_document: boolean;
        source: string;
    }
    Index

    Properties

    creation_time: number

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

    ClaimResource

    description?: string | null

    Description that explains the purpose of the resource.

    ClaimResource

    display_name?: string | null

    Human-readable display name for the resource.

    ClaimResource

    id: string

    The unique identifier of the resource.

    ClaimResource

    is_default: boolean

    Indicates whether this claim is a built-in (system-defined) claim.

    ClaimResource

    last_updated: number

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

    ClaimResource

    name: string

    The unique name of the claim.

    ClaimResource

    show_in_discovery_document: boolean

    Indicates whether this resource is advertised via the discovery document.

    ClaimResource

    source: string

    Specifies the expression or attribute path used to derive the claim value from the user profile or identity context.

    ClaimResource