forked from zqzhang/iot-rest-api-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoic.wk.d.json
34 lines (34 loc) · 907 Bytes
/
oic.wk.d.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
{
"$schema": "http://json-schemas.org/schema#",
"id": "http://openinterconnect.org/oic.wk.d#",
"definitions": {
"oic.wk.d": {
"type": "object",
"properties": {
"n": {
"type": "string",
"description": "Readonly, Human friendly name"
},
"di": {
"type": "string",
"description": "ReadOnly, Unique identifier for device (UUID)",
"format": "uuid"
},
"icv": {
"type": "string",
"description": "ReadOnly, The version of the OIC Server"
},
"dmv": {
"type": "string",
"description": "ReadOnly, The spec version of the vertical specification",
"format": "csv"
}
}
}
},
"type": "object",
"allOf": [
{ "$ref": "#/definitions/oic.wk.d" }
],
"required": [ "n", "di", "icv" ]
}