{
  "swagger" : "2.0",
  "info" : {
    "version" : "1.0.0",
    "title" : "Application"
  },
  "host" : "{{host}}",
  "basePath" : "{{basePath}}",
  "schemes" : [ "{{schemes}}" ],
  "consumes" : [ "application/json", "application/xml" ],
  "produces" : [ "application/json", "application/xml" ],
  "paths" : {
    "/auth/hiddenResource" : {
      "get" : {
        "description" : "Method Description -- getHiddenResourceByUrl",
        "operationId" : "getHiddenResourceByUrl",
        "tags" : [ "AuthResource" ],
        "parameters" : [ ],
        "responses" : {
          "200" : {
            "schema" : {
              "type" : "array",
              "items" : {
                "type" : "map"
              }
            },
            "description" : "Response OK"
          }
        }
      }
    },
    "/auth/hiddenButtonVue" : {
      "get" : {
        "description" : "Method Description -- getHiddenVueByUrl",
        "operationId" : "getHiddenVueByUrl",
        "tags" : [ "AuthResource" ],
        "parameters" : [ {
          "name" : "publicPath",
          "in" : "query",
          "required" : "false",
          "type" : "string",
          "description" : "parameter name -- publicPath"
        } ],
        "responses" : {
          "200" : {
            "schema" : {
              "type" : "array",
              "items" : {
                "type" : "map"
              }
            },
            "description" : "Response OK"
          }
        }
      }
    }
  },
  "definitions" : { }
}