I see 204 in Responses but not in Response Samples on the right.
delete:
summary: Delete a user
operationId: deleteUser
tags:
- user
parameters:
- name: id
in: path
required: true
description: The id of the user to delete
schema:
type: string
responses:
'204':
description: Empty response when the user is deleted
I believe this is probably expected behavior since a 204 (by definition) has no content there's no sample response to show.
It's still a response with empty body.
Excluding it from response samples make it look like it's not a possible response.
The response is shown in the corresponding "Responses" chapter, but not shown in the examples (as there's no example). I think this is really expected behaviour. You shouldn't base your assumptions on examples, but on the actual specification. This could be a new feature, but I would not see this as a bug.
@m-mohr is correct. There is no example. The response is shown in the middle panel.
Most helpful comment
The response is shown in the corresponding "Responses" chapter, but not shown in the examples (as there's no example). I think this is really expected behaviour. You shouldn't base your assumptions on examples, but on the actual specification. This could be a new feature, but I would not see this as a bug.