Skip to main content

Operators

OperatorDescription
=Equals
!=Not equals
>Greater than
<Less than
>=Greater or equal
<=Less or equal
regexRegular expression
containsContains substring

Field Sources

  • Headers — Validate HTTP headers like Authorization or Content-Type
  • Query Parameters — Validate URL parameters like ?page=1&limit=10
  • Request Body — Validate JSON, XML, or form data with dot notation support

Nested Field Access

Use dot notation to validate nested JSON fields:
user.profile.email      → validates email in nested object
order.items.0.price     → validates first item's price
metadata.source.type    → validates deeply nested values