Data Filter

Input Data (JSON Array)

Filter Rules

Example Input

[
  {
    "id": 1,
    "name": "Product A",
    "category": "Electronics",
    "price": 299.99,
    "inStock": true
  },
  {
    "id": 2,
    "name": "Product B",
    "category": "Books",
    "price": 19.99,
    "inStock": false
  },
  {
    "id": 3,
    "name": "Product C",
    "category": "Electronics",
    "price": 499.99,
    "inStock": true
  }
]

Example Filter Rules:

  • Category equals "Electronics"
  • Price between 100 and 400
  • Name contains "Product"
  • InStock equals true
  • ID in list "1,3"