We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Hello, there is a problem while generating nullable enum with int values
prop: type: integer x-nullable: true enum: [ 0, 1, 2, 3, 4, 5 ]
generates to
prop?: "0" | "1" | "2" | "3" | "4" | "5" | null;
but without x-nullable: true generates to
x-nullable: true
prop?: 0 | 1 | 2 | 3 | 4 | 5;