-
Notifications
You must be signed in to change notification settings - Fork 184
/
deviceinformation-1.json
64 lines (64 loc) · 2.16 KB
/
deviceinformation-1.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
{
"@context": "dtmi:dtdl:context;2",
"@id": "dtmi:azure:DeviceManagement:DeviceInformation;1",
"@type": "Interface",
"displayName": "Device Information",
"contents": [
{
"@type": "Property",
"name": "manufacturer",
"displayName": "Manufacturer",
"schema": "string",
"description": "Company name of the device manufacturer. This could be the same as the name of the original equipment manufacturer (OEM). Ex. Contoso."
},
{
"@type": "Property",
"name": "model",
"displayName": "Device model",
"schema": "string",
"description": "Device model name or ID. Ex. Surface Book 2."
},
{
"@type": "Property",
"name": "swVersion",
"displayName": "Software version",
"schema": "string",
"description": "Version of the software on your device. This could be the version of your firmware. Ex. 1.3.45"
},
{
"@type": "Property",
"name": "osName",
"displayName": "Operating system name",
"schema": "string",
"description": "Name of the operating system on the device. Ex. Windows 10 IoT Core."
},
{
"@type": "Property",
"name": "processorArchitecture",
"displayName": "Processor architecture",
"schema": "string",
"description": "Architecture of the processor on the device. Ex. x64 or ARM."
},
{
"@type": "Property",
"name": "processorManufacturer",
"displayName": "Processor manufacturer",
"schema": "string",
"description": "Name of the manufacturer of the processor on the device. Ex. Intel."
},
{
"@type": "Property",
"name": "totalStorage",
"displayName": "Total storage",
"schema": "double",
"description": "Total available storage on the device in kilobytes. Ex. 2048000 kilobytes."
},
{
"@type": "Property",
"name": "totalMemory",
"displayName": "Total memory",
"schema": "double",
"description": "Total available memory on the device in kilobytes. Ex. 256000 kilobytes."
}
]
}