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

TS -> OAPI single example #32

Open
accordionpeas opened this issue Nov 3, 2022 · 1 comment
Open

TS -> OAPI single example #32

accordionpeas opened this issue Nov 3, 2022 · 1 comment

Comments

@accordionpeas
Copy link

Hello,

Firstly, thank you for this fantastic project.

I have noticed a small bug when converting from TS to OAPI and using the @example annotation.

If I have the following TS:

type MyType = {
  /**
   * My description
   * @example: test1
   * @example: test2
   */
  myProp: string
}

Then the examples are correctly converted to:

"examples": [
  "test1",
  "test2"
]

However, if there is only 1 example annotation e.g.

type MyType = {
  /**
   * My description
   * @example: test1
   */
  myProp: string
}

Then it is incorrectly converted to:

"examples": "test1"

It should either still be an array with 1 item, or:

"example": "test1"

Thanks very much!

@gregbacchus
Copy link

This should depend on the version of OpenAPI Spec that is being generated. In v3.1.0, example is deprecated. However, in v3.0.0 examples is not even valid, there is only example.

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

2 participants