network.cosmik.connection

lexicon.store View official

Documentation

A connection linking a source to a target, with optional type and note.

main record

A connection linking a source to a target, with optional type and note.

Record Key tid Timestamp-based ID

Properties

connectionType string Optional

Optional type of connection

createdAt string datetime Optional

Timestamp when this connection was created.

note string Optional

Optional note about the connection

maxLength: 1000 bytes
source string Required

Source entity (URL string or AT URI)

target string Required

Target entity (URL string or AT URI)

updatedAt string datetime Optional

Timestamp when this connection was last updated.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "source",
      "target"
    ],
    "properties": {
      "note": {
        "type": "string",
        "maxLength": 1000,
        "description": "Optional note about the connection"
      },
      "source": {
        "type": "string",
        "description": "Source entity (URL string or AT URI)"
      },
      "target": {
        "type": "string",
        "description": "Target entity (URL string or AT URI)"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when this connection was created."
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when this connection was last updated."
      },
      "connectionType": {
        "type": "string",
        "description": "Optional type of connection"
      }
    }
  },
  "description": "A connection linking a source to a target, with optional type and note."
}

Lexicon Garden

@