Skip to content
New issue

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

openapi message_type is defined as an enum instead of a const #17

Open
lfse-slafleur opened this issue Jul 29, 2024 · 0 comments
Open

Comments

@lfse-slafleur
Copy link
Member

The field message_type is currently defined as an enum in openapi.yml.

Example from line 807:

      properties:
        message_type:
          type: string
          enum: [ "DDBC.TimerStatus" ]

Rather a constant is expected such as:

        message_type:
          const: DDBC.TimerStatus
          type: string

A const is generated differently by generators such as datamodel-codegen. An enum will be generated to its own type and it is harder to use while a const will remain a simple string.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant