SysProM
    Preparing search index...

    Information about valid endpoint types for a relationship type.

    interface RelationshipTypeInfo {
        from: (
            | "intent"
            | "concept"
            | "capability"
            | "element"
            | "realisation"
            | "invariant"
            | "principle"
            | "policy"
            | "protocol"
            | "stage"
            | "role"
            | "gate"
            | "mode"
            | "artefact"
            | "decision"
            | "change"
            | "view"
            | "milestone"
        )[];
        to: (
            | "intent"
            | "concept"
            | "capability"
            | "element"
            | "realisation"
            | "invariant"
            | "principle"
            | "policy"
            | "protocol"
            | "stage"
            | "role"
            | "gate"
            | "mode"
            | "artefact"
            | "decision"
            | "change"
            | "view"
            | "milestone"
        )[];
        type: | "refines"
        | "realises"
        | "implements"
        | "depends_on"
        | "constrained_by"
        | "affects"
        | "supersedes"
        | "must_preserve"
        | "part_of"
        | "precedes"
        | "must_follow"
        | "governed_by"
        | "modifies"
        | "produces";
    }
    Index

    Properties

    Properties

    from: (
        | "intent"
        | "concept"
        | "capability"
        | "element"
        | "realisation"
        | "invariant"
        | "principle"
        | "policy"
        | "protocol"
        | "stage"
        | "role"
        | "gate"
        | "mode"
        | "artefact"
        | "decision"
        | "change"
        | "view"
        | "milestone"
    )[]
    to: (
        | "intent"
        | "concept"
        | "capability"
        | "element"
        | "realisation"
        | "invariant"
        | "principle"
        | "policy"
        | "protocol"
        | "stage"
        | "role"
        | "gate"
        | "mode"
        | "artefact"
        | "decision"
        | "change"
        | "view"
        | "milestone"
    )[]
    type:
        | "refines"
        | "realises"
        | "implements"
        | "depends_on"
        | "constrained_by"
        | "affects"
        | "supersedes"
        | "must_preserve"
        | "part_of"
        | "precedes"
        | "must_follow"
        | "governed_by"
        | "modifies"
        | "produces"