You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added dynamic risk group creation with auto-assignment based on attribute matching and generation from unique attribute values.
- Implemented risk group validation to detect undefined references and circular hierarchies at load time.
- Works on nodes, links, or risk_groups (`entity_scope`)
82
+
- Uses only attribute-based filtering (`conditions`)
83
+
- No path/regex patterns (operates on all entities of specified type)
84
+
85
+
These patterns share common primitives (condition evaluation, match specification) but serve different purposes and should not be confused.
86
+
87
+
> **For comprehensive details** on entity creation flows, processing steps, and comparison tables, see the [Entity Creation Architecture](references/REFERENCE.md#entity-creation-architecture) section in the full reference.
88
+
51
89
### Nodes and Links
52
90
53
91
```yaml
@@ -134,7 +172,7 @@ adjacency:
134
172
- source:
135
173
path: "/datacenter"
136
174
match:
137
-
logic: and # "and" or "or" (default)
175
+
logic: and # "and" or "or"; defaults vary by context (see below)
0 commit comments