File tree 2 files changed +14
-43
lines changed
test/config/yml_generator_config
2 files changed +14
-43
lines changed Original file line number Diff line number Diff line change 2
2
type: object
3
3
properties:
4
4
firstName:
5
- type: map
6
- items:
7
- key: string
8
- value: List<int>
5
+ type: Map<String, List<int>>
Original file line number Diff line number Diff line change @@ -26,58 +26,32 @@ Person:
26
26
address:
27
27
type: Address
28
28
listString:
29
- type: array
30
- items:
31
- type: string
29
+ type: List<string>
32
30
listString2:
33
- type: array
34
- items:
35
- type: String
31
+ type: List<String>
36
32
listInt:
37
- type: array
38
- items:
39
- type: int
33
+ type: List<int>
40
34
listInt2:
41
- type: array
42
- items:
43
- type: integer
35
+ type: List<Integer>
44
36
listDouble:
45
- type: array
46
- items:
47
- type: double
37
+ type: List<double>
48
38
listBoolean:
49
- type: array
50
- items:
51
- type: bool
39
+ type: List<bool>
52
40
listBoolean2:
53
- type: array
54
- items:
55
- type: boolean
41
+ type: List<boolean>
56
42
listDynamic:
57
- type: array
58
- items:
59
- type: dynamic
43
+ type: List<dynamic>
60
44
listDynamic2:
61
- type: array
62
- items:
63
- type: any
45
+ type: List<any>
64
46
listDynamic3:
65
- type: array
66
- items:
67
- type: object
47
+ type: List<object>
68
48
listDateTime1:
69
- type: array
70
- items:
71
- type: date
49
+ type: List<date>
72
50
listDateTime2:
73
- type: array
74
- items:
75
- type: datetime
51
+ type: List<dateTime>
76
52
listObject:
77
53
description: A cool list of items
78
- type: array
79
- items:
80
- type: Address
54
+ type: List<Address>
81
55
82
56
83
57
Address:
You can’t perform that action at this time.
0 commit comments