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