Hi @Desty,
Thank you for reaching out to MS Q&A.
The issue is not with development or production environments, rather it is with exporting the API. This is a known limitation while exporting it with Open API.
Firstly, I have below sample responses:
When exported it with json (Only top row has exported):
"205": {
"description": "jj",
"content": {
"application/AML": {
"schema": {
"$ref": "#/components/schemas/WeatherForecast"
},
"example": {
"L": 0
}
}
}
}
To resolve this issue, I have exported it using WADL as below:
When exported, I have got all sample responses:
<doc>jj</doc>
<representation mediaType="application/AML">
<doc>{ "L": 0 }</doc>
</representation>
<representation mediaType="application/AML">
<doc>{ "K": 4 }</doc>
Now after importing using WADL, all the sample responses are imported:
Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.