We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
is it intentional that the descriptions of body parameters are not used in the Postman collection after the conversion?
From your README.md:
in = body
in = formData
consumes = application/x-www-form-urlencoded
All parmas with above condition are added to urlencoded array.
consumes = multipart/form-data
All parmas with above condition are added to formdata array.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
is it intentional that the descriptions of body parameters are not used in the Postman collection after the conversion?
From your README.md:
Body param conversion example
If
in = body
description: role identifier number
in: body
schema: <schemaObject>
"mode": "raw",
"raw": json-schema-faker(<schemaObject>)
}
If
in = formData
andconsumes = application/x-www-form-urlencoded
description: role identifier number
in: formData
default: defaultValue
"mode": "urlencoded",
"urlencoded": [{
"key": "role-id",
"value": defaultValue,
"type": "text",
}]
}
If
in = formData
andconsumes = multipart/form-data
description: role identifier number
in: formData
default: defaultValue
"mode": "formdata",
"formdata": [{
"key": "role-id",
"value": defaultValue,
"type": "text",
}]
}
The text was updated successfully, but these errors were encountered: