GCC Build OSv0
/api

linked_toedge type

Generic associative edge for relationships not captured by a more specific edge type. Use sparingly; pack-validator emits a warning if a pack creates linked_to between source/target pairs that have a specific edge available. Allowed pairs are the explicit source/target lists below.

Full spec

{
  "name": "linked_to",
  "description": "Generic associative edge for relationships not captured by a more specific edge type. Use sparingly; pack-validator emits a warning if a pack creates linked_to between source/target pairs that have a specific edge available. Allowed pairs are the explicit source/target lists below.",
  "source_node_types": [
    "Question",
    "Capability",
    "Risk",
    "Assumption",
    "Issue"
  ],
  "target_node_types": [
    "Question",
    "Capability",
    "Risk",
    "Assumption",
    "Issue",
    "Milestone"
  ],
  "cardinality": "N:N",
  "traversal_semantics": "bidirectional",
  "dag_participation": false,
  "lifecycle_states": [
    "active",
    "terminated"
  ],
  "attributes_schema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "kind": {
        "type": "string",
        "enum": [
          "clarifies",
          "related",
          "scopes",
          "see_also"
        ],
        "description": "soft sub-classification of the association"
      },
      "note": {
        "type": "string",
        "maxLength": 1000
      }
    }
  },
  "raci_role": null
}