A reference to an DMS instance, defined by the instance itself and the sources (views) that define how the data should be interpreted

interface AnnotationsInstanceRef {
    externalId: string;
    instanceType: "node" | "edge";
    sources: AnnotationsView[];
    space: string;
}

Properties

externalId: string

External id of the instance

^[^\x00]{1,255}$

instanceType: "node" | "edge"

The type of instance, an edge or a node.

sources: AnnotationsView[]

References to views

space: string

Id of the space that the instance belongs to

^[a-zA-Z][a-zA-Z0-9_-]{0,41}[a-zA-Z0-9]?$