Stefan Lew
Results
2
issues of
Stefan Lew
The following schema: ```json { "enum": ["&&", "||"], "type": "string" } ``` is compiled to ```ts export enum RuleChainingOperator { Type = '&&', Type = '||', } ```
bug
research
## What are the steps to reproduce this issue? 1. Take this minimal API: ```json { "components": { "schemas": { "Example": { "properties": { "a": { "type": "number" }, "b":...
enhancement