swagger.api-swagger.json Maven / Gradle / Ivy
{
"swagger" : "2.0",
"info" : {
"description" : "API base module.",
"version" : "8.4.2",
"title" : "api"
},
"tags" : [ {
"name" : "Api Root"
} ],
"paths" : {
"/api" : {
"options" : {
"tags" : [ "Api Root" ],
"summary" : "Get the current version and build date of the application.",
"description" : "",
"operationId" : "getVersion",
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/OptionsResponse"
}
}
}
}
}
},
"definitions" : {
"AppVersionResponse" : {
"type" : "object",
"properties" : {
"version" : {
"type" : "string"
},
"buildDate" : {
"type" : "integer",
"format" : "int64"
}
}
},
"OptionsResponse" : {
"type" : "object",
"properties" : {
"app" : {
"$ref" : "#/definitions/AppVersionResponse"
}
}
}
}
}