Validation
Last updated
Was this helpful?
Last updated
Was this helpful?
OpenAPI has rich tools to describe inbound , the and . FLAT can validate all incoming and outgoing HTTP messages against these schemas.
Code and document tend to divert quickly. Therefore, it is strongly recommended to activate validation. It helps spotting errors early during development. In production, the error logs help noticing and diagnosing validation errors.
The has a chapter on .
Overall validation is configured in the top-level :
The request
property activates validation of inbound parameters and request bodies. If the path operation is not defined or the HTTP message does not adhere to the schema, the request is terminated with a and status 400
. In that case, the is not executed.
The response
property activates validation of the outgoing HTTP response before it is sent to the client. If the response status code is not defined for the path or the response body does not follow the schema, the request is terminated with a and status 500
.
Whenever a schema error has been detected, a meaningful message is logged.
Possible values for the validation properties are:
true
activates validation and enforces the schema
false
disables Swagger validation (however, the paths must still be defined)
report-only
performs validation and logs a validation error without terminating the request
The default value is false
.
You can also set x-flat-validate
more specifically for certain paths and methods, for example:
FLAT uses an error document for all validation errors. It looks like this:
If the validation configuration has to be dynamic (e.g. read an environment variable to active it), you can use instead of x-flat-validate
.