Files
gswagger/support/testdata/intergation-subrouter.json
2022-12-23 21:03:53 +01:00

48 lines
811 B
JSON

{
"components": {},
"info": {
"title": "test swagger title",
"version": "test swagger version"
},
"openapi": "3.0.0",
"paths": {
"/hello": {
"get": {
"responses": {
"default": {
"description": ""
}
}
}
},
"/hello/{value}": {
"post": {
"parameters": [
{
"in": "path",
"name": "value",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"default": {
"description": ""
}
}
}
},
"/prefix/foo": {
"get": {
"responses": {
"default": {
"description": ""
}
}
}
}
}
}