fork of hey-api/openapi-ts because I need some additional things
1{
2 "components": {
3 "schemas": {
4 "Versioned_Schema": {
5 "type": "object",
6 "properties": {
7 "name": {
8 "type": "string"
9 },
10 "status": {
11 "$ref": "#/components/schemas/Versioned_MyEnum"
12 }
13 }
14 },
15 "Versioned_MyEnum": {
16 "type": "string",
17 "enum": ["active", "inactive", "pending"]
18 }
19 }
20 }
21}