I use JSON Schema to validate app objects against some schema for testing.
I see that I can set minimum
and maximum
values for a property:
"responseCode": {
"type": "integer",
"minimum": 100,
"maximum": 500
}
But I couldn't find if I can set an exact required value, like "value":123
.
Is it possible to set it to exactly what I need to validate for?