-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathrec.ttl
2085 lines (2083 loc) · 50.7 KB
/
rec.ttl
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
# baseURI: https://w3id.org/rec
# imports: http://datashapes.org/dash
# imports: https://brickschema.org/schema/1.3/Brick
# imports: https://w3id.org/rec/brickpatches
# prefix: rec
@prefix : <https://w3id.org/rec#> .
@prefix brick: <https://brickschema.org/schema/Brick#> .
@prefix brickpatches: <https://w3id.org/rec/brickpatches#> .
@prefix dash: <http://datashapes.org/dash#> .
@prefix geojson: <https://geojson.org/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rec: <https://w3id.org/rec#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
geojson:Polygon
a rdfs:Datatype ;
rdfs:comment "A GeoJSON Polygon coordinate listing representing the geometrical representation of the space. Coordinates may be expressed in two or three dimensions. Ex: [[30.0, 10.0, 0.0], [40.0, 40.0, 2.0], [20.0, 40.0, 2.0], [10.0, 20.0, 2.0], [30.0, 10.0, 0.0]]." ;
rdfs:label "Polygon" ;
owl:onDatatype xsd:string ;
.
<https://w3id.org/rec>
a owl:Ontology ;
rdfs:label "RealEstateCore" ;
owl:imports <http://datashapes.org/dash> ;
owl:imports <https://brickschema.org/schema/1.3/Brick> ;
owl:imports <https://w3id.org/rec/brickpatches> ;
owl:versionInfo "4.0" ;
.
rec:AccessControlZone
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Access control zone" ;
rdfs:subClassOf rec:Zone ;
.
rec:AccessPanel
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Access panel" ;
rdfs:subClassOf rec:BarrierAsset ;
.
rec:ActuationEvent
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Actuation event" ;
rdfs:subClassOf rec:PointEvent ;
sh:property [
a sh:PropertyShape ;
sh:path rec:targetPoint ;
sh:class brick:Point ;
sh:description "The brick:Point(s) (e.g., brick:Commands, brick:Setpoints, or brick:Parameters) that the actuation will target/execute." ;
sh:minCount 1 ;
sh:name "target point" ;
sh:nodeKind sh:IRI ;
] ;
.
rec:AdmittingRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Admitting room" ;
rdfs:subClassOf rec:HealthcareRoom ;
.
rec:Agent
a rdfs:Class ;
a sh:NodeShape ;
rdfs:comment "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, ....) to be anchored in one joint place, on the Agent class." ;
rdfs:label "Agent" ;
rdfs:subClassOf rdfs:Resource ;
sh:property [
a sh:PropertyShape ;
sh:path rec:isMemberOf ;
sh:class rec:Organization ;
sh:description "Indicates membership in an organization. Note that componency (e.g., departments of a corporation) are expressed using the more generic Organization.isPartOf property." ;
sh:name "is member of" ;
sh:nodeKind sh:IRI ;
] ;
.
rec:AlarmObject
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Alarm object" ;
rdfs:subClassOf rec:ServiceObject ;
.
rec:Apartment
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Apartment" ;
rdfs:subClassOf rec:Collection ;
sh:property [
a sh:PropertyShape ;
sh:path rec:includes ;
sh:class rec:Room ;
sh:minCount 1 ;
sh:name "includes" ;
sh:nodeKind sh:IRI ;
] ;
.
rec:ArchitecturalAsset
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Architectural asset" ;
rdfs:subClassOf rec:Asset ;
.
rec:Architecture
a rdfs:Class ;
a sh:NodeShape ;
rdfs:comment "A designed/landscaped (or potentially designed/landscaped) part of the physical world that has a 3D spatial extent. E.g., a building site, a building, levels within the building, rooms, etc." ;
rdfs:label "Architecture" ;
rdfs:subClassOf rec:Space ;
sh:property [
a sh:PropertyShape ;
sh:path rec:address ;
sh:class rec:PostalAddress ;
sh:description "Physical address of the architecture (site, building, sub-building, entrance room, etc.) in question." ;
sh:name "address" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:adjacentElement ;
sh:class rec:BuildingElement ;
sh:name "adjacent element" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:architectedBy ;
sh:class rec:Agent ;
sh:name "architected by" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:area ;
sh:class rec:ArchitectureArea ;
sh:maxCount 1 ;
sh:name "area" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:capacity ;
sh:class rec:ArchitectureCapacity ;
sh:maxCount 1 ;
sh:name "capacity" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:constructedBy ;
sh:class rec:Agent ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:containsElement ;
sh:class rec:BuildingElement ;
sh:description "Links an Architecture to BuildingElement that is contained in the Space." ;
sh:name "contains element" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:documentation ;
sh:class rec:Document ;
sh:name "documentation" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:hasPart ;
sh:class rec:Architecture ;
sh:name "has part" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:hasPoint ;
sh:class brick:Point ;
sh:name "has point" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:intersectingElement ;
sh:class rec:BuildingElement ;
sh:name "intersecting element" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:isFedBy ;
sh:name "is fed by" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:operatedBy ;
sh:class rec:Agent ;
sh:name "operated by" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:ownedBy ;
sh:class rec:Agent ;
sh:name "owned by" ;
sh:nodeKind sh:IRI ;
] ;
.
rec:ArchitectureArea
a <dtmi:dtdl:class:Component> ;
a rdfs:Class ;
a sh:NodeShape ;
rdfs:comment "Describes business-relevant area measurements typically associated with architected spaces. As the exact requirements on these measurements will vary from case to case or jurisdiction to jurisdiction, subclassing and specializing this definition is encouraged." ;
rdfs:label "Architecture area" ;
rdfs:subClassOf rec:Information ;
sh:property [
a sh:PropertyShape ;
sh:path rec:grossArea ;
sh:datatype xsd:float ;
sh:maxCount 1 ;
sh:name "gross area" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:netArea ;
sh:datatype xsd:float ;
sh:maxCount 1 ;
sh:name "net area" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:rentableArea ;
sh:datatype xsd:float ;
sh:maxCount 1 ;
sh:name "rentable area" ;
] ;
.
rec:ArchitectureCapacity
a <dtmi:dtdl:class:Component> ;
a rdfs:Class ;
a sh:NodeShape ;
rdfs:comment "Describes business-relevant capacity measurements typically associated with architected spaces. As the exact requirements on these measurements will vary from case to case or jurisdiction to jurisdiction, subclassing and specializing this definition is encouraged." ;
rdfs:label "Architecture capacity" ;
rdfs:subClassOf rec:Information ;
sh:property [
a sh:PropertyShape ;
sh:path rec:maxOccupancy ;
sh:datatype xsd:integer ;
sh:description "E.g., per Building Code" ;
sh:maxCount 1 ;
sh:name "maximum occupancy" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:seatingCapacity ;
sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:name "seating capacity" ;
] ;
.
rec:Asset
a rdfs:Class ;
a sh:NodeShape ;
rdfs:comment "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." ;
rdfs:label "Asset" ;
rdfs:subClassOf rdfs:Resource ;
sh:property [
a sh:PropertyShape ;
sh:path rec:IPAddress ;
sh:datatype xsd:string ;
sh:name "IP address" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:MACAddress ;
sh:datatype xsd:string ;
sh:name "MAC address" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:assetTag ;
sh:datatype xsd:string ;
sh:name "asset tag" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:commissionedBy ;
sh:class rec:Agent ;
sh:name "commissioned by" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:commissioningDate ;
sh:datatype xsd:date ;
sh:maxCount 1 ;
sh:name "commissioning date" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:documentation ;
sh:class rec:Document ;
sh:name "documentation" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:geometry ;
sh:datatype geojson:Polygon ;
sh:description "A GeoJSON Polygon coordinate listing representing the geometrical representation of the asset. Coordinates may be expressed in two or three dimensions. Ex: [[30.0, 10.0, 0.0], [40.0, 40.0, 2.0], [20.0, 40.0, 2.0], [10.0, 20.0, 2.0], [30.0, 10.0, 0.0]]." ;
sh:maxCount 1 ;
sh:name "geometry" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:hasPart ;
sh:class rec:Asset ;
sh:name "has part" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:hasPoint ;
sh:class brick:Point ;
sh:name "has point" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:initialCost ;
sh:maxCount 1 ;
sh:name "initial cost" ;
sh:nodeKind sh:Literal ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:installationDate ;
sh:datatype xsd:date ;
sh:maxCount 1 ;
sh:name "installation date" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:installedBy ;
sh:class rec:Agent ;
sh:name "installed by" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:isPartOf ;
sh:class rec:Asset ;
sh:name "is part of" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:locatedIn ;
sh:class rec:Space ;
sh:minCount 1 ;
sh:name "located in" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:maintenanceInterval ;
sh:datatype xsd:duration ;
sh:name "maintenance interval" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:manufacturedBy ;
sh:class rec:Agent ;
sh:name "manufactured by" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:modelNumber ;
sh:datatype xsd:string ;
sh:name "model number" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:mountedOn ;
sh:class rec:BuildingElement ;
sh:description "An asset may be mounted on some part of the building construction (e.g., a blind on a facade, a camera on a wall, etc)." ;
sh:maxCount 1 ;
sh:name "mounted on" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:serialNumber ;
sh:datatype xsd:string ;
sh:name "serial number" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:servicedBy ;
sh:class rec:Agent ;
sh:name "serviced by" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:turnoverDate ;
sh:datatype xsd:date ;
sh:maxCount 1 ;
sh:name "turnover date" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:weight ;
sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:name "weight" ;
] ;
.
rec:Atrium
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Atrium" ;
rdfs:subClassOf rec:Room ;
.
rec:Auditorium
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Auditorium" ;
rdfs:subClassOf rec:Room ;
.
rec:BackOffice
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Back office" ;
rdfs:subClassOf rec:Room ;
.
rec:Balcony
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Balcony" ;
rdfs:subClassOf rec:BuildingElement ;
.
rec:BarRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Bar room" ;
rdfs:subClassOf rec:FoodHandlingRoom ;
.
rec:BarrierAsset
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Barrier asset" ;
rdfs:subClassOf rec:ArchitecturalAsset ;
.
rec:BasementLevel
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Basement level" ;
rdfs:subClassOf rec:Level ;
.
rec:Bathroom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Bathroom" ;
rdfs:subClassOf rec:Room ;
.
rec:Bed
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Bed" ;
rdfs:subClassOf rec:Furniture ;
.
rec:Bedroom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Bedroom" ;
rdfs:subClassOf rec:Room ;
.
rec:BicycleGarage
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Bicycle garage" ;
rdfs:subClassOf rec:Garage ;
.
rec:Bookcase
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Bookcase" ;
rdfs:subClassOf rec:Furniture ;
.
rec:Building
a rdfs:Class ;
a sh:NodeShape ;
rdfs:comment "A confined building structure." ;
rdfs:label "Building" ;
rdfs:subClassOf rec:Architecture ;
.
rec:BuildingElement
a rdfs:Class ;
a sh:NodeShape ;
rdfs:comment "A part that constitutes a piece of a building's structural makeup. E.g., Facade, Wall, Slab, Roof, etc." ;
rdfs:label "Building element" ;
rdfs:subClassOf rdfs:Resource ;
sh:property [
a sh:PropertyShape ;
sh:path rec:documentation ;
sh:class rec:Document ;
sh:name "documentation" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:hasPart ;
sh:class rec:BuildingElement ;
sh:name "has part" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:isPartOf ;
sh:class rec:BuildingElement ;
sh:maxCount 1 ;
sh:name "is part of" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:locatedIn ;
sh:class rec:Architecture ;
sh:description "Indicates the architected space (site, building, level, room...) in which this building element is placed." ;
sh:maxCount 1 ;
sh:name "located in" ;
sh:nodeKind sh:IRI ;
] ;
.
rec:BulletinBoard
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Bulletin board" ;
rdfs:subClassOf rec:Furniture ;
.
rec:Cabinet
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Cabinet" ;
rdfs:subClassOf rec:UtilitiesRoom ;
.
rec:CableRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Cable room" ;
rdfs:subClassOf rec:UtilitiesRoom ;
.
rec:CafeteriaRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Cafeteria room" ;
rdfs:subClassOf rec:FoodHandlingRoom ;
.
rec:Campus
a rdfs:Class ;
a sh:NodeShape ;
rdfs:comment "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." ;
rdfs:label "Campus" ;
rdfs:subClassOf rec:Collection ;
sh:property [
a sh:PropertyShape ;
sh:path rec:includes ;
sh:class rec:Architecture ;
sh:minCount 1 ;
sh:name "includes" ;
sh:nodeKind sh:IRI ;
] ;
.
rec:Cart
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Cart" ;
rdfs:subClassOf rec:Furniture ;
.
rec:Chair
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Chair" ;
rdfs:subClassOf rec:Furniture ;
.
rec:Cinema
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Cinema" ;
rdfs:subClassOf rec:Room ;
.
rec:Classroom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Classroom" ;
rdfs:subClassOf rec:EducationalRoom ;
.
rec:CleaningRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Cleaning room" ;
rdfs:subClassOf rec:Room ;
.
rec:ClimateControlRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Climate-control room" ;
rdfs:subClassOf rec:UtilitiesRoom ;
.
rec:CloakRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Cloak room" ;
rdfs:subClassOf rec:Room ;
.
rec:CoatRack
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Coat rack" ;
rdfs:subClassOf rec:Furniture ;
.
rec:CoffeeTable
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Coffee table" ;
rdfs:subClassOf rec:Table ;
.
rec:Collection
a rdfs:Class ;
a sh:NodeShape ;
rdfs:comment "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). Inclusion in a Collection is determined by the 'includes' field on a specific subclass." ;
rdfs:label "Collection" ;
rdfs:subClassOf rdfs:Resource ;
sh:property [
a sh:PropertyShape ;
sh:path rec:documentation ;
sh:class rec:Document ;
sh:name "documentation" ;
sh:nodeKind sh:IRI ;
] ;
.
rec:Company
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Company" ;
rdfs:subClassOf rec:Organization ;
.
rec:ComputerCart
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Computer cart" ;
rdfs:subClassOf rec:Cart ;
.
rec:ConferenceRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Conference room" ;
rdfs:subClassOf rec:Room ;
.
rec:ConferenceTable
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Conference table" ;
rdfs:subClassOf rec:Table ;
.
rec:ConversationRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Conversation room" ;
rdfs:subClassOf rec:Room ;
.
rec:CookingRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Cooking room" ;
rdfs:subClassOf rec:FoodHandlingRoom ;
.
rec:CopyingRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Copying room" ;
rdfs:subClassOf rec:Room ;
.
rec:DataServerRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Data server room" ;
rdfs:subClassOf rec:UtilitiesRoom ;
.
rec:Department
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Department" ;
rdfs:subClassOf rec:Organization ;
.
rec:Desk
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Desk" ;
rdfs:subClassOf rec:Furniture ;
.
rec:DeskLamp
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Desk lamp" ;
rdfs:subClassOf rec:Lamp ;
.
rec:DiningRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Dining room" ;
rdfs:subClassOf rec:FoodHandlingRoom ;
.
rec:DisabledToilet
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Disabled toilet" ;
rdfs:subClassOf rec:PersonalHygiene ;
.
rec:DishingRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Dishing room" ;
rdfs:subClassOf rec:FoodHandlingRoom ;
.
rec:Document
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Document" ;
rdfs:subClassOf rec:Information ;
sh:property [
a sh:PropertyShape ;
sh:path rec:documentTopic ;
sh:name "document topic" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:url ;
sh:name "URL" ;
sh:nodeKind sh:IRI ;
] ;
.
rec:Door
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Door" ;
rdfs:subClassOf rec:BarrierAsset ;
.
rec:DressingRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Dressing room" ;
rdfs:subClassOf rec:Room ;
.
rec:EducationalRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Educational room" ;
rdfs:subClassOf rec:Room ;
.
rec:ElectricityRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Electricity room" ;
rdfs:subClassOf rec:UtilitiesRoom ;
.
rec:ElevatorRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Elevator room" ;
rdfs:subClassOf rec:Room ;
.
rec:ElevatorShaft
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Elevator shaft" ;
rdfs:subClassOf rec:Room ;
.
rec:ElevatorTrip
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Elevator trip" ;
rdfs:subClassOf rec:Event ;
sh:property [
a sh:PropertyShape ;
sh:path rec:currentLevel ;
sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:name "current level" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:endLevel ;
sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:name "end level" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:startLevel ;
sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:name "start level" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:tripDirection ;
sh:datatype xsd:string ;
sh:in (
"Up"
"Down"
) ;
sh:maxCount 1 ;
sh:name "trip direction" ;
] ;
.
rec:EndTable
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "End table" ;
rdfs:subClassOf rec:Table ;
.
rec:Entrance
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Entrance" ;
rdfs:subClassOf rec:Room ;
.
rec:EquipmentCollection
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Equipment collection" ;
rdfs:subClassOf rec:Collection ;
sh:property [
a sh:PropertyShape ;
sh:path rec:feeds ;
sh:name "feeds" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:hasPoint ;
sh:class brick:Point ;
sh:name "has point" ;
sh:nodeKind sh:IRI ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:includes ;
sh:class brick:Equipment ;
sh:minCount 1 ;
sh:name "includes" ;
sh:nodeKind sh:IRI ;
] ;
.
rec:ErrorReport
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Error report" ;
rdfs:subClassOf rec:ServiceObject ;
.
rec:Event
a rdfs:Class ;
a sh:NodeShape ;
rdfs:comment "A temporally indexed entity, e.g., an observation, a lease, a construction project, etc. Can be instantaneous (timestamp property assigned) or have temporal extent (start and end properties assigned). Subclasses may define specific behaviour and requirements, e.g., on spatial indexing, agent participation, etc." ;
rdfs:label "Event" ;
rdfs:subClassOf rdfs:Resource ;
sh:property [
a sh:PropertyShape ;
sh:path rec:end ;
sh:datatype xsd:dateTime ;
sh:description "Event ending timestamp." ;
sh:maxCount 1 ;
sh:name "end" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:start ;
sh:datatype xsd:dateTime ;
sh:description "Event start timestamp." ;
sh:maxCount 1 ;
sh:name "start" ;
] ;
sh:property [
a sh:PropertyShape ;
sh:path rec:timestamp ;
sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:name "timestamp" ;
] ;
.
rec:ExceptionEvent
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Exception event" ;
rdfs:subClassOf rec:PointEvent ;
sh:property [
a sh:PropertyShape ;
sh:path rec:sourcePoint ;
sh:class brick:Point ;
sh:description "The brick:Point that emitted this exception." ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:name "source point" ;
sh:nodeKind sh:IRI ;
] ;
.
rec:ExerciseRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Exercise room" ;
rdfs:subClassOf rec:Room ;
.
rec:ExhibitionRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Exhibition room" ;
rdfs:subClassOf rec:Room ;
.
rec:Facade
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Facade" ;
rdfs:subClassOf rec:BuildingElement ;
.
rec:FilingCabinet
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Filing cabinet" ;
rdfs:subClassOf rec:Furniture ;
.
rec:FittingRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Fitting room" ;
rdfs:subClassOf rec:RetailRoom ;
.
rec:FloorLamp
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Floor lamp" ;
rdfs:subClassOf rec:Lamp ;
.
rec:FloorMat
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Floor mat" ;
rdfs:subClassOf rec:Furniture ;
.
rec:FoldingChair
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Folding chair" ;
rdfs:subClassOf rec:Chair ;
.
rec:FoldingTable
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Folding table" ;
rdfs:subClassOf rec:Table ;
.
rec:FoodHandlingRoom
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Food-handling room" ;
rdfs:subClassOf rec:Room ;
.
rec:Footrest
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Footrest" ;
rdfs:subClassOf rec:Furniture ;
.
rec:Furniture
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Furniture" ;
rdfs:subClassOf rec:Asset ;
.
rec:FurnitureCollection
a rdfs:Class ;
a sh:NodeShape ;
rdfs:label "Furniture collection" ;
rdfs:subClassOf rec:Collection ;
sh:property [
a sh:PropertyShape ;
sh:path rec:includes ;
sh:class rec:Furniture ;
sh:minCount 1 ;
sh:name "includes" ;
sh:nodeKind sh:IRI ;
] ;