All Downloads are FREE. Search and download functionalities are using the official Maven repository.

swagger.api-swagger.json Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
{
  "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"
        }
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy