{
  "swagger": "2.0",
  "info": {
    "title": "Client With Enum",
    "description": "Test client with enum variable",
    "version": "1.0.0"
  },
  "host": "localhost:3000",
  "schemes": ["http"],
  "produces": ["application/json"],
  "consumes": ["application/json"],
  "paths": {
    "/clientEnum/head": {
      "head": {
        "operationId": "head",
        "description": "Send a head request to the service. Should have header `x-ms-enum` with value `single`",
        "parameters": [
          {
            "$ref": "#/parameters/EnumParameter"
          }
        ],
        "responses": {
          "200": {
            "description": "response"
          }
        }
      }
    }
  },
  "definitions": {
    "Error": {
      "type": "object",
      "properties": {
        "status": {
          "type": "integer",
          "format": "int32"
        },
        "message": {
          "type": "string"
        }
      }
    }
  },
  "parameters": {
    "EnumParameter": {
      "x-ms-parameter-location": "client",
      "name": "x-ms-enum",
      "in": "header",
      "required": true,
      "type": "string",
      "description": "Enum client parameter",
      "enum": ["single"]
    }
  }
}
