Files
gswagger/testdata/schema-no-content.json
2024-11-08 19:52:34 +01:00

46 lines
870 B
JSON

{
"info": {
"title": "test openapi title",
"version": "test openapi 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": {
"content": {},
"description": "request body without schema"
},
"responses": {
"204": {
"description": ""
}
}
}
}
}
}