Package version:

The content of the event request message.

interface EventContent {
    action?: string;
    actor?: Actor;
    id?: string;
    request?: Request;
    source?: Source;
    target?: Target;
    timestamp?: any;
}

Properties

action?: string

The action that encompasses the provided event.

actor?: Actor

The agent that initiated the event. For most situations, this could be from the authorization context of the request.

id?: string

The event ID.

request?: Request

The request that generated the event.

source?: Source

The registry node that generated the event. Put differently, while the actor initiates the event, the source generates it.

target?: Target

The target of the event.

timestamp?: any

The time at which the event occurred.