Aleksei Strizhak
Aleksei Strizhak
Hey @mycodeself thanks for the update. Regarding: > I am not so much in favor of passing by default the client argument even though it is not necessary. My main...
Hi @mycodeself just another gentle reminder, please have a look 🙏
I'm using this specification for such cases: ```yaml '204': description: Success with an empty body content: {} ``` It works for openapi-backend by [validateResponse](https://github.com/openapistack/openapi-backend/blob/71735ae656688e86eeaa20fd0511c12724648708/src/validation.ts#L334) check based on this condition: https://github.com/openapistack/openapi-backend/blob/5.11.1/src/validation.ts#L766
@karenetheridge Thanks for the update, that's interesting 🤔 For an empty json object it should be `application/json` section I guess, like that: ```yaml responses: '204': description: Success with an empty...