Skip to main content

PathSchemaConnections

Connections of a single schema, with metrics and throughput.
Used as Input

0

functions accept this type

Used as Output

1

function return this type

Type Definition

34 nested items
PathSchemaConnectionsConnections of a single schema, with metrics and throughput.
connections*:Vec<Connection>The connections, with entities referenced by their OCEL index.
limit_reached*:boolWhether the connection limit was reached (results may be incomplete).
schema*:StringHuman-readable schema string.
selectivity_pruned*:boolWhether selectivity-based early termination was triggered.
stats*:SchemaStatsMetrics plus optional throughput for a single schema.

Example JSON Value

{
  "connections": [
    {
      "source": {
        "Event": 1
      },
      "target": {
        "Event": 1
      }
    }
  ],
  "limit_reached": false,
  "schema": "example",
  "selectivity_pruned": false,
  "stats": {
    "metrics": {
      "coverage": 0.2,
      "exclusivity": 0.2,
      "path_count": 1,
      "reach": 0.2,
      "selectivity": 0.2,
      "sources_with_paths": 1,
      "support": 1,
      "total_sources": 1
    }
  }
}

Functions Returning This Type(1)