redoc/tests/schemas/methods-list-component.json

29 lines
479 B
JSON
Raw Normal View History

2015-12-19 18:19:18 +03:00
{
"swagger": "2.0",
"info": {
},
"host": "petstore.swagger.io",
"basePath": "/v2/",
"tags": [{
"name": "traitTag",
"x-traitTag": true,
"description": "description1"
},{
"name": "tag1",
"description": "tag1",
}],
"schemes": ["http"],
"paths": {
"/pet": {
"post": {
"tags": ["tag1"],
"summary": "tag1"
},
"put": {
"tags": ["tag1", "traitTag"],
"summary": "two tags",
}
}
}
}