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