Criteria Configuration
Integration-Level Criteria Configuration allows administrators to define element-level filters that determine which records are eligible for synchronization in an MBSE integration.
These criteria are evaluated after package-level filtering (if configured) and ensure that only elements matching the specified conditions are processed.
Overview
Integration-level criteria are defined using a structured JSON configuration. The criteria support simple equality checks and list-based value matching.
Only elements that satisfy all configured criteria conditions are synchronized.
Supported Conditions
EQUALS
Matches elements where the specified field exactly equals the given value.
IN
Matches elements where the field value exists within a provided list of values.
AND
Combines multiple criteria conditions (logical AND only).
Note:
ORconditions are not supported.
Criteria Format
The configuration must be provided as a JSON array.
Example: Single Field (EQUALS)
Example: Multiple Values (IN)
Example: Multiple Root Criteria (Implicit AND)
When multiple criteria objects are provided at the root level, they are treated as a logical AND.
Both conditions must be satisfied for the element to be synchronized.
Example: Nested AND Condition
Nested criteria are flattened and applied using AND logic.
Evaluation Logic
During synchronization:
The criteria configuration is parsed.
Field-value pairs are extracted.
Each element is evaluated.
An element is synchronized only if all criteria conditions match.
Matching Rules
For
EQUALS, the element field value must match exactly.For
IN, the element field value must exist in the defined list.Multiple criteria are evaluated using AND logic.
If any condition fails, the element is excluded.
Validation Rules
The following validations are enforced:
Criteria JSON must be valid.
EQUALSmust include a non-nullvalue.INmust include a non-nullvalueslist.ANDmust include a non-nullcriteriasarray.ORis not supported.Unsupported operators result in configuration errors.
Invalid configurations result in runtime validation errors during criteria extraction.
Interaction with Package Selection Criteria
When both Package Selection Criteria and Integration-Level Criteria are configured:
Package Selection Criteria filters elements by package.
Integration-Level Criteria further filters those elements by field values.
Only elements satisfying both filters are synchronized.
Behavior Notes
Criteria are evaluated per element type.
All configured conditions must match (logical AND).
If no criteria are defined, all elements (subject to other configuration filters) are eligible for synchronization.
Criteria apply only to elements included in the integration configuration.
Best Practices
Keep criteria simple and deterministic.
Use
INfor controlled status-based filtering.Avoid deeply nested criteria structures unless required.
Validate JSON structure before saving configuration.
Test synchronization after updating criteria to confirm expected behavior.
Example Use Case
Synchronize only:
Requirements with Status = "Approved"
Priority = "High"
Last updated

