{
  "swagger": "2.0",
  "info": {
    "version": "1.0.0",
    "title": "Basic Auth Example",
    "description": "An example for how to use Basic Auth with Swagger."},
  "host": "basic.herokuapp.com",
  "schemes": [
    "http",
    "https"
  ],
  "securityDefinitions": {
    "basicAuth": {
      "type": "basic",
      "description": "HTTP Basic Authentication. Works over `HTTP` and `HTTPS`"
    },
    "key": {
      "type": "apiKey",
      "in": "query",
      "name": "Key",
      "description": "ANOTHER"
    }
  },
  "paths": {
    "/": {
      "get": {
        "security": [
          {
            "basicAuth": []
          },
          {
            "key": []
          }
        ],
        "responses": {
          "200": {
            "description": "Will send `Authenticated`, for test for test fot test for test for test for test for test fot test for test for test"
          }
        }
      }
    },
    "/hello": {
      "get": {
        "security": [
          {
            "basicAuth": [],
            "key": []
          }
        ],
        "responses": {
          "200": {
            "description": "Will send `Authenticated` for test for test fot test for test for test for test for test fot test for test for test"
          }
        }
      }
    }
  }
}
