Open jparise opened 3 years ago
I looked at this more closely, and I think this is only "half" of a bug. The vendor extensions are available on the Parameter object, but there isn't any visibility into vendor extensions on the Parameter's Schema object.
Description
Vendor extension properties on a Parameter's Schema Object aren't available (at least with the
python-flask
generator).openapi-generator version
Version 5.1.0
OpenAPI declaration file content or url
Generation Details
I inspected the debugging output (using
--global-property debugOperations=true
), and there is novendorExtensions
field under any of the*Params
collections (e.g.allParams
). I do see the raw content with the parameter'sjsonSchema
field, but that's not useful from within a template.Suggest a fix
It would be useful if the extension properties were available as
vendorExtensions
like they are for other schema objects.