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
PathSchemaConnections— Connections of a single schema, with metrics and throughput.
limit_reached*:bool— Whether the connection limit was reached (results may be incomplete).
schema*:String— Human-readable schema string.
selectivity_pruned*:bool— Whether selectivity-based early termination was triggered.
metrics*:SchemaMetrics— Quality metrics for a path schema, computed from its instance connections.
throughput:Option<ThroughputStats>— Event-to-event throughput times, if both endpoints are events.
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
}
}
}