{
    "swagger": "2.0",
    "info": {
      "version": "0.0.1"
    },
    "host": "localhost:3333",
    "basePath": "/api/v1",
    "schemes": ["http"],
    "produces": ["application/json"],
    "paths": {
      "/mock": {
        "post": {
          "tags": ["Mock API"],
          "summary": "Fire off a test",
          "responses": {
            "200": {
              "description": "OK"
            },
            "400": {
              "description": "Bad request"
            }
          },
          "content": {
            "application/json": {}
          }
        }
      }
    }
  }