We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When i define @ApiResponse(content = @Content(schema = @Schema(type = "file")), extensions = @Extension(properties = @ExtensionProperty(name = "x-is-file", value = "true")))
@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
The text was updated successfully, but these errors were encountered:
4fad109
Yes @wutzebaer. Extensions were only supported using @Operation. The support for extensions on @ApiResponse, will be available on the next release.
@Operation
@ApiResponse
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: