-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.rdf
3448 lines (2333 loc) · 150 KB
/
core.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/core/"
xml:base="https://w3id.org/rec/core/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:geo="http://www.opengis.net/ont/geosparql#"
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:wgs="http://www.w3.org/2003/01/geo/wgs84_pos#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:core="https://w3id.org/rec/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:core1="http://www.linkedmodel.org/owl/schema/core#"
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/core/">
<owl:versionIRI rdf:resource="https://w3id.org/rec/core/3.3/"/>
<owl:imports rdf:resource="https://w3id.org/rec/metadata/3.3/"/>
<owl:imports rdf:resource="https://w3id.org/rec/units/3.3/"/>
<cc:license rdf:resource="https://opensource.org/licenses/MIT"/>
<dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Erik Wallin</dc:creator>
<dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Karl Hammar</dc:creator>
<dc:description xml:lang="en">The REC core module collects the top-level classes and properties that span over or are reused within multiple REC modules.
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.</dc:description>
<dc:publisher>RealEstateCore Consortium</dc:publisher>
<dc:title>RealEstateCore Core Module</dc:title>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2020-06-23</dcterms:modified>
<vann:preferredNamespacePrefix>core</vann:preferredNamespacePrefix>
<vann:preferredNamespaceUri>https://w3id.org/rec/core/3.3/</vann:preferredNamespaceUri>
<cpannotationschema:coversRequirements xml:lang="en">How many rooms are there in Building 1?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">What does electricity meter 3 measure? In what units?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">Where in Building 1 (i.e., in which rooms) are there devices mounted?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">Where is Building 1 located?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">Where is the real estate Ulvsnaes 1:7 located?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">Which buildings and land make up the real estate Ulvsnaes 1:7?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">Which parts of Building 1 (e.g., rooms, wings, etc) are covered by electricity meter 3?</cpannotationschema:coversRequirements>
<rdfs:seeAlso rdf:resource="https://realestatecore.io"/>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.3</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.opengis.net/ont/geosparql#gmlLiteral -->
<rdfs:Datatype rdf:about="http://www.opengis.net/ont/geosparql#gmlLiteral">
<rdfs:comment xml:lang="en">A GML serialization of a geometry object.
GeoSPARQL is Copyright (c) 2012 Open Geospatial Consortium, Inc. All Rights Reserved. http://www.opengeospatial.org/ogc/document.</rdfs:comment>
<rdfs:label xml:lang="en">GML Literal</rdfs:label>
</rdfs:Datatype>
<!-- http://www.opengis.net/ont/geosparql#wktLiteral -->
<rdfs:Datatype rdf:about="http://www.opengis.net/ont/geosparql#wktLiteral">
<rdfs:comment xml:lang="en">A Well-known Text serialization of a geometry object.
GeoSPARQL is Copyright (c) 2012 Open Geospatial Consortium, Inc. All Rights Reserved. http://www.opengeospatial.org/ogc/document.</rdfs:comment>
<rdfs:label xml:lang="en">Well-known Text Literal</rdfs:label>
</rdfs:Datatype>
<!-- http://www.w3.org/2001/XMLSchema#duration -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#duration"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.opengis.net/ont/geosparql#defaultGeometry -->
<owl:ObjectProperty rdf:about="http://www.opengis.net/ont/geosparql#defaultGeometry">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasGeometry"/>
<rdfs:range rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
<rdfs:comment xml:lang="en">The default geometry to be used in spatial calculations. It is Usually the most detailed geometry.
GeoSPARQL is Copyright (c) 2012 Open Geospatial Consortium, Inc. All Rights Reserved. http://www.opengeospatial.org/ogc/document.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:label xml:lang="en">default geometry</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.opengis.net/ont/geosparql#hasGeometry -->
<owl:ObjectProperty rdf:about="http://www.opengis.net/ont/geosparql#hasGeometry">
<rdfs:range rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
<rdfs:comment xml:lang="en">A spatial representation for a given feature.
GeoSPARQL is Copyright (c) 2012 Open Geospatial Consortium, Inc. All Rights Reserved. http://www.opengeospatial.org/ogc/document.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:label xml:lang="en">has geometry</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/architectedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/architectedBy">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Space"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Agent"/>
<rdfs:label xml:lang="en">architected by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/categorizationProperties -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/categorizationProperties">
<rdfs:range rdf:resource="https://w3id.org/rec/core/PropertySet"/>
<rdfs:label xml:lang="en">categorization properties</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/componentOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/componentOf">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/hasBuildingComponent"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/BuildingComponent"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Space"/>
<rdfs:comment xml:lang="en">Links a Building Component to a Space, that the Building Component is either contained in, adjacent to or intersecting with.</rdfs:comment>
<rdfs:label xml:lang="en">component of</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/componentOfBuilding -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/componentOfBuilding">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/componentOf"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/BuildingComponent"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Building"/>
<rdfs:comment xml:lang="en">Indicates which Building a certain Building Component is part of.</rdfs:comment>
<rdfs:label xml:lang="en">component of building</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/constructedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/constructedBy">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Space"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Agent"/>
<rdfs:label xml:lang="en">constructed by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/containsMountedDevice -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/containsMountedDevice">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasPart"/>
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/isMountedIn"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:comment xml:lang="en">Parthood traversal property linking to mounted Devices.</rdfs:comment>
<rdfs:label xml:lang="en">contains mounted device</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/controlledBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/controlledBy">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Capability"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Capability"/>
<rdfs:label xml:lang="en">controlled by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/dataSchema -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/dataSchema">
<rdfs:range rdf:resource="https://w3id.org/rec/core/DataSchema"/>
<rdfs:label xml:lang="en">data schema</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/deviceMeasurementUnit -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/deviceMeasurementUnit">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasMeasurementUnit"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/MeasurementUnit"/>
<rdfs:comment xml:lang="en">The measurement unit used by some Device.
Deprecated in favour of qudt:unit</rdfs:comment>
<rdfs:label xml:lang="en">device measurement unit</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/deviceQuantityKind -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/deviceQuantityKind">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasQuantityKind"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/QuantityKind"/>
<rdfs:comment xml:lang="en">The Quantity Kind that a device measures or affects.
Deprecated in favour of qudt:hasQuantityKind</rdfs:comment>
<rdfs:label xml:lang="en">device quantity kind</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/documentTopic -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/documentTopic">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/hasDocument"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Document"/>
<rdfs:label xml:lang="en">document topic</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/eventMeasurementUnit -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/eventMeasurementUnit">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasMeasurementUnit"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Event"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/MeasurementUnit"/>
<rdfs:comment xml:lang="en">A unit used to measure some aspect of some Event.
Deprecated in favour of qudt:unit</rdfs:comment>
<rdfs:label xml:lang="en">event measurement unit</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/eventQuantityKind -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/eventQuantityKind">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasQuantityKind"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Event"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/QuantityKind"/>
<rdfs:comment xml:lang="en">The Quantity Kind that an event measures or affects.
Deprecated in favour of qudt:hasQuantityKind</rdfs:comment>
<rdfs:label xml:lang="en">event quantity kind</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/generatedObservation -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/generatedObservation">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/producedEvent"/>
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/observationGeneratedBy"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Sensor"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Observation"/>
<rdfs:label xml:lang="en">generated observation</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasBuildingComponent -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasBuildingComponent">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/isPartOfBuilding"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Space"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/BuildingComponent"/>
<rdfs:comment xml:lang="en">Links a Space to a BuildingComponent that is either contained in, adjacent to or intersecting with the Space.</rdfs:comment>
<rdfs:label xml:lang="en">has building component</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasCapability -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasCapability">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/isCapabilityOf"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Capability"/>
<rdfs:label xml:lang="en">has capability</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasDocument -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasDocument">
<rdfs:range rdf:resource="https://w3id.org/rec/core/Document"/>
<rdfs:label xml:lang="en">has document</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasGeoReferenceOrigo -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasGeoReferenceOrigo">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasGeometry"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Building"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/GeoReferenceOrigo"/>
<rdfs:comment xml:lang="en">Associates a building with a point in some coordinate reference system which can be used to resolve local (building-specific) coordinates against this outer coordinate reference system.</rdfs:comment>
<rdfs:label xml:lang="en">has geo-reference origo</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasMeasurementUnit -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasMeasurementUnit">
<rdfs:range rdf:resource="https://w3id.org/rec/core/MeasurementUnit"/>
<rdfs:comment xml:lang="en">The unit that something (sensor observations, device capabilities, physical measurements, etc) is measured by. This is given as an object property with a corresponding class (rather than a simple datatype property) since one unit may have many serialized representations and may be used for many different types of measurements.
Deprecated in favour of qudt:unit</rdfs:comment>
<rdfs:label xml:lang="en">has measurement unit</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasMember -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasMember">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/isMemberOf"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Collection"/>
<rdfs:comment xml:lang="en">has member</rdfs:comment>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasPart -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasPart">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/isPartOf"/>
<rdfs:comment xml:lang="en">Points to sub-entities that share the same base type (i.e., Spaces only have Spaces as parts, Assets only have Assets as parts, etc.).</rdfs:comment>
<rdfs:label xml:lang="en">has part</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasQuantityKind -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasQuantityKind">
<rdfs:range rdf:resource="https://w3id.org/rec/core/QuantityKind"/>
<rdfs:comment xml:lang="en">Links entities that are measurable to the Quantity Kind that they measure, e.g., Temperature, Pressure, etc.
Deprecated in favour of qudt:hasQuantityKind</rdfs:comment>
<rdfs:label xml:lang="en">quantity kind</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasRealEstateComponent -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasRealEstateComponent">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasPart"/>
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/isPartOfRealEstate"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/RealEstate"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/RealEstateComponent"/>
<rdfs:comment xml:lang="en">Parthood traversal property linking a piece of RealEstate to its constituent components (i.e., Buildings and Land).</rdfs:comment>
<rdfs:label xml:lang="en">has real estate component</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasSubBuildingComponent -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasSubBuildingComponent">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/hasSuperBuildingComponent"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/BuildingComponent"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/BuildingComponent"/>
<rdfs:comment xml:lang="en">Parthood traversal property linking BuildingComponents to their constituent sub-components.</rdfs:comment>
<rdfs:label xml:lang="en">has sub-BuildingComponent</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasSubDevice -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasSubDevice">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/hasSuperDevice"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:comment xml:lang="en">Parthood traversal property linking a Device to any sub-Devices that it contains.</rdfs:comment>
<rdfs:label xml:lang="en">has sub-device</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasSuperBuildingComponent -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasSuperBuildingComponent">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/BuildingComponent"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/BuildingComponent"/>
<rdfs:comment xml:lang="en">Property to model nesting of building components, e.g., rooms within apartments or walls within stairwells, etc.</rdfs:comment>
<rdfs:label xml:lang="en">has super-BuildingComponent</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasSuperDevice -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasSuperDevice">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:comment xml:lang="en">A property that allows for nesting of devices within devices.</rdfs:comment>
<rdfs:label xml:lang="en">has super-Device</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hasType -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hasType">
<rdfs:range rdf:resource="https://w3id.org/rec/core/Type"/>
<rdfs:comment xml:lang="en">A generic typing relation, holding between individuals and their types (which are also expressed as individuals). This construct allows implementors to add their own types without modifying the ontology and its classes. See the Explicit Typing design pattern in the MODL design library for further discussion.</rdfs:comment>
<rdfs:label xml:lang="en">has type</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hostedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hostedBy">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/hosts"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/LogicalDevice"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Asset"/>
<rdfs:comment xml:lang="en">Indicates the physical hardware asset that a given logical device is hosted and executed on.</rdfs:comment>
<rdfs:label xml:lang="en">hosted by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/hosts -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/hosts">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Asset"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/LogicalDevice"/>
<rdfs:comment xml:lang="en">Indicates that a given Asset hosts a logical device; e.g., a Raspberry Pi hosts a Home Assistant installation, or an IoT-connect smart camera unit hosts an IoT Edge runtime.</rdfs:comment>
<rdfs:label xml:lang="en">hosts</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/includedIn -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/includedIn">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/includes"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Collection"/>
<rdfs:comment xml:lang="en">Indicates that an entity is included in some Collection, e.g., a Building is included in a RealEstate, or a Room is included in an Apartment.</rdfs:comment>
<rdfs:label xml:lang="en">included in</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/includes -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/includes">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Collection"/>
<rdfs:comment xml:lang="en">Member entities of a collection; e.g., a Campus includes some Space, an Apartment includes some Room, etc.</rdfs:comment>
<rdfs:label xml:lang="en">includes</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/isCapabilityOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/isCapabilityOf">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Capability"/>
<rdfs:comment xml:lang="en">The entity (Asset, Space, LogicalDevice, etc.) that has this Capability.</rdfs:comment>
<rdfs:label xml:lang="en">is capabilty of</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/isLocationOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/isLocationOf">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/locatedIn"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Space"/>
<rdfs:label xml:lang="en">is location of</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/isMemberOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/isMemberOf">
<rdfs:range rdf:resource="https://w3id.org/rec/core/Collection"/>
<rdfs:label xml:lang="en">is member of</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/isMountedIn -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/isMountedIn">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/isPartOf"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:comment xml:lang="en">Property describing where a Device is mounted.</rdfs:comment>
<rdfs:label xml:lang="en">is mounted in</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/isMountedInBuildingComponent -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/isMountedInBuildingComponent">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/isMountedIn"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/BuildingComponent"/>
<rdfs:comment xml:lang="en">Property describing in which Building Component (most typically a Room) that a Device is mounted.</rdfs:comment>
<rdfs:label xml:lang="en">is mounted in Building Component</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/isPartOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/isPartOf">
<rdfs:comment xml:lang="en">Indicates a super-entity of the same base type (i.e., Spaces only have Spaces as parents, Organizations only have Organizations, etc).</rdfs:comment>
<rdfs:label xml:lang="en">is part of</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/isPartOfBuilding -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/isPartOfBuilding">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/BuildingComponent"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Building"/>
<rdfs:comment xml:lang="en">Indicates which Building a certain Building Component is part of.
Deprecated in favour of core:componentOfBuilding</rdfs:comment>
<rdfs:label xml:lang="en">is part of building</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/isPartOfRealEstate -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/isPartOfRealEstate">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/isPartOf"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/RealEstateComponent"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/RealEstate"/>
<rdfs:comment xml:lang="en">Indicates that a Building or a piece of Land belongs to / is part of a given Real Estate.</rdfs:comment>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/locatedIn -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/locatedIn">
<rdfs:range rdf:resource="https://w3id.org/rec/core/Space"/>
<rdfs:label xml:lang="en">located in</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/observationGeneratedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/observationGeneratedBy">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/producedBy"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Observation"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Sensor"/>
<rdfs:label xml:lang="en">observation generated by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/observedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/observedBy">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/observes"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Sensor"/>
<rdfs:comment xml:lang="en">Generic property indicating which sensors that are configured or designed to observe some feature, system, phenomenon, etc.</rdfs:comment>
<rdfs:label xml:lang="en">observed by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/observes -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/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. This allows systems to perform graph propagation of sensor values, e.g., letting a temperature sensor that observes a given room set the temperature for that room.</rdfs:comment>
<rdfs:label xml:lang="en">observes</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/operatedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/operatedBy">
<rdfs:range rdf:resource="https://w3id.org/rec/core/Agent"/>
<rdfs:label xml:lang="en">operated by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/ownedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/ownedBy">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/owns"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Agent"/>
<rdfs:comment xml:lang="en">Property that defines the legal owner(s) of a given entity.</rdfs:comment>
<rdfs:label xml:lang="en">owned by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/owns -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/owns">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Agent"/>
<rdfs:comment xml:lang="en">Indicates that an agent is the legal owner of a given entity, e.g., a Company owns some Real Estate.</rdfs:comment>
<rdfs:label xml:lang="en">owns</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/premisesType -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/premisesType">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasType"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Premises"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/PremisesType"/>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/producedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/producedBy">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/producedEvent"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Event"/>
<rdfs:comment xml:lang="en">The entity responsible for generating or producing the event.</rdfs:comment>
<rdfs:label xml:lang="en">produced by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/producedEvent -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/producedEvent">
<rdfs:range rdf:resource="https://w3id.org/rec/core/Event"/>
<rdfs:comment xml:lang="en">Event(s) generated or produced by an entity.</rdfs:comment>
<rdfs:label xml:lang="en">associated with event</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/qkMeasurementUnit -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/qkMeasurementUnit">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasMeasurementUnit"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/QuantityKind"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/MeasurementUnit"/>
<rdfs:comment xml:lang="en">A unit used to specificy some Quantity Kind, such as temperature, pressure, etc.
Deprecated in favour of qudt:unit</rdfs:comment>
<rdfs:label xml:lang="en">quantity kind measurement unit</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/sensorInterface -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/sensorInterface">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Sensor"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/SensorInterface"/>
<rdfs:label xml:lang="en">sensor interface</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/servedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/servedBy">
<owl:inverseOf rdf:resource="https://w3id.org/rec/core/serves"/>
<rdfs:comment xml:lang="en">Indicates that a Space or Asset is served by some Sensor/Actuator or other Asset. For example: an entrance room might be served by (e.g., covered by) some camera equipment, or a conference room served by a CO2 sensor. Note that Assets can also service one another, e.g., an air-treatment Asset might serve an air diffuser Asset.</rdfs:comment>
<rdfs:label xml:lang="en">served by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/serves -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/serves">
<rdfs:comment xml:lang="en">The coverage or impact area of a given Asset or Sensor/Actuator. For example: an air-treatment unit might serve several Rooms or a full Building. Note that Assets can also service one another, e.g., an air-treatment Asset might serve an air diffuser Asset.</rdfs:comment>
<rdfs:label xml:lang="en">serves</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/servesBuilding -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/servesBuilding">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/serves"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Building"/>
<rdfs:comment xml:lang="en">Indicates how a Device serves an entire Building.
Deprecated in favour of core:servesSpace</rdfs:comment>
<rdfs:label xml:lang="en">serves building</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/servesBuildingComponent -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/servesBuildingComponent">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/serves"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/BuildingComponent"/>
<rdfs:comment xml:lang="en">Indicates how a Device serves a particular Building Component (e.g., a Room).
Deprecated in favour of core:servesSpace</rdfs:comment>
<rdfs:label xml:lang="en">serves building component</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/core/servesDevice -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/core/servesDevice">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/serves"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:range rdf:resource="https://w3id.org/rec/core/Device"/>
<rdfs:comment xml:lang="en">Indicates how a Device serves another Device.
Deprecated in favour of core:servesAsset</rdfs:comment>
<rdfs:label xml:lang="en">serves device</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.opengis.net/ont/geosparql#asGML -->
<owl:DatatypeProperty rdf:about="http://www.opengis.net/ont/geosparql#asGML">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasSerialization"/>
<rdfs:domain rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
<rdfs:range rdf:resource="http://www.opengis.net/ont/geosparql#gmlLiteral"/>
<rdfs:comment xml:lang="en">The GML serialization of a geometry.
GeoSPARQL is Copyright (c) 2012 Open Geospatial Consortium, Inc. All Rights Reserved. http://www.opengeospatial.org/ogc/document.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:label>asGML</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.opengis.net/ont/geosparql#asWKT -->
<owl:DatatypeProperty rdf:about="http://www.opengis.net/ont/geosparql#asWKT">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasSerialization"/>
<rdfs:domain rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
<rdfs:range rdf:resource="http://www.opengis.net/ont/geosparql#wktLiteral"/>
<rdfs:comment xml:lang="en">The WKT serialization of a geometry.
GeoSPARQL is Copyright (c) 2012 Open Geospatial Consortium, Inc. All Rights Reserved. http://www.opengeospatial.org/ogc/document.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:label>asWKT</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.opengis.net/ont/geosparql#hasSerialization -->
<owl:DatatypeProperty rdf:about="http://www.opengis.net/ont/geosparql#hasSerialization">
<rdfs:domain rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment xml:lang="en">Connects a geometry object with its text-based serialization.
GeoSPARQL is Copyright (c) 2012 Open Geospatial Consortium, Inc. All Rights Reserved. http://www.opengeospatial.org/ogc/document.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
<rdfs:label xml:lang="en">has serialization</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/IPAddress -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/IPAddress">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:label xml:lang="en">IP address</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/MACAddress -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/MACAddress">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:label xml:lang="en">MAC address</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/comment -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/comment">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:label xml:lang="en">comment</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/hasAliasID -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/hasAliasID">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasAuxiliaryData"/>
<rdfs:comment xml:lang="en">Was originally intented to map an Id in an external system to an instance (e.g. an UUID).
After discussion in REC technical committee, an approach based on owl:sameAs and/or rdfs:seeAlso (depending on the needed semantics) is recommended instead. This property will therefore be removed in future versions.</rdfs:comment>
<rdfs:label xml:lang="en">has alias ID</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/hasAuxiliaryData -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/hasAuxiliaryData">
<rdfs:comment xml:lang="en">This parent property groups a number of sub-properties that provide additional richness to building or device model and that are often used in practice in various systems, but which have not yet (REC 3.0) been fully modelled their respecive REC modules.</rdfs:comment>
<rdfs:label xml:lang="en">has auxiliary data</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/hasCity -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/hasCity">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasLocationAttribute"/>
<rdfs:comment xml:lang="en">Indicates a city that a certain Geometry is part of.</rdfs:comment>
<rdfs:label xml:lang="en">has city</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/hasComment -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/hasComment">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasAuxiliaryData"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">Extra information about an object that is of a more exceptional character. E.g. "This Device needs to be replaced no later than 2020", "Note: Black color is used to mark warmwater inlet".
Deprecated in favour of core:comment.</rdfs:comment>
<rdfs:label xml:lang="en">has comment</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/hasCountry -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/hasCountry">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasLocationAttribute"/>
<rdfs:comment xml:lang="en">Indicates a country that a certain Geometry is part of.</rdfs:comment>
<rdfs:label xml:lang="en">has country</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/hasCreatedTime -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/hasCreatedTime">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasTime"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Event"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:label xml:lang="en">has created time</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/hasDeletedTime -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/hasDeletedTime">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasTime"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Event"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:label xml:lang="en">has deleted time</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/hasDuration -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/hasDuration">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasTime"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Event"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">Measured in ms (milliseconds). Duration is defined as the length of time that something lasts.</rdfs:comment>
<rdfs:label xml:lang="en">has duration</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/hasGeoReferenceBearing -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/hasGeoReferenceBearing">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasSerialization"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/core/GeoReferenceOrigo"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">The angle between one of the axis of a local coordinate system within e.g. a building and a north-south meridian. The angle is measured between the meridian and the local coordinate axis and counted as positive to the east side of the meridan (neagtive to the west side).
Bearings are never greater than 90°.
Bearings are based on true north.</rdfs:comment>
<rdfs:label xml:lang="en">has geo reference bearing</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/hasGeonamesId -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/hasGeonamesId">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasLocationAttribute"/>
<rdfs:comment xml:lang="en">Linking to https://www.geonames.org
E.g. for Stockholm (Sweden):
LocationUUID#1 hasGenonames http://www.geonames.org/2673730/stockholm.html</rdfs:comment>
<rdfs:label xml:lang="en">has geonames ID</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/hasLittera -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/hasLittera">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/core/hasAuxiliaryData"/>
<rdfs:comment xml:lang="en">Designation or enumeration commenly found on blueprints for an object. E.g. text designating a Device or a Room.</rdfs:comment>
<rdfs:label xml:lang="en">has littera</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/core/hasLocationAttribute -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/core/hasLocationAttribute">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasSerialization"/>
<rdfs:comment xml:lang="en">This property is a cognitive clustering for human consumption, grouping sub-properties that assign labels (e.g., place names, addresses, etc.) to Geometry entities. This branch of the property hierarchy may need some further development and cleaning up in future versions.</rdfs:comment>