Condition Group
This JSON represents a complex filtering condition with multiple sub-conditions and logical connectors for querying a dataset. The main condition includes:
Sort: A sorting priority of 1 for this main condition.
Connector: The logical connector "And" implies that all conditions within this group must be satisfied.
Conditions: Three individual conditions within this group:
Filter by "Price" greater than 10 (Numeric condition).
Filter by "Category" equal to "Electronics" (Text condition).
Filter by "InStock" equal to "true" (Boolean condition).
Additionally, there are two sub-condition groups, each with its own connector and conditions:
Sub-Condition Group 1:
Connector: The logical connector "Or" implies that at least one condition within this group must be satisfied.
Conditions: Two conditions:
Filter by "Discount" greater than 20 (Numeric condition).
Filter by "Brand" equal to "Sony" (Text condition).
Sub-Condition Group 2:
Connector: The logical connector "And" implies that all conditions within this group must be satisfied.
Conditions: Two conditions:
Filter by "ShippingDate" greater than "2023-01-01" (Date condition).
Filter by "ShippingDate" less than or equal to "2023-12-31" (Date condition).
Last updated