mirror of
https://github.com/davidebianchi/gswagger.git
synced 2026-04-19 03:56:52 -04:00
46 lines
865 B
JSON
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": ""
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|