fork of hey-api/openapi-ts because I need some additional things
1{
2 "openapi": "3.1.1",
3 "info": {
4 "title": "OpenAPI 3.1.1 enum escape example",
5 "version": "1"
6 },
7 "components": {
8 "schemas": {
9 "Foo": {
10 "type": "object",
11 "properties": {
12 "foo": {
13 "enum": ["foo'bar", "foo\"bar"],
14 "type": "string"
15 }
16 }
17 },
18 "Bar": {
19 "enum": ["foo'bar", "foo\"bar"],
20 "type": "string"
21 }
22 }
23 }
24}