HTTP RESPONSES
Response Validation
Overview
Ensure API responses meet expectations through comprehensive validation techniques.
Structure Validation
* match response ==
"""
{
id: '#number',
name: '#string',
active: '#boolean'
}
"""
```gherkin
## Content Validation
```gherkin
* match response.users[*].email == '#regex .+@.+\\..+'
* match response.total == '#? _ > 0'
```gherkin
More content coming soon...