-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathloin.rdf
1388 lines (1387 loc) · 72.1 KB
/
loin.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:Container="https://standards.iso.org/iso/21597/-1/ed-1/en/Container#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:schema="https://schema.org/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
xmlns:Linkset="https://standards.iso.org/iso/21597/-1/ed-1/en/Linkset#"
xmlns:foaf="http://xmlns.com/foaf/0.1#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:loin="https://w3id.org/loin#"
xmlns:sh="http://www.w3.org/ns/shacl#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xml:base="https://w3id.org/loin">
<owl:Ontology rdf:about="">
<dc:license rdf:resource="https://creativecommons.org/licenses/by/4.0/"/>
<owl:versionInfo>0.2</owl:versionInfo>
<dc:creator>
<schema:Person>
<schema:name>Philipp Hagedorn</schema:name>
<schema:memberOf rdf:parseType="Resource">
<schema:name>Ruhr University Bochum</schema:name>
<schema:identifier rdf:resource="https://www.inf.bi.ruhr-uni-bochum.de/iib/lehrstuhl/mitarbeiter/philipp_hagedorn.html.en"/>
</schema:memberOf>
<schema:identifier rdf:resource="https://orcid.org/0000-0002-6249-243X"/>
<schema:email rdf:resource="mailto:philipp.hagedorn-n6v@rub.de"/>
</schema:Person>
</dc:creator>
<vann:preferredNamespacePrefix>loin</vann:preferredNamespacePrefix>
<dc:title xml:lang="en">Level of Information Need (LOIN) Ontology</dc:title>
<dc:publisher>
<schema:Organization>
<schema:parentOrganization>
<schema:Organization>
<schema:name>Ruhr University Bochum, Germany</schema:name>
</schema:Organization>
</schema:parentOrganization>
<schema:name>Chair of Computing in Engineering, Ruhr University Bochum</schema:name>
<schema:identifier rdf:resource="https://www.inf.bi.rub.de"/>
</schema:Organization>
</dc:publisher>
<dc:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date"
>2023-01-30</dc:created>
<dc:source rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI"
>https://github.com/RUB-Informatik-im-Bauwesen/loin-ontology</dc:source>
<dc:description xml:lang="en">The Level of Information Need (LOIN) Ontology is defined for specifying information requirements for delivery of data in a buildings' life cycle. The LOIN ontology is based on the standard BS EN 17412-1 (2020). Furthermore, it is extended with vocabulary for connecing Information Delivery Specifications (IDS) and Information containers for linked document delivery (ICDD) as per ISO 21597-1 (2020). </dc:description>
<dc:rights>Copyright 2023 by Chair of Computing in Engineering, Ruhr University Bochum</dc:rights>
<dc:creator>
<schema:Person>
<schema:name>Liu Liu</schema:name>
<schema:memberOf rdf:parseType="Resource">
<schema:name>Ruhr University Bochum</schema:name>
<schema:identifier rdf:resource="https://www.inf.bi.ruhr-uni-bochum.de/iib/lehrstuhl/mitarbeiter/liu_liu.html.en"/>
</schema:memberOf>
<schema:identifier rdf:resource="https://orcid.org/0000-0001-5907-7609"/>
<schema:email rdf:resource="mailto:liu.liu-m6r@rub.de"/>
</schema:Person>
</dc:creator>
</owl:Ontology>
<owl:Class rdf:ID="Appearance">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:ID="GeometrySpecification"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Appearance</rdfs:label>
<rdfs:comment xml:lang="en">Appearance as a geometrical information specification for information need according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="IDSDataDefinition">
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:ID="Entity"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasApplicability"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasRequirement"/>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:minCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasApplicability"/>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:minCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:DatatypeProperty rdf:ID="description"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:ID="InformationContent"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">IDS data definition</rdfs:label>
<rdfs:comment xml:lang="en">IDS data definition is used to specify the alphanumerical information according to Information Delivery Specification (IDS) developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="PsetName">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasRestrictionType"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:DatatypeProperty rdf:ID="restrictionFormulation"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:ID="IDSFacetParameter"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Property set name</rdfs:label>
<rdfs:comment xml:lang="en">Property set name must be a valid name from the IFC schema, or any custom text value according to IDS standard developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Information">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:DatatypeProperty rdf:ID="requested"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Alphanumerical information</rdfs:label>
<rdfs:comment xml:lang="en">Alphanumerical information is a term for specifying the information need according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Dimensionality">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:about="#GeometrySpecification"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Dimensionality</rdfs:label>
<rdfs:comment xml:lang="en">Dimensionality as a geometrical information specification for information need according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="EntityName">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:DatatypeProperty rdf:about="#restrictionFormulation"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasRestrictionType"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:about="#IDSFacetParameter"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Entity name</rdfs:label>
<rdfs:comment xml:lang="en">Entity name must be a valid IFC class from the IFC schema according to IDS developed by buildingSMART International. Example EntityName = "IFCWALL"</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Attribute">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasAttributeName"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:ID="IDSFacetDefinition"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Attribut of IDS</rdfs:label>
<rdfs:comment xml:lang="en">Attribut is a facet of Information Delivery Specification (IDS), a standard developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="BreakdownStructure">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasIdentifier"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Breakdown structure</rdfs:label>
<rdfs:comment xml:lang="en">Breakdown structure is a term for positioning the object in a structure according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="IDSRestrictionType">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Restriction type</rdfs:label>
<rdfs:comment xml:lang="en">Restriction type is used to specify the value of IDS facet parameter, that is defined in restriction formulation. The restriction types are based on IDS standard developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Purpose">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:DatatypeProperty rdf:about="#description"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label>Purpose</rdfs:label>
<rdfs:comment xml:lang="en">Purpose is a contextual aspect according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="IFCDataType">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasRestrictionType"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:DatatypeProperty rdf:about="#restrictionFormulation"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:about="#IDSFacetParameter"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">IFC data type</rdfs:label>
<rdfs:comment xml:lang="en">IFC data type must be a valid predefined type from the IFC schema according to IDS standard developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="DocumentFormat">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:ID="DocumentSpecification"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Document format</rdfs:label>
<rdfs:comment xml:lang="en">Document specification for format for information need according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Property">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasPropertyName"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasIFCDataType"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="belongsToPset"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:about="#IDSFacetDefinition"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Property</rdfs:label>
<rdfs:comment xml:lang="en">Property is a facet of Information Delivery Specification(IDS), a standard developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="OntologyDataDefinition">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<rdf:Property rdf:ID="specifiedByIdentifier"/>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:minCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:about="#InformationContent"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Ontology data definition</rdfs:label>
<rdfs:comment xml:lang="en">Ontology data definition is an extension of BS EN 17412-1 (2020). It is used to specify the alphanumerical information according to a published or customized ontology</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Document">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="belongsToInformationContent"/>
</owl:onProperty>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="isRelatedToContainerLinkset"/>
</owl:onProperty>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:ID="DocumentContent"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasDocumentSpecification"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:SymmetricProperty rdf:ID="isRelatedToContainerDocument"/>
</owl:onProperty>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom rdf:resource="#DocumentFormat"/>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasDocumentSpecification"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Document</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:ID="DocumentPurpose"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasDocumentSpecification"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Document is a term for specifying the documentation of information need according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Geometry">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:ID="Location"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasGeometrySpecification"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:DatatypeProperty rdf:about="#requested"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom rdf:resource="#Appearance"/>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasGeometrySpecification"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:ID="ParametricBehaviour"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasGeometrySpecification"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom rdf:resource="#Dimensionality"/>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasGeometrySpecification"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:ID="Detail"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasGeometrySpecification"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Geometrical information is a term for specifying the information need according to BS EN 17412-1 (2020)</rdfs:comment>
<rdfs:label xml:lang="en">Geometrical information</rdfs:label>
</owl:Class>
<owl:Class rdf:about="#Entity">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasEntityName"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:about="#IDSFacetDefinition"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Entity</rdfs:label>
<rdfs:comment xml:lang="en">Entity is a facet of Information Delivery Specification (IDS), a standard developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#InformationContent">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Alphanumerical information content</rdfs:label>
<rdfs:comment xml:lang="en">Alphanumerical information content is a term for specifying the alphanumerical information according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Classification">
<vs:term_status>stable</vs:term_status>
<owl:equivalentClass>
<owl:Class rdf:ID="Identification"/>
</owl:equivalentClass>
<rdfs:subClassOf>
<owl:Class rdf:about="#IDSFacetDefinition"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Classification of IDS</rdfs:label>
<rdfs:comment xml:lang="en">Classification is is a facet of Information Delivery Specification (IDS), a standard developed by buildingSMART International. In this ontology, it is defined as an equivalent class of Indentification according to BS EN 17412-1</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="BreakdownStructureType">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Breakdown structure type</rdfs:label>
<rdfs:comment xml:lang="en">Breakdown structure type is a term to specify the structure according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="AttributeName">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasRestrictionType"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:DatatypeProperty rdf:about="#restrictionFormulation"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:about="#IDSFacetParameter"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Attribute name</rdfs:label>
<rdfs:comment xml:lang="en">Attribute name must be a valid attribute name from the IFC schema according to the definition of IDS developed by buildingSMART International. Example AttributeName = "Description"</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="IdentifierType">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Identifier type</rdfs:label>
<rdfs:comment xml:lang="en">Identifier type is used to specify the identifier in a breakdown structure according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#GeometrySpecification">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Geometrical information specification</rdfs:label>
<rdfs:comment xml:lang="en">Additional specification of geometrical information for information need according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="InformationProvider">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:ID="Actor"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Information provider</rdfs:label>
<rdfs:comment xml:lang="en">Information provider is a party for information delivery according to ISO 19650-1 (2018)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#Actor">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label>Actor</rdfs:label>
<rdfs:comment xml:lang="en">Actor is a contextual aspect according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#DocumentSpecification">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Document specification</rdfs:label>
<rdfs:comment xml:lang="en">Additional specification of document for information need according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#ParametricBehaviour">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="#GeometrySpecification"/>
<rdfs:label xml:lang="en">Parametric behaviour</rdfs:label>
<rdfs:comment xml:lang="en">Parametric behaviour as a geometrical information specification for information need according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="PropertyName">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasRestrictionType"/>
</owl:onProperty>
<owl:hasValue>
<loin:IDSRestrictionType rdf:ID="SimpleValue">
<vs:term_status>stable</vs:term_status>
<rdfs:comment xml:lang="en">Simple value restriction specifies the exact allowed value. In this ontology, it is defined as a restriction type, which specifies the restriction formulation.</rdfs:comment>
<rdfs:label xml:lang="en">Simple value restriction</rdfs:label>
</loin:IDSRestrictionType>
</owl:hasValue>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:DatatypeProperty rdf:about="#restrictionFormulation"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:about="#IDSFacetParameter"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Property name</rdfs:label>
<rdfs:comment xml:lang="en">Property name must be a valid name from the IFC schema, or any custom text value according to IDS stan developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#IDSFacetDefinition">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">IDS facet definition</rdfs:label>
<rdfs:comment xml:lang="en">IDS facet definition is used to define a facet to apply the requirement or to require the information according to IDS standard developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#Location">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="#GeometrySpecification"/>
<rdfs:label xml:lang="en">Location</rdfs:label>
<rdfs:comment xml:lang="en">Location as a geometrical information specification for information need according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#DocumentPurpose">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="#DocumentSpecification"/>
<rdfs:label xml:lang="en">Document purpose</rdfs:label>
<rdfs:comment xml:lang="en">Document purpose is a extension according to BS EN 17412-1 (2020) 6.4 Document - Example 1. It specifies the use of document</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="PredefinedType">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:DatatypeProperty rdf:about="#restrictionFormulation"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasRestrictionType"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:about="#IDSFacetParameter"/>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Predefined type</rdfs:label>
<rdfs:comment xml:lang="en">Predefined type must be a valid predefined type from the IFC schema, or any custom text value according to IDS standard developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#Identification">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasBreakdownStructure"/>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:minCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Identification</rdfs:label>
<rdfs:comment xml:lang="en">Identification is a term for positioning the object in a breakdown structure according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="IDSRequirementType">
<owl:oneOf rdf:parseType="Resource">
<rdf:rest rdf:parseType="Resource">
<rdf:rest rdf:parseType="Resource">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first>Prohibited</rdf:first>
</rdf:rest>
<rdf:first>Optional</rdf:first>
</rdf:rest>
<rdf:first>Required</rdf:first>
</owl:oneOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">IDS requirement type</rdfs:label>
<rdfs:comment xml:lang="en">IDS requirement type is used to specify a requirement, if it is optional or mandatory according to IDS standard developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#Detail">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="#GeometrySpecification"/>
<rdfs:label xml:lang="en">Detail</rdfs:label>
<rdfs:comment xml:lang="en">Detail as a geometrical information specification for information need according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Identifier">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:DatatypeProperty rdf:ID="value"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasIdentifierType"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasBreakdownStructure"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Identifier</rdfs:label>
<rdfs:comment xml:lang="en">Identifier is used to assiging a vaule for positioning the object in a breakdown structure according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Documentation">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Documentation</rdfs:label>
<rdfs:comment xml:lang="en">Documentation is a term for specifying the information need according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Material">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="#IDSFacetDefinition"/>
<rdfs:label xml:lang="en">Material</rdfs:label>
<rdfs:comment xml:lang="en">Material is a facet of Information Delivery Specification(IDS), a standard developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="InformationReceiver">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="#Actor"/>
<rdfs:label xml:lang="en">Information receiver</rdfs:label>
<rdfs:comment xml:lang="en">Information receiver is a party for information delivery according to ISO 19650-1 (2018)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#DocumentContent">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="#DocumentSpecification"/>
<rdfs:label xml:lang="en">Document content</rdfs:label>
<rdfs:comment xml:lang="en">Document specification for content for information need according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="InformationDeliveryMilestone">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasObject"/>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:minCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasReceiver"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasPurpose"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasProvider"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Information delivery milestone</rdfs:label>
<rdfs:comment xml:lang="en">Information delivery milestone is a contextual aspect according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Value">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="#hasRestrictionType"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:DatatypeProperty rdf:about="#restrictionFormulation"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf>
<owl:Class rdf:about="#IDSFacetParameter"/>
</rdfs:subClassOf>
<rdfs:label>Value</rdfs:label>
<rdfs:comment>Value can be any custom value according to IDS standard developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#IDSFacetParameter">
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">IDS facet parameter</rdfs:label>
<rdfs:comment xml:lang="en">IDS facet parameter is used to specify a facet definition according to IDS standard developed by buildingSMART International</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="Object">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasInformation"/>
</owl:onProperty>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasGeometry"/>
</owl:onProperty>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:ID="hasDocumentation"/>
</owl:onProperty>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<vs:term_status>stable</vs:term_status>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label xml:lang="en">Object</rdfs:label>
<rdfs:comment xml:lang="en">Object is a contextual aspect according to BS EN 17412-1 (2020)</rdfs:comment>
</owl:Class>
<owl:ObjectProperty rdf:about="#hasBreakdownStructure">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#BreakdownStructure"/>
<rdfs:comment xml:lang="en">The object property relates the identification with a breakdown structure according to BS EN 17412-1 (2020)</rdfs:comment>
<rdfs:label xml:lang="en">has breakdown structure</rdfs:label>
<rdfs:domain rdf:resource="#Identification"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasRequirement">
<vs:term_status>stable</vs:term_status>
<rdfs:comment xml:lang="en">The object property relates the requirements with the IDS data definition</rdfs:comment>
<rdfs:range rdf:resource="#IDSFacetDefinition"/>
<rdfs:label xml:lang="en">has requirement</rdfs:label>
<rdfs:domain rdf:resource="#IDSDataDefinition"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasInformationContent">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#InformationContent"/>
<rdfs:comment xml:lang="en">The object property relates the detailed content with alphanumerical information according to BS EN 17412-1 (2020)</rdfs:comment>
<rdfs:label xml:lang="en">has alphanumerical informaton content</rdfs:label>
<rdfs:domain rdf:resource="#Information"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasInformation">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#Information"/>
<rdfs:comment xml:lang="en">The object property relates an alphanumerical information with a LOIN object according to BS EN 17412-1 (2020)</rdfs:comment>
<rdfs:label xml:lang="en">has alphanumerical information</rdfs:label>
<rdfs:domain rdf:resource="#Object"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasValue">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#Value"/>
<rdfs:comment xml:lang="en">relates the value with a facet in IDS data definition</rdfs:comment>
<rdfs:label>has value</rdfs:label>
<rdfs:domain rdf:resource="#Property"/>
<rdfs:domain rdf:resource="#Material"/>
<rdfs:domain rdf:resource="#Attribute"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasBreakdownStructureType">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#BreakdownStructureType"/>
<rdfs:comment xml:lang="en">The object property relates a specific type with the breakdown structure according to BS EN 17412-1 (2020)</rdfs:comment>
<rdfs:label xml:lang="en">has breakdown structure type</rdfs:label>
<rdfs:domain rdf:resource="#BreakdownStructure"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasIFCDataType">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#IFCDataType"/>
<rdfs:comment xml:lang="en">The object property relates the IFC data type with the facet property according to IDS definition</rdfs:comment>
<rdfs:label xml:lang="en">has IFC data type</rdfs:label>
<rdfs:domain rdf:resource="#Property"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasAttributeName">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#AttributeName"/>
<rdfs:label xml:lang="en">has attribute name</rdfs:label>
<rdfs:comment xml:lang="en">The object property relates the attribute name with the facet attribute according to IDS definition</rdfs:comment>
<rdfs:domain rdf:resource="#Attribute"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasIdentification">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#Identification"/>
<rdfs:comment xml:lang="en">The object property relates the identification of a breakdown structure with an alphanumerical information according to BS EN 17412-1 (2020)</rdfs:comment>
<rdfs:label xml:lang="en">has identification</rdfs:label>
<rdfs:domain rdf:resource="#Information"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="isRelatedToLoinDocument">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#Document"/>
<rdfs:comment xml:lang="en">The object property relates the alphanumerical information content with document according to BS EN 17412-1(2020)</rdfs:comment>
<rdfs:label>is related to Loin document</rdfs:label>
<rdfs:domain rdf:resource="#InformationContent"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasObject">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#Object"/>
<rdfs:comment xml:lang="en">The object property relates the objects with the information delivery milestone according to BS EN 17412-1 (2020)</rdfs:comment>
<rdfs:label>has object</rdfs:label>
<rdfs:domain rdf:resource="#InformationDeliveryMilestone"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#belongsToPset">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#PsetName"/>
<rdfs:comment xml:lang="en">Specification is used for facet property of IDS data definition.</rdfs:comment>
<rdfs:label xml:lang="en">A property belongs to Property set</rdfs:label>
<rdfs:domain rdf:resource="#Property"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasReceiver">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#InformationReceiver"/>
<rdfs:comment xml:lang="en">The object property relates the information receiver with the information delivery milestone according to BS EN 17412-1 (2020)</rdfs:comment>
<rdfs:label xml:lang="en">has information receiver</rdfs:label>
<rdfs:domain rdf:resource="#InformationDeliveryMilestone"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasApplicability">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#IDSFacetDefinition"/>
<rdfs:label xml:lang="en">has applicability</rdfs:label>
<rdfs:domain rdf:resource="#IDSDataDefinition"/>
<rdfs:comment xml:lang="en">The object property describes the applicability of a facet for the specification according to IDS definition</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasEntityName">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#EntityName"/>
<rdfs:label xml:lang="en">has entity name</rdfs:label>
<rdfs:comment xml:lang="en">The object property relates the entity name with the facet entity according to IDS definition</rdfs:comment>
<rdfs:domain rdf:resource="#Entity"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasDocument">
<vs:term_status>stable</vs:term_status>
<rdfs:comment xml:lang="en">The object property relates a set of documents with documentation according to BS EN 17412-1 (2020)</rdfs:comment>
<rdfs:label xml:lang="en">has document</rdfs:label>
<rdfs:domain rdf:resource="#Documentation"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#isRelatedToContainerLinkset">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="https://standards.iso.org/iso/21597/-1/ed-1/en/Container#Linkset"/>
<rdfs:comment xml:lang="en">The object property is an extension with ICDD. It relates ontological document defined by BS EN 17412-1(2020) with container linkset or data set</rdfs:comment>
<rdfs:label xml:lang="en">is related to container linkset</rdfs:label>
<rdfs:domain rdf:resource="#Document"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasRestrictionType">
<vs:term_status>stable</vs:term_status>
<rdfs:comment xml:lang="en">relates the restriction type with the facet parameter in IDS data definition</rdfs:comment>
<rdfs:range rdf:resource="#IDSRestrictionType"/>
<rdfs:label xml:lang="en">has restriction type</rdfs:label>
<rdfs:domain rdf:resource="#IDSFacetParameter"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasGeometrySpecification">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#GeometrySpecification"/>
<rdfs:comment xml:lang="en">The object property relates the specific aspects with geometrical information according to BS EN 17412-1 (2020)</rdfs:comment>
<rdfs:label xml:lang="en">has geometrical information specification</rdfs:label>
<rdfs:domain rdf:resource="#Geometry"/>
<rdfs:comment>["Appearance",
"Detail",
"Dimensionality",
"Location",
"ParametricBehaviour"]</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#belongsToInformationContent">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#InformationContent"/>
<rdfs:comment xml:lang="en">Specification of document, that relates with a respective person</rdfs:comment>
<rdfs:label xml:lang="en">belongs to information content</rdfs:label>
<rdfs:domain rdf:resource="#Document"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasAgent">
<vs:term_status>stable</vs:term_status>
<rdfs:label xml:lang="en">has agent</rdfs:label>
<rdfs:domain rdf:resource="#Actor"/>
<rdfs:comment xml:lang="en">Information of the information delivery actor defined by foaf ontology mit class foaf:Agent</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasPredefinedType">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#PredefinedType"/>
<rdfs:comment xml:lang="en">The object property relates a predefined type with the facet entity according to IDS definition</rdfs:comment>
<rdfs:label xml:lang="en">has predefined type</rdfs:label>
<rdfs:domain rdf:resource="#Entity"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasProvider">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#InformationProvider"/>
<rdfs:comment xml:lang="en">The object property relates the information provider with the information delivery milestone according to BS EN 17412-1 (2020)</rdfs:comment>
<rdfs:label xml:lang="en">has provider</rdfs:label>
<rdfs:domain rdf:resource="#InformationDeliveryMilestone"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasPropertyName">
<vs:term_status>stable</vs:term_status>
<rdfs:range rdf:resource="#PropertyName"/>
<rdfs:comment xml:lang="en">The object property relates a property name type with the facet property according to IDS definition</rdfs:comment>
<rdfs:label xml:lang="en">has property name</rdfs:label>