Stefan Lew
Stefan Lew
Having the same issue here. As a temporary workaround I defined a schema: ```json "Null": { "description": "the JSON value `null`", "example": null, "nullable": true, "oneOf": [], "type": "string" }...
Is there any reason to exclude special characters at all? Javascript accepts all string values as property names. https://tc39.es/ecma262/#sec-object-type > All String and Symbol values, including the empty String, are...
Then you'll run into the next problem with cases like ```ts export const EdgeCase = { 'edge_case': 'edge case', 'edge_case': 'edge_case' } as const ``` Although it may seem strange...
Perhaps you are already aware, but there is a non-standard property `x-enumNames` that is recognized by some other tools. You could use this instead of (or in addition to) more...
Thank you for implementing x-enumNames! Here are some more test cases that currently cause code generation to fail: ``` "TestEnums": { "type": "object", "properties": { "newline": { "enum": ["\n"], "type":...