mirror of
https://github.com/davidebianchi/gswagger.git
synced 2025-12-23 23:38:43 -05:00
46 lines
870 B
JSON
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": ""
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|