Files
gswagger/testdata/schema-no-content.json
2020-10-20 01:41:47 +02:00

46 lines
865 B
JSON

{
"components": {},
"info": {
"title": "test swagger title",
"version": "test swagger version"
},
"openapi": "3.0.0",
"paths": {
"/{id}": {
"post": {
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"schema": {}
},
{
"in": "query",
"name": "q",
"schema": {}
},
{
"in": "header",
"name": "key",
"schema": {}
},
{
"in": "cookie",
"name": "cookie1",
"schema": {}
}
],
"requestBody": {
"description": "request body without schema"
},
"responses": {
"204": {
"description": ""
}
}
}
}
}
}