{
  "swagger": "2.0",
  "info": {
    "title": "API Console",
    "description": "Example description",
    "version": "0.1"
  },
  "host": "example.com",
  "basePath": "/api",
  "schemes": [
    "http"
  ],
  "paths": {
    "/example": {
      "get": {
        "description": "Example description",
        "tags": [
          "Example API"
        ],
        "operationId": "example.id",
        "summary": "example.id",
        "produces": [
          "application/json"
        ],
        "responses": {
          "200": {
            "description": "OK: The request has succeeded."
          }
        }
      }
    }
  },
  "securityDefinitions": {
    "Basic": {
      "type": "basic",
      "description": "Basic username and password"
    },
    "Authorization": {
      "type": "apiKey",
      "name": "Authorization",
      "in": "header",
      "description": "API Key authorization"
    }
  }}
