-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
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
Switching between examples does not render the changed Example Value and Schema it keeps the request schema #5163
Comments
I'm using node I remember I had a problem with a Javascript that didn't run on a part of Swagger UI before, with Laravel. And there is something I did that could fire the Javascript, maybe directly in the source code, or other, can't remember. |
I got it totally wrong, maybe I was tired last night, because once I got back on it, I realized that mine was in response 200 endpoint.get.responses['200'].content['application/json'] = {
examples: {
default: {
summary: 'LRC content in plain text',
value: {
code: "eaae19e3-c80e-4733-b5a9-497c84d24624",
title: "Hard To Say I'm Sorry",
artist: "Az Yet",
length: 198.42,
content: "[ar:Az Yet]\\n[ti:Hard To Say I'm Sorry]\\n[length:03:18.42]\\n[by:Keitel Jovin]\\n[re:www.megalobiz.com/lrc/maker]\\n[ve:1.0]\\n[00:17.87]Everybody needs a little time away\\n[00:22.87]I heard her say, from each other"
},
},
object: {
summary: 'LRC content in object format',
value: {
code: "eaae19e3-c80e-4733-b5a9-497c84d24624",
title: "Hard To Say I'm Sorry",
artist: "Az Yet",
length: 198.42,
content: {
lines: {
1: {
tag: "[00:17.87]",
time: 17.87,
lyrics: "Everybody needs a little time away"
},
},
info: {
ar: { tag: "[ar:Az Yet]", name: "artist", value: "Az Yet" },
ti: { tag: "[ti:Hard To Say I'm Sorry]", name: "title", value: "Hard To Say I'm Sorry" },
length: { tag: "[length:03:18.42]", name: "length", value: "03:18.42", time: 198.42 },
ve: { tag: "[ve:1.0]", name: "editor version", value: "1.0" }
}
}
}
}
}
}; |
Is there anything new on this? |
Q&A (please complete the following information)
Content & configuration
Example Swagger/OpenAPI definition:
Swagger-Editor configuration options:
https://editor-next.swagger.io/ or https://editor.swagger.io/
Describe the bug you're encountering
The editor should switch between the different examples and schemas which where referenced.
Instead, the editor always shows the referenced schema of the request.
To reproduce...
Steps to reproduce the behavior:
Example Value and Schema are not changing.
Expected behavior
If I select the example "update customer", Example Value should add the required property "pk_k" and the schema should change from "kundencenter insertData" to "kundencenter updateData".
Screenshots
Additional context or thoughts
Same issue exists within the repose examples, they are not getting shown when switching between the examples.
Now is the Question if this is intended or a bug.
If it is intended, why is there a way to reference schemas for different examples, if they are not getting respected.
The text was updated successfully, but these errors were encountered: