{
  "swagger": "2.0",
  "info": {
    "version": "1.0.0",
    "title": "voicenter-fastify-swagger"
  },
  "definitions": {
    "def-0": {
      "type": "object",
      "properties": {
        "hello": {
          "type": "string"
        }
      }
    },
    "def-1": {
      "type": "object",
      "properties": {
        "hello": {
          "type": "string"
        }
      }
    },
    "def-2": {
      "type": "object",
      "properties": {
        "hello": {
          "type": "string"
        }
      }
    }
  },
  "paths": {
    "/{hello}": {
      "post": {
        "parameters": [
          {
            "type": "string",
            "required": false,
            "in": "query",
            "name": "hello"
          },
          {
            "name": "body",
            "in": "body",
            "schema": {
              "$ref": "#/definitions/def-0/properties/hello"
            }
          },
          {
            "type": "string",
            "required": true,
            "in": "path",
            "name": "hello"
          },
          {
            "in": "header",
            "name": "hello",
            "required": false,
            "type": "string"
          }
        ],
        "responses": {
          "200": {
            "schema": {
              "$ref": "#/definitions/def-0/properties/hello"
            },
            "description": "Default Response"
          }
        }
      }
    }
  }
}