When trying to import a swagger file into postman, you guys use the description field of endpoint's parameters as the body; it's not, it's just a literal description field to describe the parameter.
Instead, you should use the schema field, which references a Definition somewhere in the doc.
(Hoping this lib is the one used in the Postman app to convert Swagger2 files to Postman collections.)
When trying to import a swagger file into postman, you guys use the
description
field of endpoint's parameters as the body; it's not, it's just a literal description field to describe the parameter.Instead, you should use the
schema
field, which references aDefinition
somewhere in the doc.(Hoping this lib is the one used in the
Postman
app to convert Swagger2 files to Postman collections.)