Files
gswagger/support/testdata/integration.json
2024-11-08 19:52:34 +01:00

38 lines
642 B
JSON

{
"info": {
"title": "test openapi title",
"version": "test openapi 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": ""
}
}
}
}
}
}