systems.numina.sensemaking.connection

lasa.numina.systems

Documentation

An explicit, typed link between two observations. Enables protocol-visible claim relationships.

main record

An explicit, typed link between two observations. Enables protocol-visible claim relationships.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

note string Optional

Why this connection exists. The reasoning.

maxLength: 5000 bytesmaxGraphemes: 2500 graphemes
relationship string Required

The type of relationship between source and target.

Allowed: supports, contradicts, extends, refines, depends-on, challenges
source string at-uri Required

AT URI of the observation making the connection.

target string at-uri Required

AT URI of the observation being connected to.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "source",
      "target",
      "relationship",
      "createdAt"
    ],
    "properties": {
      "note": {
        "type": "string",
        "maxLength": 5000,
        "description": "Why this connection exists. The reasoning.",
        "maxGraphemes": 2500
      },
      "source": {
        "type": "string",
        "format": "at-uri",
        "description": "AT URI of the observation making the connection."
      },
      "target": {
        "type": "string",
        "format": "at-uri",
        "description": "AT URI of the observation being connected to."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "relationship": {
        "enum": [
          "supports",
          "contradicts",
          "extends",
          "refines",
          "depends-on",
          "challenges"
        ],
        "type": "string",
        "description": "The type of relationship between source and target."
      }
    }
  },
  "description": "An explicit, typed link between two observations. Enables protocol-visible claim relationships."
}

Lexicon Garden

@