-
Notifications
You must be signed in to change notification settings - Fork 0
/
core.html
7419 lines (7281 loc) · 330 KB
/
core.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>RealEstateCore Core Module</title>
<link rel="icon" type="image/png" sizes="32x32" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAC40lEQVRYhe2UT0hUQRzHp6Iss1B3VZKIDbbdfW9mnoi4f3zzjkJQeOgS0SEIb1EWBGGlLLu460zQPQM1unUIIjA6rfpm6ZAhHjoIRVQUFUlEbG+euTsdXG1d3VL3bVD4g+9h+L35fT/8fvN7ADgY9aHY5fpIvK82HO9ysu66wxWOzbkjcekKx0a2ALYA/n2AGi3a6ArFezcidziecQygNhhrcUficjP6PwBqtGijKxy/thnVBePHywYoDsFhl53GV8SEcsTx4usCMLUewTVpc23BNvEzm6Neyf1+KcG2vwqwUjgrOJq2JmHftwmkVBRGTvncFodnbI7vChO/FRznCmHsNM7aHM9Yk7Df5iqsLMw9sMNOK2g+jS4IEz0UJv4iuJZb2RltWnB4UZqH6ioGAgAAGe5vtiZhtzDx7OoRadLmeM7m6IRjhnLMW2Vx1bA5GhAmnhIcz6/xNj4Ujsky8UspwfayjDPjsF2Y6L7N8Vzx/BfP+KPg6LbgSqd8DnfJW2CnbaLhfH5ephpqygJYvQU4Z3P82TLRsDDhUTnmrSq+Y3N0Mg+Xldy/zwEAnLMWZ3pHpNExmfLs/t0dOdVcbT0JeKxUwFP2VljjqiE47Jp53LTXNxhsUZjerTByXWX6VZWRs/4bIQ2ACv+UAomgDzLCISNZxAxZKMhIDjLy1JfsaK+I+eGBUBNk5E2x8RogX/PdcDZUqieWTSh5D6nOVKqfhoycUmlHFFIyu5RXqf7AcQDISCpv/tqbMBqK883RtmpISRoxQyJKPgGn3wNk5NEigDFa6hslqV/Kj+FdBQD0bshIDlKSLlVcoWQo36UhR80BAMB73lulMn0EMpJTqD6qJiOt3mho/8GbkT2BZNgDB/V+RI0fkOrT3kRIVQbaDizJm2hdNbINBxwk5xAj3yEjuV9rZ1iIkgxixkLBA83mz8uCjLwoGwAx0vOnFSy5mtR4VTaAQvVORMnwZgSpzkrV/QmdE2tKe46+MQAAAABJRU5ErkJggg==">
<link rel="icon" type="image/png" sizes="16x16" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABhklEQVQ4jbWPzStEURjG3yQLirlGKUnKFO45Z+SjmXvnnmthQcpCoVhYmD/AwmJiI3OvZuZc2U3UlKU0/gAslMw9JgvhHxAr2fko7r0jHSsl+TgbTz2Lt5731/MASEiJW9ONml2QyX6rsGalmnT74v8BDf12hxJfpV8d1uwNKUBYszabdFv84L8B9X0rESVmmUup2fme0cVhJWaZHw4NWL1Sew
EAfDe6H3Dy6Ll456WEJsRZS630MwCAOI20ei5OBpxse5zcBZw8eS4uPpfIuDiCainIg9umBCU0GZzgLZ9Hn31OgoATL+CkLDGB5H1OKj4nFd/FBxUXJ0UZNb4edw/6nLyJXaj5FeCVyPLNIVmYK8TG1IwWb16L1gEACAFV90ftoT8bdOX0EeyY99gxBXZMgRz6qGb1KantAACI0UvE6F5XJqEjpsdURouI0Vt5gGOUkUNnPu7ObGIIMfNaGqDmjDRi9FZldF1lRgYzeqUyeoiY4ag5Iy3RgOYRM8+/M2bG8efsO4hGrpmJseyMAAAAAElFTkSuQmCC">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style>
#pylode {
position: fixed;
top: 130px;
left: -60px;
font-size: small;
transform: rotate(-90deg);
color: grey;
}
#pylode a {
font-size: 2em;
font-weight: bold;
text-decoration: none;
color: #005A9C;
}
#pylode a:hover {
color: #333;
}
.cardinality {
font-style: italic;
color: #aa00aa;
}
dt {
font-weight: bold;
padding: 5px 0 5px 0;
}
ul.hlist {
list-style-type: none;
border: 1px solid navy;
padding:5px;
background-color: #F4FFFF;
}
ul.hierarchy {
border: 1px solid navy;
padding: 5px 25px 5px 25px;
background-color: #F4FFFF;
}
ul.hlist li {
display: inline;
margin-right: 10px;
}
.entity {
border: 1px solid navy;
margin:5px 0 5px 0;
padding: 5px;
}
.entity th {
width: 150px;
vertical-align: top;
}
.entity th,
.entity td {
padding-bottom: 20px;
}
.entity table th {
text-align: left;
}
section#overview img {
max-width: 1000px;
}
h1, h2, h3, h4, h5, h6 {
text-align: left
}
h1, h2, h3 {
color: #005A9C; background: white
}
h1 {
font: 170% sans-serif;
line-height: 110%;
}
h2 {
font: 140% sans-serif;
margin-top:40px;
}
h3 {
font: 120% sans-serif;
margin-top: 3px;
padding-bottom: 5px;
border-bottom: 1px solid navy;
}
h4 { font: bold 100% sans-serif }
h5 { font: italic 100% sans-serif }
h6 { font: small-caps 100% sans-serif }
body {
padding: 2em 70px 2em 70px;
margin: 0;
font-family: sans-serif;
color: black;
background: white;
background-position: top left;
background-attachment: fixed;
background-repeat: no-repeat;
text-align: justify;
}
section {
max-width: 1500px;
}
.figure {
margin-bottom: 20px;
}
:link { color: #00C; background: transparent }
:visited { color: #609; background: transparent }
a:active { color: #C00; background: transparent }
.sup-c,
.sup-op,
.sup-fp,
.sup-dp,
.sup-ap,
.sup-p,
.sup-ni,
.sup-con,
.sup-col {
cursor:help;
margin-left: 3px;
}
.sup-c {
color:orange;
}
.sup-op {
color:navy;
}
.sup-fp {
color:lightskyblue;
}
.sup-dp {
color:green;
}
.sup-ap {
color:darkred;
}
.sup-p {
color:black;
}
.sup-ni {
color:brown;
}
.sup-con {
color:orange;
}
.sup-col {
color:darkred;
}
code {
font-size: large;
color: darkred;
}
/* less prominent links for properties */
.proplink {
color: #336;
text-decoration: none;
}
</style>
<script type="application/ld+json">
[
{
"@id": "https://w3id.org/rec/core/",
"@type": [
"https://schema.org/DefinedTermSet"
],
"https://schema.org/description": [
{
"@value": "<p>The REC core module collects the top-level classes and properties that span over or are reused within multiple REC modules.</p>\n<p>Note that this module reuses certain classes, properties, and named individuals from other vocabularies, e.g., GeoSPARQL; the copyright conditions on those reused entities are stated in their respective rdfs:comments annotations.</p>"
}
],
"https://schema.org/name": [
{
"@value": "RealEstateCore Core Module"
}
]
}
]
</script>
</head>
<body>
<div id="pylode">made by <a href="http://github.com/rdflib/pyLODE">
<span style="color:#329545;">p</span><span style="color:#f9cb33;">y</span>LODE</a>
<span style="font-size:smaller;">2.12.0</span>
</div>
<h1>RealEstateCore Core Module</h1>
<section id="metadata">
<h2 style="display:none;">Metadata</h2>
<dl>
<dt>URI</dt>
<dd><code>https://w3id.org/rec/core/</code></dd>
<dt><a class="proplink" href="https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/publisher">Publisher</a>(s)</dt>
<dd>
RealEstateCore Consortium<br/>
</dd>
<dt><a class="proplink" href="https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/creator">Creator</a>(s)</dt>
<dd>
Erik Wallin<br/>
Karl Hammar<br/>
</dd>
<dt><a class="proplink" href="https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/modified">Modified</a></dt>
<dd>2020-06-23</dd>
<dt>Version Information</dt>
<dd>3.3</dd>
<dt>Version URI</dt>
<dd><a href="https://w3id.org/rec/core/3.3/">core:</a></dd>
<dt>Imports</dt>
<dd>
<a href="https://w3id.org/rec/metadata/3.3/">https://w3id.org/rec/metadata/3.3/</a><br/>
<a href="https://w3id.org/rec/units/3.3/">https://w3id.org/rec/units/3.3/</a><br/>
</dd>
<dt>Ontology RDF</dt>
<dd><a href="core.rdf">RDF (xml)</a></dd>
</dl>
<h2>Description</h2>
<div id="description">
<p>The REC core module collects the top-level classes and properties that span over or are reused within multiple REC modules.</p>
<p>Note that this module reuses certain classes, properties, and named individuals from other vocabularies, e.g., GeoSPARQL; the copyright conditions on those reused entities are stated in their respective rdfs:comments annotations.</p>
</div>
</section>
<section id="toc">
<h2>Table of Contents</h2>
<ol>
<li><a href="#classes">Classes</a></li>
<li><a href="#objectproperties">Object Properties</a></li>
<li><a href="#datatypeproperties">Datatype Properties</a></li>
<li><a href="#namedindividuals">Named Individuals</a></li>
<li><a href="#namespaces">Namespaces</a></li>
<li><a href="#legend">Legend</a></li>
</ol>
</section>
<section id="overview">
<h2>Overview</h2>
<div class="figure">
<iframe src="webvowl/index.html#core" width="100%" height="800"></iframe>
<div class="caption"><strong>Figure 1:</strong> Ontology overview</div>
</div>
</section>
<section id="classes">
<h2>Classes <span style="float:right; font-size:smaller;"><a href="">↑</a></span></h2>
<ul class="hlist">
<li><a href="http://www.opengis.net/ont/geosparql#Geometry">geo:Geometry</a></li>
<li><a href="https://w3id.org/rec/core/Actuator">Actuator</a></li>
<li><a href="https://w3id.org/rec/core/Agent">Agent</a></li>
<li><a href="https://w3id.org/rec/core/Apartment">Apartment</a></li>
<li><a href="https://w3id.org/rec/core/Asset">Asset</a></li>
<li><a href="https://w3id.org/rec/core/AssetCollection">AssetCollection</a></li>
<li><a href="https://w3id.org/rec/core/Building">Building</a></li>
<li><a href="https://w3id.org/rec/core/BuildingComponent">BuildingComponent</a></li>
<li><a href="https://w3id.org/rec/core/Campus">Campus</a></li>
<li><a href="https://w3id.org/rec/core/Capability">Capability</a></li>
<li><a href="https://w3id.org/rec/core/Collection">Collection</a></li>
<li><a href="https://w3id.org/rec/core/DataSchema">DataSchema</a></li>
<li><a href="https://w3id.org/rec/core/Device">Device</a></li>
<li><a href="https://w3id.org/rec/core/Document">Document</a></li>
<li><a href="https://w3id.org/rec/core/Event">Event</a></li>
<li><a href="https://w3id.org/rec/core/GeoReferenceOrigo">GeoReferenceOrigo</a></li>
<li><a href="https://w3id.org/rec/core/HVACZone">HVACZone</a></li>
<li><a href="https://w3id.org/rec/core/Information">Information</a></li>
<li><a href="https://w3id.org/rec/core/Land">Land</a></li>
<li><a href="https://w3id.org/rec/core/Level">Level</a></li>
<li><a href="https://w3id.org/rec/core/LogicalController">LogicalController</a></li>
<li><a href="https://w3id.org/rec/core/LogicalDevice">LogicalDevice</a></li>
<li><a href="https://w3id.org/rec/core/LogicalGateway">LogicalGateway</a></li>
<li><a href="https://w3id.org/rec/core/LogicalServer">LogicalServer</a></li>
<li><a href="https://w3id.org/rec/core/MeasurementUnit">MeasurementUnit</a></li>
<li><a href="https://w3id.org/rec/core/Observation">Observation</a></li>
<li><a href="https://w3id.org/rec/core/OccupancyZone">OccupancyZone</a></li>
<li><a href="https://w3id.org/rec/core/Parameter">Parameter</a></li>
<li><a href="https://w3id.org/rec/core/Portfolio">Portfolio</a></li>
<li><a href="https://w3id.org/rec/core/Premises">Premises</a></li>
<li><a href="https://w3id.org/rec/core/PremisesType">PremisesType</a></li>
<li><a href="https://w3id.org/rec/core/PropertySet">PropertySet</a></li>
<li><a href="https://w3id.org/rec/core/QuantityKind">QuantityKind</a></li>
<li><a href="https://w3id.org/rec/core/RealEstate">RealEstate</a></li>
<li><a href="https://w3id.org/rec/core/RealEstateComponent">RealEstateComponent</a></li>
<li><a href="https://w3id.org/rec/core/Region">Region</a></li>
<li><a href="https://w3id.org/rec/core/Room">Room</a></li>
<li><a href="https://w3id.org/rec/core/Sensor">Sensor</a></li>
<li><a href="https://w3id.org/rec/core/SensorInterface">SensorInterface</a></li>
<li><a href="https://w3id.org/rec/core/Service">Service</a></li>
<li><a href="https://w3id.org/rec/core/Setpoint">Setpoint</a></li>
<li><a href="https://w3id.org/rec/core/Software">Software</a></li>
<li><a href="https://w3id.org/rec/core/Space">Space</a></li>
<li><a href="https://w3id.org/rec/core/SpaceCollection">SpaceCollection</a></li>
<li><a href="https://w3id.org/rec/core/State">State</a></li>
<li><a href="https://w3id.org/rec/core/SubBuilding">SubBuilding</a></li>
<li><a href="https://w3id.org/rec/core/Type">Type</a></li>
<li><a href="https://w3id.org/rec/core/Workspace">Workspace</a></li>
<li><a href="https://w3id.org/rec/core/Zone">Zone</a></li>
</ul>
<div class="entity class" id="Geometry">
<h3>
Geometry<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Geometry" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>http://www.opengis.net/ont/geosparql#Geometry</code></td>
</tr>
<tr>
<th>Is Defined By</th>
<td>
http://www.opengis.net/ont/geosparql#
</td>
</tr>
<tr>
<th>Description</th>
<td>
<p>The class represents the top-level geometry type. This class is equivalent to the UML class GM_Object defined in ISO 19107, and it is superclass of all geometry types.</p>
<p>GeoSPARQL is Copyright (c) 2012 Open Geospatial Consortium, Inc. All Rights Reserved. http://www.opengeospatial.org/ogc/document.</p>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="https://w3id.org/rec/core/GeoReferenceOrigo">GeoReferenceOrigo</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="http://www.opengis.net/ont/geosparql#asGML">geo:asGML</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="http://www.opengis.net/ont/geosparql#asWKT">geo:asWKT</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="http://www.opengis.net/ont/geosparql#hasSerialization">geo:hasSerialization</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="http://www.opengis.net/ont/geosparql#defaultGeometry">geo:defaultGeometry</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="http://www.opengis.net/ont/geosparql#hasGeometry">geo:hasGeometry</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Actuator">
<h3>
Actuator<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Actuator" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/Actuator</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>An actuator takes some control input and executes some real-world action based on this input. Examples include setting dampers/valves in heating/cooling systems at certain configurations, opening or closing a smart lock, turning on or off an electric radiator, etc. REC does not provide semantics for every type of actuator you might find in a building; rather we here provide classes and properties that allows users to define their own actuator models, based on the systems they have, adhering to REC.</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="https://w3id.org/rec/core/Capability">Capability</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="https://w3id.org/rec/core/controlledBy">controlledBy</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Capability">Capability</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/lastValue">lastValue</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2000/01/rdf-schema#Literal">rdfs:Literal</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/observedBy">observedBy</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Sensor">Sensor</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Agent">
<h3>
Agent<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Agent" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/Agent</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>The human, group, or machine that consumes or acts upon an object or data. This higher-level grouping allows properties that are shared among its subclasses (Person, Organization, Company, Department...) to be anchored in one joint place, on the Agent class.</p>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="https://w3id.org/rec/core/owns">owns</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="https://w3id.org/rec/core/ownedBy">ownedBy</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/operatedBy">operatedBy</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/constructedBy">constructedBy</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/architectedBy">architectedBy</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Apartment">
<h3>
Apartment<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Apartment" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/Apartment</code></td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="https://w3id.org/rec/core/SpaceCollection">SpaceCollection</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="https://w3id.org/rec/core/includes">includes</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Room">Room</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/includes">includes</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="https://w3id.org/rec/core/Room">Room</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Asset">
<h3>
Asset<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Asset" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/Asset</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Something which is placed inside of a building, but is not an integral part of that building's structure; e.g., furniture, equipment, systems, etc.</p>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="https://w3id.org/rec/core/physicalTagNumber">physicalTagNumber</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/includedIn">includedIn</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Collection">Collection</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/modelNumber">modelNumber</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/hasComment">hasComment</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/IPAddress">IPAddress</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/isPartOf">isPartOf</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Asset">Asset</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/hasCapability">hasCapability</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Capability">Capability</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/hasDocument">hasDocument</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Document">Document</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/MACAddress">MACAddress</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/locatedIn">locatedIn</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Space">Space</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/serves">serves</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2002/07/owl#Thing">owl:Thing</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/servedBy">servedBy</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2002/07/owl#Thing">owl:Thing</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/hosts">hosts</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/LogicalDevice">LogicalDevice</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/hasPart">hasPart</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Asset">Asset</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/serialNumber">serialNumber</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/locatedIn">locatedIn</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="https://w3id.org/rec/core/Space">Space</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="https://w3id.org/rec/core/hosts">hosts</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="https://w3id.org/rec/core/hostedBy">hostedBy</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Assetcollection">
<h3>
Asset collection<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Assetcollection" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/AssetCollection</code></td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="https://w3id.org/rec/core/Collection">Collection</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Building">
<h3>
Building<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Building" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/Building</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>A confined building structure.</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="https://w3id.org/rec/core/Space">Space</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/RealEstateComponent">RealEstateComponent</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="https://w3id.org/rec/core/hasGeoReferenceOrigo">hasGeoReferenceOrigo</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="https://w3id.org/rec/core/isPartOfBuilding">isPartOfBuilding</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/servesBuilding">servesBuilding</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/componentOfBuilding">componentOfBuilding</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Buildingcomponent">
<h3>
Building component<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Buildingcomponent" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/BuildingComponent</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>A part that constitutes a piece of a building's structural makeup. E.g., Facade, Wall, Slab, RoofInner, etc.</p>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="https://w3id.org/rec/core/hasPart">hasPart</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/BuildingComponent">BuildingComponent</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/isPartOf">isPartOf</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">max</span> 1 <a href="https://w3id.org/rec/core/BuildingComponent">BuildingComponent</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/componentOfBuilding">componentOfBuilding</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">max</span> 1 <a href="https://w3id.org/rec/core/Building">Building</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/isPartOf">isPartOf</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/BuildingComponent">BuildingComponent</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/includedIn">includedIn</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Collection">Collection</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/componentOfBuilding">componentOfBuilding</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Building">Building</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/hasDocument">hasDocument</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Document">Document</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="https://w3id.org/rec/core/Room">Room</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="https://w3id.org/rec/core/componentOfBuilding">componentOfBuilding</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/componentOf">componentOf</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/hasSubBuildingComponent">hasSubBuildingComponent</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/hasSuperBuildingComponent">hasSuperBuildingComponent</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/isPartOfBuilding">isPartOfBuilding</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="https://w3id.org/rec/core/isMountedInBuildingComponent">isMountedInBuildingComponent</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/servesBuildingComponent">servesBuildingComponent</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/hasSuperBuildingComponent">hasSuperBuildingComponent</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/hasBuildingComponent">hasBuildingComponent</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/hasSubBuildingComponent">hasSubBuildingComponent</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Campus">
<h3>
Campus<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Campus" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/Campus</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>A campus represents a collection of location entities. The constituent locations may have differing legal ownership and utilization purposes, but they are generally perceived as a coherent unit or sub-region within a city or other region. E.g., a university campus, a hospital campus, a corporate campus, etc.</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="https://w3id.org/rec/core/SpaceCollection">SpaceCollection</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="https://w3id.org/rec/core/operatedBy">operatedBy</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Agent">Agent</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/includes">includes</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="https://w3id.org/rec/core/Space">Space</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/includes">includes</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Space">Space</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Capability">
<h3>
Capability<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Capability" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/Capability</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>A Capability indicates the capacity of an entity, be it a Space, an Asset, or a Device, to produce or ingest data. This is roughly equivalent to the established Brick Schema and generic BMS term "point". Specific subclasses specialize this behaviour: Sensor entities harvest data from the real world, Actuator entities accept commands from a digital twin platform, and Parameter entities configure some capability or system.</p>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="https://w3id.org/rec/core/serves">serves</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2002/07/owl#Thing">owl:Thing</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/lastValueTime">lastValueTime</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2001/XMLSchema#dateTime">xsd:dateTime</a><sup class="sup-c" title="class">c</sup><br/>
<a href="http://qudt.org/schema/qudt/unit">qudt:unit</a> <span class="cardinality">min</span> 1 <a href="http://qudt.org/schema/qudt/Unit">qudt:Unit</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/lastValue">lastValue</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2000/01/rdf-schema#Literal">rdfs:Literal</a><sup class="sup-c" title="class">c</sup><br/>
<a href="http://qudt.org/schema/qudt/hasQuantityKind">qudt:hasQuantityKind</a> <span class="cardinality">exactly</span> 1 <a href="http://qudt.org/schema/qudt/QuantityKind">qudt:QuantityKind</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="https://w3id.org/rec/core/Actuator">Actuator</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/State">State</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/Sensor">Sensor</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/Parameter">Parameter</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="https://w3id.org/rec/core/lastValue">lastValue</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="https://w3id.org/rec/core/lastValueTime">lastValueTime</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="https://w3id.org/rec/core/controlledBy">controlledBy</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/isCapabilityOf">isCapabilityOf</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="https://w3id.org/rec/core/hasCapability">hasCapability</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/controlledBy">controlledBy</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Collection">
<h3>
Collection<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Collection" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/Collection</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>An administrative grouping of entities that are adressed and treated as a unit for some purpose. These entities may have some spatial arrangement (e.g., an apartment is typically contiguous) but that is not a requirement (see, e.g., a distributed campus consisting of spatially disjoint plots or buildings).</p>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="https://w3id.org/rec/core/hasDocument">hasDocument</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Document">Document</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/includedIn">includedIn</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Collection">Collection</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="https://w3id.org/rec/core/AssetCollection">AssetCollection</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/SpaceCollection">SpaceCollection</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/Portfolio">Portfolio</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="https://w3id.org/rec/core/hasMember">hasMember</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/includes">includes</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="https://w3id.org/rec/core/includedIn">includedIn</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/isMemberOf">isMemberOf</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Dataschema">
<h3>
Data schema<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Dataschema" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/DataSchema</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>A data schema for a service, a sensor, an actuator, etc. See the REC dataschemas module for concrete schema semantics.</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="https://w3id.org/rec/core/Information">Information</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="https://w3id.org/rec/core/schemaName">schemaName</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="https://w3id.org/rec/core/dataSchema">dataSchema</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Device">
<h3>
Device<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Device" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/Device</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>A thing made or adapted for a particular purpose, specifically a piece of electronic equipment. A Device can contain subdevices or be part of superdevices. It is subclassed into more specific device types, e.g., Sensor, Actuator, etc.</p>
<p>Deprecated in favour of core:Asset (the hardware), core:LogicalDevice (the software), and core:Capability (the measurement or actuation capability).</p>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="https://w3id.org/rec/core/hasSuperDevice">hasSuperDevice</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">max</span> 1<br/>
<a href="https://w3id.org/rec/core/isMountedInBuildingComponent">isMountedInBuildingComponent</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">max</span> 1<br/>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="https://w3id.org/rec/core/Sensor">Sensor</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="https://w3id.org/rec/core/servesDevice">servesDevice</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/isMountedInBuildingComponent">isMountedInBuildingComponent</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/hasSubDevice">hasSubDevice</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/servesBuildingComponent">servesBuildingComponent</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/hasSuperDevice">hasSuperDevice</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/deviceQuantityKind">deviceQuantityKind</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/deviceMeasurementUnit">deviceMeasurementUnit</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/servesBuilding">servesBuilding</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/isMountedIn">isMountedIn</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="https://w3id.org/rec/core/hasSubDevice">hasSubDevice</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/servesDevice">servesDevice</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/hasSuperDevice">hasSuperDevice</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/containsMountedDevice">containsMountedDevice</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Document">
<h3>
Document<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Document" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/Document</code></td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="https://w3id.org/rec/core/includedIn">includedIn</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="https://w3id.org/rec/core/Collection">Collection</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/rec/core/url">url</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="https://w3id.org/rec/core/documentTopic">documentTopic</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/url">url</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="https://w3id.org/rec/core/hasDocument">hasDocument</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Event">
<h3>
Event<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Event" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/Event</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>A spatiotemporally indexed entity with participants (e.g., something which occurs somewhere, and that has or takes some time). We do not on this top level define the particulars of how to model space or time; that is left to the implementing subclasses. Thus, in a sense, this is just a cognitive clustering for human consumers of the ontology, a root class from which all different types of events derive.</p>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="https://w3id.org/rec/core/Observation">Observation</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="https://w3id.org/rec/core/hasPointInTime">hasPointInTime</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="https://w3id.org/rec/core/hasDeletedTime">hasDeletedTime</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="https://w3id.org/rec/core/hasUpdatedTime">hasUpdatedTime</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="https://w3id.org/rec/core/hasDuration">hasDuration</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="https://w3id.org/rec/core/hasCreatedTime">hasCreatedTime</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="https://w3id.org/rec/core/producedBy">producedBy</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/hasReadTime">hasReadTime</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="https://w3id.org/rec/core/hasStopTime">hasStopTime</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="https://w3id.org/rec/core/eventMeasurementUnit">eventMeasurementUnit</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/hasStartTime">hasStartTime</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="https://w3id.org/rec/core/hasTime">hasTime</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="https://w3id.org/rec/core/eventQuantityKind">eventQuantityKind</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="https://w3id.org/rec/core/hasObservationTime">hasObservationTime</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="https://w3id.org/rec/core/producedEvent">producedEvent</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Geo-referenceorigo">
<h3>
Geo-reference origo<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Geo-referenceorigo" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/GeoReferenceOrigo</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>A fixed point for e.g. a building structure. Commonly refered to as "insertion point" in CAD-programs. Used as origo for LocalCoordinates.</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.opengis.net/ont/geosparql#Geometry">geo:Geometry</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="https://w3id.org/rec/core/hasGeoReferenceBearing">hasGeoReferenceBearing</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="https://w3id.org/rec/core/hasGeoReferenceOrigo">hasGeoReferenceOrigo</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="HVACzone">
<h3>
HVAC zone<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#HVACzone" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/HVACZone</code></td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="https://w3id.org/rec/core/Zone">Zone</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Information">
<h3>
Information<sup title="class" class="sup-c">c</sup>
<span style="float:right; margin-right:10px; font-size:smaller;"><a href="#Information" title="fragment link to here">#</a> <a href="#classes" title="Classes Index">Classes</a></span>
</h3>
<table>
<tr>
<th>URI</th>
<td><code>https://w3id.org/rec/core/Information</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>A generic catch-all superclass for all kinds of intangible REC types used in a broad variety of contexts, e.g., configurations, tags, data series, etc.</p>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="https://w3id.org/rec/core/PropertySet">PropertySet</a><sup class="sup-c" title="class">c</sup><br/>