forked from OpenInterConnect/IoTDataModels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoic.r.refrigeration.json
35 lines (35 loc) · 1.17 KB
/
oic.r.refrigeration.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
{
"id": "http://openinterconnect.org/schemas/oic.r.refrigeration.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"description" : "Copyright (c) 2016 Open Interconnect Consortium, Inc. All rights reserved.",
"title": "Refrigeration",
"definitions": {
"oic.r.refrigeration": {
"type": "object",
"properties": {
"filter": {
"type": "integer",
"description": "ReadOnly, Percentage life time remaining for the water filter"
},
"rapidFreeze": {
"type": "boolean",
"description": "Indicates whether the unit has a rapid freeze capability active."
},
"rapidCool": {
"type": "boolean",
"description": "Indicates whether the unit has a rapid cool capability active"
},
"defrost": {
"type": "boolean",
"description": "Indicates whether a defrost cycle is currently active"
}
}
}
},
"type": "object",
"allOf": [
{"$ref": "oic.core.json#/definitions/oic.core"},
{"$ref": "oic.baseResource.json#/definitions/oic.r.baseresource"},
{"$ref": "#/definitions/oic.r.refrigeration"}
]
}