Detailed Description
During the conversion of a swagger file to oas using swagger2openapi with Node.JS, the algorithm creates the components object.
Is there the possibility to add a prefix to components?
Now the result is:
{
"components": {
"requestBodies": {
"Body": ...
"Body2": ...
}
}
}
Is there the possibility to add a prefix to Body, Body2 and other components?
Thanks.