Data interface for the type of action.

interface IActionRdfMetadataAccumulateAppend {
    accumulatedMetadata: MetadataBindings;
    appendingMetadata: MetadataBindings;
    context: IActionContext;
    mode: "append";
}

Hierarchy (view full)

  • IAction
    • IActionRdfMetadataAccumulateAppend

Properties

accumulatedMetadata: MetadataBindings

The metadata object that already has some accumulated fields. This object should not be mutated.

appendingMetadata: MetadataBindings

The metadata object with fields to append. This object should not be mutated.

The input context that is passed through by actors.

mode: "append"

Indicates that metadata fields should be accumulated. The initialize step is guaranteed to have been called before this on the accumulatedMetadata object.