blob: 52e789732f687088cbb221c42cd2eab1761cb772 [file] [log] [blame]
{
"openapi": "3.0.2",
"servers": [
{
"url": "localhost:8080/api"
}
],
"tags" : [ {
"name" : "hello"
} ],
"schemes" : [ "http" ],
"paths" : {
"/hello/hi/{name}" : {
"get" : {
"tags" : [ "hello" ],
"summary" : "Saying hi",
"consumes" : [ "application/json" ],
"produces" : [ "application/json" ],
"parameters" : [ {
"name" : "name",
"in" : "path",
"description" : "Who is it",
"required" : true,
"type" : "string"
} ]
}
},
"/bye" : {
"get" : {
"tags" : [ "bye" ],
"summary" : "Saying bye",
"consumes" : [ "application/json" ],
"produces" : [ "application/json" ],
"parameters" : [ {
"name" : "name",
"in" : "query",
"description" : "Who is it",
"required" : true,
"type" : "string"
} ]
}
}
}
}