Files
gswagger/testdata/users-deprecated-with-description.json
2024-11-08 19:52:34 +01:00

22 lines
405 B
JSON

{
"info": {
"title": "test openapi title",
"version": "test openapi version"
},
"openapi": "3.0.0",
"paths": {
"/users": {
"get": {
"deprecated": true,
"description": "this is the long route description",
"responses": {
"default": {
"description": ""
}
},
"summary": "small description"
}
}
}
}