Add support for generating pointers as x-nullable #1848
+249
−132
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Describe the PR
With this change, pointers inside a struct are automatically generated with the x-nullable extension
New CLI flag:
--nullablePointers
x-nullable: true
$ref
, like this:it will be generated like this instead:
This ensures the result can then be converted to OpenAPI 3.0 without losing the
nullable
field (using: https://converter.swagger.io). See: https://stackoverflow.com/a/48114924I'm willing to make some improvements if you have any suggestions, I'm not sure I made the change correctly as it just fits my use case for now :)
Relation issue
none
Additional context
I want to generate x-nullable on my pointers but I don't want to annotate all my fields with
extensions:x-nullable
. I think it makes sense to allow generating the x-nullable by default for all pointers.