-
Notifications
You must be signed in to change notification settings - Fork 0
/
device.rdf
6508 lines (4405 loc) · 352 KB
/
device.rdf
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="https://w3id.org/rec/device/"
xml:base="https://w3id.org/rec/device/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:o2o="https://karlhammar.com/owl2oas/o2o.owl#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:core="http://www.linkedmodel.org/owl/schema/core#"
xmlns:qudt="http://qudt.org/schema/qudt/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vaem="http://www.linkedmodel.org/schema/vaem#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:metadata="https://w3id.org/rec/metadata/"
xmlns:cpannotationschema="http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#">
<owl:Ontology rdf:about="https://w3id.org/rec/device/">
<owl:versionIRI rdf:resource="https://w3id.org/rec/device/3.3/"/>
<owl:imports rdf:resource="https://w3id.org/rec/core/3.3/"/>
<cc:license rdf:resource="https://opensource.org/licenses/MIT"/>
<dc:contributor>Karl Hammar</dc:contributor>
<dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Erik Wallin</dc:creator>
<dc:description xml:lang="en">This REC module covers device types (sensors and actuators), device configuration, device actuation, etc.</dc:description>
<dc:publisher>RealEstateCore Consortium</dc:publisher>
<dc:title>RealEstateCore Device Module</dc:title>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2021-04-29</dcterms:modified>
<vann:preferredNamespacePrefix>device</vann:preferredNamespacePrefix>
<vann:preferredNamespaceUri>https://w3id.org/rec/device/3.3/</vann:preferredNamespaceUri>
<cpannotationschema:coversRequirements xml:lang="en">At what time was an actuation received by the building system, and at what time was it executed?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">Does temperature sensor TMP882 measure inside or outside temperature?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">Does water temperature sensor TMP334 measure incoming water temperature, or return water temperature?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">How is device AHU731 connected to the building infrastructure (comms bus, protocol, protocol version, connection parameters, etc)?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">What addressable components (sensors, actuators, etc) make up device AHU731?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">What are all the values reported over the past 24 hours from temperature sensors in rooms 2, 4, and 7?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">What does sensor PID22 measure? Using which units?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">What is observation/datapoint OBS-846294-PID22-88 a measurement of?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">What is the measurement unit of observation/datapoint OBS-846294-PID22-88?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">What is the most recent value reading from sensor TMP223?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">What kind of device is AHU731?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">Which sensor did observation/datapoint OBS-846294-PID22-88 come from?</cpannotationschema:coversRequirements>
<rdfs:comment xml:lang="en">The actuation model is deployed and works in practice with the stakeholders, but we need to update the model to reflect current practice in their systems; e.g., extend the semantics a little and formalize standard state messages, response codes, etc.</rdfs:comment>
<rdfs:seeAlso rdf:resource="https://w3id.org/rec/"/>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.3</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/rec/device/actuationExecutedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/actuationExecutedBy">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/producedBy"/>
<owl:inverseOf rdf:resource="https://w3id.org/rec/device/executesActuation"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/device/Actuation"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/Actuator"/>
<rdfs:label xml:lang="en">actuation executed by</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/devicePlacementContext -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/devicePlacementContext">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasPlacementContext"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/PlacementContext"/>
<rdfs:comment xml:lang="en">Deprecated in favor of device:position and device:substance.</rdfs:comment>
<rdfs:label xml:lang="en">device placement context</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/eventPlacementContext -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/eventPlacementContext">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasPlacementContext"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Event"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/PlacementContext"/>
<rdfs:comment xml:lang="en">Deprecated in favor of device:position and device:substance.</rdfs:comment>
<rdfs:label xml:lang="en">event placement context</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/exceptionGeneratedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/exceptionGeneratedBy">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/producedBy"/>
<owl:inverseOf rdf:resource="https://w3id.org/rec/device/generatedException"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/device/Exception"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Sensor"/>
<rdfs:label xml:lang="en">exception generated by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/executesActuation -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/executesActuation">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/producedEvent"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/device/Actuator"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/Actuation"/>
<rdfs:label xml:lang="en">executes actuation</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/generatedException -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/generatedException">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/producedEvent"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Sensor"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/Exception"/>
<rdfs:label xml:lang="en">generated exception</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/generatedObservation -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/generatedObservation">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/producedEvent"/>
<owl:inverseOf rdf:resource="https://w3id.org/rec/device/observationGeneratedBy"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Sensor"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/Observation"/>
<rdfs:comment xml:lang="en">Deprecated in favour of core:generatedObservation</rdfs:comment>
<rdfs:label xml:lang="en">generated observation</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/hasActuationInterface -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/hasActuationInterface">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/Actuator"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/ActuationInterface"/>
<rdfs:label xml:lang="en">has actuation interface</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/hasCommunicationConfiguration -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/hasCommunicationConfiguration">
<rdfs:comment xml:lang="en">Groups the subset of device configuration settings that are expressed using named individuals (for configuration attributes that are modelled with datatype properties, see datatype hasCommunicationAttribute).</rdfs:comment>
<rdfs:label xml:lang="en">has communication configuration</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/hasCommunicationsBus -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/hasCommunicationsBus">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/CommunicationsBus"/>
<rdfs:comment xml:lang="en">has communications bus</rdfs:comment>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/hasDeviceFunctionType -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/hasDeviceFunctionType">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasType"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/DeviceFunctionType"/>
<rdfs:label xml:lang="en">has device function type</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/hasKNXConfiguration -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/hasKNXConfiguration">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasCommunicationConfiguration"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/hasKNXDataPointType -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/hasKNXDataPointType">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasKNXConfiguration"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/KNXDataPointType"/>
<rdfs:label xml:lang="en">hsKNXDataPointType</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/hasModbusConfiguration -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/hasModbusConfiguration">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasCommunicationConfiguration"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/hasModbusDataType -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/hasModbusDataType">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasModbusConfiguration"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/ModbusDataType"/>
<rdfs:label xml:lang="en">hasModbusDataType</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/hasModbusFunctionCode -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/hasModbusFunctionCode">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasModbusConfiguration"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/ModbusFunctionCode"/>
<rdfs:label xml:lang="en">hasModbusFunctionCode</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/hasPlacementContext -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/hasPlacementContext">
<rdfs:range rdf:resource="https://w3id.org/rec/device/PlacementContext"/>
<rdfs:comment xml:lang="en">Deprecated in favor of device:position and device:substance.</rdfs:comment>
<rdfs:label xml:lang="en">has placement context</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/observationGeneratedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/observationGeneratedBy">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/producedBy"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/device/Observation"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Sensor"/>
<rdfs:comment xml:lang="en">Deprecated in favour of core:observationGeneratedBy</rdfs:comment>
<rdfs:label xml:lang="en">observation generated by</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/observedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/observedBy">
<rdfs:range rdf:resource="https://w3id.org/rec/core/Sensor"/>
<rdfs:comment xml:lang="en">Deprecated in favour of core:observedBy.</rdfs:comment>
<rdfs:label xml:lang="en">observed by</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/observes -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/observes">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Sensor"/>
<rdfs:comment xml:lang="en">Indicates the (optional) entity-of-interest of some sensor, i.e., what it is configured to observe or look for.
Deprecated in favour of core:observes</rdfs:comment>
<rdfs:label xml:lang="en">observes</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/observesActuator -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/observesActuator">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/observes"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Sensor"/>
<rdfs:range rdf:resource="https://w3id.org/rec/device/Actuator"/>
<rdfs:comment xml:lang="en">The actuator that a sensor is configured or designed to observe.
Deprecated in favour of core:observes</rdfs:comment>
<rdfs:label xml:lang="en">observes actuator</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/device/sensorInterface -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/device/sensorInterface">
<rdfs:range rdf:resource="https://w3id.org/rec/device/SensorInterface"/>
<rdfs:comment xml:lang="en">Deprecated in favour of core:sensorInterface</rdfs:comment>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/rec/device/HVACMode -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/HVACMode">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/CapabilityPropertySet"/>
<rdfs:range>
<rdfs:Datatype>
<owl:oneOf>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Cooldown</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Cooling</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Depressurize</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Economizing</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Heating</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Manual</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Pressurize</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Purge</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Reheat</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Warmup</rdf:first>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:oneOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment xml:lang="en">Operational mode for HVAC equipment (Project Haystack).</rdfs:comment>
<rdfs:label xml:lang="en">HVAC mode</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/actuationCommand -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/actuationCommand">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/Actuation"/>
<rdfs:comment xml:lang="en">The payload of a command sent by the building management system to the underlying actuator(s).</rdfs:comment>
<rdfs:label xml:lang="en">actuation command</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/actuationRequest -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/actuationRequest">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/Actuation"/>
<rdfs:comment xml:lang="en">The payload of an incoming request to a building management system that it should perform an actuation; to be sent onward to a given Actuator.</rdfs:comment>
<rdfs:label xml:lang="en">actuation request</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/actuationResponse -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/actuationResponse">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/Actuation"/>
<rdfs:comment xml:lang="en">The value returned from an Actuator to the calling party.</rdfs:comment>
<rdfs:label xml:lang="en">actuation response</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/alarm -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/alarm">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/CapabilityPropertySet"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
<rdfs:comment xml:lang="en">Notification of a condition which requires attention such as a threshold exceeded (Project Haystack). This differs from a Fault in that a Fault is used to identify a failure.</rdfs:comment>
<rdfs:label xml:lang="en">alarm</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/assetComponent -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/assetComponent">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/CapabilityPropertySet"/>
<rdfs:range>
<rdfs:Datatype>
<owl:oneOf>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Battery</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Coil</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Compressor</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Condenser</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Damper</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Evaporator</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Fan</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Filter</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Motor</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>VFD</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>coolingCoil</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>heatingCoil</rdf:first>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:oneOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment xml:lang="en">The component that is part of an asset which the capability is associated with.</rdfs:comment>
<rdfs:label xml:lang="en">asset component</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/demand -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/demand">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/CapabilityPropertySet"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
<rdfs:comment xml:lang="en">Rate required for a process. For a setpoint, this sets the required rate for a process such as cooling, heating, air flow, or water flow. For a sensor, this measures the rate of a process over a given interval such as electrical power demand or cooling energy demand.</rdfs:comment>
<rdfs:label xml:lang="en">demand</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/effective -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/effective">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/CapabilityPropertySet"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
<rdfs:comment xml:lang="en">Current control setpoint in effect taking into account other factors (Project Haystack).</rdfs:comment>
<rdfs:label xml:lang="en">effective</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/electricalPhase -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/electricalPhase">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/CapabilityPropertySet"/>
<rdfs:range>
<rdfs:Datatype>
<owl:oneOf>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>A</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>AB</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>B</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>BC</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>C</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>CA</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>N</rdf:first>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:oneOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment xml:lang="en">Phase measurement in a three-phase electrical system (Project Haystack).</rdfs:comment>
<rdfs:label xml:lang="en">electrical phase</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasActuationCommandTime -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasActuationCommandTime">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasTime"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/device/Actuation"/>
<rdfs:comment xml:lang="en">The time stamp for the event of the underlying system intiating the actuation command.</rdfs:comment>
<rdfs:label xml:lang="en">has actuation command time</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasActuationRequestTime -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasActuationRequestTime">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasTime"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/device/Actuation"/>
<rdfs:comment xml:lang="en">The time stamp for when a request for an actuation arrived.</rdfs:comment>
<rdfs:label xml:lang="en">has actuation request time</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasActuationResponseTime -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasActuationResponseTime">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasTime"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/device/Actuation"/>
<rdfs:comment xml:lang="en">The time stamp for a possible response from actuation process.</rdfs:comment>
<rdfs:label xml:lang="en">has actuation response time</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasCommunicationAttribute -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasCommunicationAttribute">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:comment xml:lang="en">Groups the subset of device configuration attributes that are expressed using datatype properties (for configuration attributes that are modelled with named individuals, see object property hasCommunicationConfiguration).</rdfs:comment>
<rdfs:label xml:lang="en">has communication attribute</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasIPAddress -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasIPAddress">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasCommunicationAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:label xml:lang="en">has IP address</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasIPAddressPort -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasIPAddressPort">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasCommunicationAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
<rdfs:label xml:lang="en">has IP address port</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasKNXAttribute -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasKNXAttribute">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasCommunicationAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:label xml:lang="en">has KNX attribute</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasKNXDeviceId -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasKNXDeviceId">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasKNXAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:label xml:lang="en">has KNX device ID</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasKNXDevicePort -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasKNXDevicePort">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasKNXAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
<rdfs:label xml:lang="en">has KNX device port</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasKNXGroupAddress -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasKNXGroupAddress">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasKNXAttribute"/>
<rdfs:label xml:lang="en">has KNX group address</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasLocalEndpointId -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasLocalEndpointId">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasCommunicationAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:label xml:lang="en">has local endpoint ID</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasLoraAttribute -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasLoraAttribute">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasCommunicationAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:label xml:lang="en">has Lora attribute</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasLoraDevEUI -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasLoraDevEUI">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasLoraAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
<rdfs:label xml:lang="en">has Lora DevEUI</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasMACAddress -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasMACAddress">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasAuxiliaryData"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">Deprecated in favour of core:MACAddress.</rdfs:comment>
<rdfs:label xml:lang="en">has MAC address</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasModbusAttribute -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasModbusAttribute">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasCommunicationAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:label xml:lang="en">has Modbus attribute</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasModbusNodeId -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasModbusNodeId">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasModbusAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
<rdfs:label xml:lang="en">has Modbus node ID</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasModbusRegister -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasModbusRegister">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasModbusAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
<rdfs:label xml:lang="en">has Modbus register</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasModbusRegisterLength -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasModbusRegisterLength">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasModbusAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:label xml:lang="en">has Modbus register length</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasOffset -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasOffset">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasCommunicationAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:label xml:lang="en">has offset</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasProcessedTime -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasProcessedTime">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasTime"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/device/Observation"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:comment xml:lang="en">Time when an object or result was processed in a system.
Deprecated in favour of core:hasProcessedTime.</rdfs:comment>
<rdfs:label xml:lang="en">has processed time</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasScaleFactor -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasScaleFactor">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/device/hasCommunicationAttribute"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:label xml:lang="en">has scale factor</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/hasSerialNumber -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/hasSerialNumber">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasAuxiliaryData"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:label xml:lang="en">has serial number</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/limit -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/limit">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/CapabilityPropertySet"/>
<rdfs:range>
<rdfs:Datatype>
<owl:oneOf>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Maximum</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Minimum</rdf:first>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:oneOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment xml:lang="en">Parameter that places and upper (maximum) or lower (minimum) bound on permitted values of another capability.</rdfs:comment>
<rdfs:label xml:lang="en">limit</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/occupancyMode -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/occupancyMode">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/CapabilityPropertySet"/>
<rdfs:range>
<rdfs:Datatype>
<owl:oneOf>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Occupied</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Standby</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Unoccupied</rdf:first>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:oneOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment xml:lang="en">Mode which defines how to control a space based on occupancy status.</rdfs:comment>
<rdfs:label xml:lang="en">occupancy mode</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/device/phenomenon -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/device/phenomenon">
<rdfs:domain rdf:resource="https://w3id.org/rec/device/CapabilityPropertySet"/>
<rdfs:range>
<rdfs:Datatype>
<owl:oneOf>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>ACElectricity</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Air</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>BlowdownWater</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>ChilledWater</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Cloudage</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>ColdDomesticWater</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>CompressedAir</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Condensate</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>CondenserWater</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>DCElectricity</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Data</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>DeionizedWater</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>DieselFuel</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Drainage</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>DriveElectricity</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Electricity</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>EthernetData</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>ExhaustGas</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>Fire</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>FreezingRainPrecipitation</rdf:first>
<rdf:rest>