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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://tizen.org/sysInfoResult.json",
"type": "object",
"title": "The System Information Result Schema",
"description": "Result of the system information request",
"required": [
"default",
"feature",
"system"
],
"properties": {
"default": {
"$id": "#/properties/default",
"type": "object",
"title": "The Default Schema",
"description": "Default values passed as a result",
"required": [
"manufacturer",
"profile",
"modelName",
"platformVersion",
"processor",
"processorCount",
"memorySize",
"build",
"buildRelease",
"buildType",
"buildDate"
],
"properties": {
"manufacturer": {
"$id": "#/properties/default/properties/manufacturer",
"type": "string",
"description": "The manufacturer name",
"examples": [
"Tizen"
]
},
"profile": {
"$id": "#/properties/default/properties/profile",
"type": "string",
"description": "A compliant device profile such as 'mobile' or 'wearable'",
"examples": [
"common"
]
},
"modelName": {
"$id": "#/properties/default/properties/modelName",
"type": "string",
"description": "The device model name",
"examples": [
"rpi3"
]
},
"platformVersion": {
"$id": "#/properties/default/properties/platformVersion",
"type": "string",
"description": "The version of the platform in '[Major].[Minor].[Patch Version]' format",
"examples": [
"5.5"
]
},
"processor": {
"$id": "#/properties/default/properties/processor",
"type": "string",
"description": "The device processor name",
"examples": [
"BCM2837"
]
},
"processorCount": {
"$id": "#/properties/default/properties/processorCount",
"type": "integer",
"description": "The number of processors",
"examples": [
4
]
},
"memorySize": {
"$id": "#/properties/default/properties/memorySize",
"type": "integer",
"description": "The physical memory size(KiB)",
"examples": [
917504
]
},
"build": {
"$id": "#/properties/default/properties/build",
"type": "string",
"description": "The build version information string that is made when the platform image is created",
"examples": [
"tizen-unified_20190316.2"
]
},
"buildRelease": {
"$id": "#/properties/default/properties/buildRelease",
"type": "string",
"description": "The build version information that is made when the platform image is created",
"examples": [
"20190316.2"
]
},
"buildType": {
"$id": "#/properties/default/properties/buildType",
"type": "string",
"description": "The build type, such as 'user' or 'eng', that is made when the platform image is created",
"examples": [
"user"
]
},
"buildDate": {
"$id": "#/properties/default/properties/buildDate",
"type": "string",
"description": "The build date that is made when the platform image is created",
"examples": [
"20190316_214915"
]
}
}
},
"feature": {
"$id": "#/properties/feature",
"type": "array",
"title": "The Feature Schema",
"description": "Verified supported features",
"items": {
"$id": "#/properties/feature/items",
"type": "object",
"required": [
"key",
"type",
"value"
],
"properties": {
"key": {
"$id": "#/properties/feature/items/properties/key",
"type": "string",
"description": "Feature key for checking supported features",
"examples": [
"plaform.version.name"
]
},
"type": {
"$id": "#/properties/feature/items/properties/type",
"type": "string",
"enum" : ["bool", "int", "string"],
"description": "Type of the value that the feature key represents",
"examples": [
"string"
]
},
"value": {
"$id": "#/properties/feature/items/properties/value",
"type": ["boolean", "integer", "string"],
"description": "The value of the verified supported features",
"examples": [
"magnolia"
]
}
}
}
},
"system": {
"$id": "#/properties/system",
"type": "array",
"title": "The System Schema",
"description": "Verified system information",
"items": {
"$id": "#/properties/system/items",
"type": "object",
"required": [
"key",
"type",
"value"
],
"properties": {
"key": {
"$id": "#/properties/system/items/properties/key",
"type": "string",
"description": "System key for getting the system information",
"examples": [
"sound.media.volume.resolution.max"
]
},
"type": {
"$id": "#/properties/system/items/properties/type",
"type": "string",
"enum" : ["bool", "int", "string"],
"description": "Type of the value that the system key represents",
"examples": [
"int"
]
},
"value": {
"$id": "#/properties/system/items/properties/value",
"type": ["boolean", "integer", "string"],
"description": "The value of the verified supported features",
"examples": [
40
]
}
}
}
}
}
}
|