fork of hey-api/openapi-ts because I need some additional things
1{
2 "definitions": {
3 "ExternalSharedModel": {
4 "type": "object",
5 "properties": {
6 "id": { "type": "string" },
7 "name": { "type": "string" }
8 },
9 "required": ["id"]
10 },
11 "ExternalSharedModelWithUuid": {
12 "type": "string",
13 "format": "uuid"
14 },
15 "ExternalNested": {
16 "type": "object",
17 "properties": {
18 "inner": {
19 "type": "object",
20 "properties": {
21 "deep": { "type": "string" }
22 }
23 }
24 }
25 },
26 "ExternalNestedNumeric": {
27 "type": "object",
28 "properties": {
29 "0": {
30 "type": "object",
31 "properties": {
32 "1": { "type": "string" }
33 }
34 }
35 }
36 }
37 }
38}