You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Optional] Sponsorship to speed up the bug fix or feature request (example)
Description
Generator returns boilerplate without any declaration of schema type if it's an enum.
openapi-generator version
7.9.0
OpenAPI declaration file content or url
components:
schemas:
uuid:
title: UUIDtype: stringcontentformat:
title: Content Formattype: stringdescription: Identifies the content format for a flow or source using a URN string.enum:
- 'urn:x-nmos:format:video'
- 'urn:x-nmos:format:audio'
- 'urn:x-nmos:format:data'
- 'urn:x-nmos:format:multi'
Generation Details
This is the output I get in the functions generated using contentformat schema:
format: = Query(None, description="Filter on flow format.", alias="format"),
whereas I would expect
format: str = Query(None, description="Filter on flow format.", alias="format"),
It also doesn't declare the type anywhere else in the generated function. If you get rid of the enum property from the schema it generates as expected.
Bug Report Checklist
Description
Generator returns boilerplate without any declaration of schema type if it's an enum.
openapi-generator version
7.9.0
OpenAPI declaration file content or url
Generation Details
This is the output I get in the functions generated using
contentformat
schema:whereas I would expect
It also doesn't declare the type anywhere else in the generated function. If you get rid of the enum property from the schema it generates as expected.
Steps to reproduce
The text was updated successfully, but these errors were encountered: