Debugging

  • You can check the warning and debug yourself what’s wrong in Specs.

"WARNING Empty tag received from payload"

This warning tells that you haven't set up swagger specs properly. Each path of Swagger specs contains one tag. If it's not
there it is difficult to generate a framework. e.g. "tags": ["Tag_Name"]. Please follow swagger RFC for more details https://swagg
er.io/docs/specification/2-0/grouping-operations-with-tags/. Once you fixed your swagger then rerun the tool again.
"Swagger spec doesn't have a deprecated tag. Please check and fix it"

This warning tells that you haven't set up swagger specs properly. Each path of Swagger specs contains one key i.e.
"deprecated". It actually tells the user if that API is alive or deprecated. If it's not there we will generate the framework but it's
better to have it. Please follow swagger RFC for more details https://swagger.io/docs/specification/2-0/grouping-operationswith-tags/ on section "Marking as Deprecated". Once you fixed your swagger then rerun the tool again.