swagger-ui: `Example.externalValue` is not displayed
Example Swagger/OpenAPI definition
openapi: 3.0.0
paths:
/:
post:
requestBody:
content:
image/png:
schema:
type: string
format: binary
examples:
KittenImage:
externalValue: "https://placekitten.com/200/300"
responses:
"200":
description: OK!
Current behavior
Expected behavior
I should be able to use the externally-referenced image as an example value for my endpoint (provided that Swagger UI is able to reach the resource).
Additional context or thoughts
About this issue
- Original URL
- State: open
- Created 5 years ago
- Reactions: 17
- Comments: 31 (6 by maintainers)
I have the same problem. I prefer to keep my examples in external .json files (same with models) so as not to clutter the spec itself too much. Any idea where this is in the priority stack please?
The documentation says that there is possible to use
externalValue. Please update the documentation or fix a bug.I don’t know if this is the appropriate issue, but instead of binary image, I simply want external JSON to display. Is this already planned?
I build my self a quick hack, that works for me for now
https://github.com/swagger-api/swagger-ui/compare/47b992f51c36a85648442c4a246466f83339c9c3...clouless:feature/examplesExternalValue
Push. How has this not been fixed in 2 and a half years?!
Workaround with wrapComponents
Sample
openapi.yamlAdd custom plugin to
index.htmlHas someone found a way to bypass this issue and somehow use
externalValue?It is literally all there, in my initial pr at https://github.com/swagger-api/swagger-js/pull/2013
It is just missing the base64 part and some tests.
@tim-lai @char0n This is a really low hanging fruit. Can you please give this some priority on “your internal backlog”
In addition, this is not a swagger-ui issue. It arises because of wrong resolution / normalization in the swagger-js package.
Anything that can be done to get this on the roadmap?
I dont have any experience with JS and that’s not the point i was trying to convey to be honest. Im not asking you to make it work in your free time, but the least that should be done is a deprecation of that option with a fat warning or a flat out removal so people dont waste their time trying to get this to work, if you don’t intend to do anything about it any time soon
@tim-lai I think this is only partially a swagger-ui issue! I have tried to integrate externalValue examples (from params, requestBody, response) into the sample generation process. I realized that this value is not resolved, I think
swagger-jsshould resolve this just like it resolves refs.Else ways I will implement some resolver that will fetch the raw value hosted behind the externalValue url.
Can we get this fixed please? You have done a great job on introducing multiple example values for the multiple ways that an API endpoint can be called - now please let us also use them in your UI!
Any workaround for this issue? Please share the details when we should expect the fix.