Is there a component used to get the example or model from a swagger.json;
For example. This is a swagger.json: http://petstore.swagger.io/v2/swagger.json. I want to get the body example and body model of the interface: POST: /pet.
The body example is
{
"id": 0,
"category": {
"id": 0,
"name": "string"
},
"name": "doggie",
"photoUrls": [
"string"
],
"tags": [
{
"id": 0,
"name": "string"
}
],
"status": "available"
}