mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-13 12:26:34 +03:00
29 lines
479 B
JSON
29 lines
479 B
JSON
{
|
|
"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",
|
|
}
|
|
}
|
|
}
|
|
}
|