Closed
Description
When i define
@ApiResponse(content = @Content(schema = @Schema(type = "file")), extensions = @Extension(properties = @ExtensionProperty(name = "x-is-file", value = "true")))
the x-is-file is missing, but when i wrap it in an operation, it gets rendered:
@Operation(responses = @ApiResponse(content = @Content(schema = @Schema(type = "file")), extensions = @Extension(properties = @ExtensionProperty(name = "x-is-file", value = "true"))))
which is annoying because i have an custom annotation which includes an @operation definition