If the endpoint returns a Response object this response will be used as is. Otherwise, and by default, and if the specification defines that an endpoint produces only JSON, FireTail will automatically serialize the return value for you and set the right content type in the HTTP header.
If the endpoint produces a single non-JSON mimetype then FireTail will automatically set the right content type in the HTTP header.
FireTail allows you to customize the JSONEncoder class in the Flask app instance json_encoder (firetail.App:app). If you wanna reuse the FireTail's date-time serialization, inherit your custom encoder from firetail.apps.flask_app.FlaskJSONEncoder.
For more information on the JSONEncoder, see the Flask documentation.
There are two ways of returning a specific status code. One way is to return a Response object that will be used unchanged. The other is returning it as a second return value in the response. For example:
There are two ways to return headers from your endpoints. One way is to return a Response object that will be used unchanged. The other is returning a dict with the header values as the third return value in the response:
For example:
By default, FireTail doesn’t validate the responses, however, it is possible to do so by opting in when adding the API:
This will validate all the responses using jsonschema and is particularly useful during development.
By default, response body contents are validated against OpenAPI schema via firetail.decorators.response.ResponseValidator, if you want to change the validation, you can override the default class with:
By default, FireTail error messages are JSON serialized according to Problem Details for HTTP APIs. Applications can return errors using firetail.problem.