Data interface for the type of action.

interface IActionRdfMetadata {
    context: IActionContext;
    quads: Stream<Quad>;
    triples?: boolean;
    url: string;
}

Hierarchy (view full)

Properties

The input context that is passed through by actors.

quads: Stream<Quad>

A quad stream.

triples?: boolean

An optional field indicating if the given quad stream originates from a triple-based serialization, in which everything is serialized in the default graph. If falsy, the quad stream contain actual quads, otherwise they should be interpreted as triples.

url: string

The page URL from which the quads were retrieved.