OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
[ ] [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: UUID
type: string
contentformat:
title: Content Format
type: string
description: 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