fork of hey-api/openapi-ts because I need some additional things
1{
2 "components": {
3 "schemas": {
4 "Resource_v1_Schema": {
5 "type": "object",
6 "properties": {
7 "status": {
8 "$ref": "#/components/schemas/Resource_v1_StatusEnum"
9 },
10 "health": {
11 "$ref": "#/components/schemas/Resource_v1_HealthEnum"
12 },
13 "name": {
14 "type": "string"
15 }
16 }
17 },
18 "Resource_v1_StatusEnum": {
19 "type": "string",
20 "enum": ["enabled", "disabled", "standby"]
21 },
22 "Resource_v1_HealthEnum": {
23 "type": "string",
24 "enum": ["ok", "warning", "critical"]
25 }
26 }
27 }
28}