forked from nmonvisualizer/nmonvisualizer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
json_template_valid.json
116 lines (116 loc) · 3.04 KB
/
json_template_valid.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"hostname": "dummy.rtp.raleigh.ibm.com",
"whenPattern": "MM/dd/yyyy HH:mm:ss",
"metadata": {
"mdata1": "value 1",
"mdata2": "value 2",
"mdata3": "completely arbitrary data goes here"
},
"types": [
{
"id": "type1",
"name": "type 1",
"fields": [ "field11", "field12", "field13" ]
},
{
"id": "type2",
"name": "type 2",
"fields": [ "field21", "field22", "field23" ]
},
{
"id": "type3",
"name": "type 3",
"fields" :[ "field31", "field32", "field33" ]
},
{
"id": "type4",
"name": "type 4",
"subtypes": [ "sub41", "sub42", "sub43"],
"fields" :[ "field41", "field42", "field43" ]
},
{
"id": "type5",
"name": "type 5",
"subtypes": [ "sub51", "sub52", "sub53"],
"fields" :[ "field51", "field52", "field53" ]
}
]
,
"data": [
{ "when": "10/15/2012 10:00:00",
"type1": [ 1, 2, 3 ],
"type2": [ 4, 5, 6 ],
"type3": [ 1, 2 , 3 ],
"type4": {
"sub41": [ 4, 5 , 6 ],
"sub42": [ 6, 7 , 8 ],
"sub43": [ 8, 9 , 10 ]
},
"type5": {
"sub51": [ 3, 2 , 1 ],
"sub52": [ 4, 3 , 2 ],
"sub53": [ 5, 4 , 3 ]
}
},
{ "when": "10/15/2012 10:00:30",
"type1": [ 2, 3 , 4 ],
"type2": [ 5, 6 , 7 ],
"type3": [ 1, 2 , 3 ],
"type4": {
"sub41": [ 4, 5 , 6 ],
"sub42": [ 6, 7 , 8 ],
"sub43": [ 8, 9 , 10 ]
},
"type5": {
"sub51": [ 3, 2 , 1 ],
"sub52": [ 4, 3 , 2 ],
"sub53": [ 5, 4 , 3 ]
}
},
{ "when": "10/15/2012 10:01:00",
"type1": [ 1, 2 , 3 ],
"type2": [ 4, 5 , 6 ],
"type3": [ 1, 2 , 3 ],
"type4": {
"sub41": [ 4, 5 , 6 ],
"sub42": [ 6, 7 , 8 ],
"sub43": [ 8, 9 , 10 ]
},
"type5": {
"sub51": [ 3, 2 , 1 ],
"sub52": [ 4, 3 , 2 ],
"sub53": [ 5, 4 , 3 ]
}
},
{ "when": "10/15/2012 10:01:30",
"type1": [ 2, 3 , 4 ],
"type2": [ 5, 6 , 7 ],
"type3": [ 1, 2 , 3 ],
"type4": {
"sub41": [ 4, 5 , 6 ],
"sub42": [ 6, 7 , 8 ],
"sub43": [ 8, 9 , 10 ]
},
"type5": {
"sub51": [ 3, 2 , 1 ],
"sub52": [ 4, 3 , 2 ],
"sub53": [ 5, 4 , 3 ]
}
},
{ "when" : "10/15/2012 10:02:00",
"type1": [ 1, 2 , 3 ],
"type2": [ 4, 5 , 6 ],
"type3": [ 1, 2 , 3 ],
"type4": {
"sub41": [ 4, 5 , 6 ],
"sub42": [ 6, 7 , 8 ],
"sub43": [ 8, 9 , 10 ]
},
"type5": {
"sub51": [ 3, 2 , 1 ],
"sub52": [ 4, 3 , 2 ],
"sub53": [ 5, 4 , 3 ]
}
}
]
}