The following schema: ```json { "enum": ["&&", "||"], "type": "string" } ``` is compiled to ```ts export enum RuleChainingOperator { Type = '&&', Type = '||', } ```