@baseUrl = https://localhost:7001

### Trigger an empty-field validation error
POST {{baseUrl}}/users
Accept: application/problem+json
Content-Type: application/json

{
  "name": "",
  "email": "not-an-email"
}

### Trigger a range validation error
POST {{baseUrl}}/products
Accept: application/problem+json
Content-Type: application/json

{
  "name": "Sample",
  "price": -1
}
