fork of hey-api/openapi-ts because I need some additional things
1{
2 "components": {
3 "schemas": {
4 "ResolutionStep": {
5 "type": "object",
6 "properties": {
7 "ResolutionType": {
8 "oneOf": [
9 {
10 "$ref": "#/components/schemas/ResolutionType"
11 }
12 ]
13 },
14 "ActionName": {
15 "type": "string"
16 }
17 }
18 },
19 "ResolutionType": {
20 "type": "string",
21 "enum": ["ContactVendor", "ResetToDefaults", "RetryOperation"]
22 },
23 "ActionInfo": {
24 "type": "object",
25 "properties": {
26 "ActionId": {
27 "type": "string"
28 }
29 }
30 }
31 }
32 }
33}