eg. you can see from the test JSON that it is gene...
# http4k
d
eg. you can see from the test JSON that it is generating this:
Copy code
"/basepath/welcome/{firstName}/bertrand/{secondName}": {
      "get": {
        "tags": [
          "/basepath"
        ],
        "summary": "a friendly endpoint",
        "produces": [],
        "consumes": [
          "application/x-www-form-urlencoded"
        ],
        "parameters": [
          {
            "in": "query",
            "name": "query",
            "required": true,
            "type": "boolean",
            "description": "description of the query"
          },
          {
            "in": "path",
            "name": "firstName",
            "required": true,
            "type": "string"
          },
          {
            "in": "path",
            "name": "secondName",
            "required": true,
            "type": "string"
          },
          {
            "in": "form",
            "name": "form",
            "required": true,
            "type": "integer",
            "description": "description of the form"
          }
        ],
        "responses": {},
        "security": [
          {
            "api_key": []
          }
        ]
      }
    }