-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
3046 lines (2996 loc) · 139 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Level of Information Need (LOIN) Ontology</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
#pylode {
position: fixed;
top: 130px;
left: -60px;
font-size: small;
transform: rotate(-90deg);
color: grey;
}
#pylode a {
font-size: 2em;
font-weight: bold;
text-decoration: none;
color: #005A9C;
}
#pylode a:hover {
color: #333;
}
.cardinality {
font-style: italic;
color: #aa00aa;
}
dt {
font-weight: bold;
padding: 5px 0 5px 0;
}
ul.hlist {
list-style-type: none;
border: 1px solid navy;
padding: 5px;
background-color: #F4FFFF;
}
ul.hierarchy {
border: 1px solid navy;
padding: 5px 25px 5px 25px;
background-color: #F4FFFF;
}
ul.hlist li {
display: inline;
margin-right: 10px;
}
.entity {
border: 1px solid navy;
margin: 5px 0 5px 0;
padding: 5px;
}
.entity th {
width: 150px;
vertical-align: top;
}
.entity th,
.entity td {
padding-bottom: 20px;
}
.entity table th {
text-align: left;
}
section#overview img {
max-width: 1000px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-align: left
}
h1,
h2,
h3 {
color: #005A9C;
background: white
}
h1 {
font: 170% sans-serif;
line-height: 110%;
}
h2 {
font: 140% sans-serif;
margin-top: 40px;
}
h3 {
font: 120% sans-serif;
margin-top: 3px;
padding-bottom: 5px;
border-bottom: 1px solid navy;
}
h4 {
font: bold 100% sans-serif
}
h5 {
font: italic 100% sans-serif
}
h6 {
font: small-caps 100% sans-serif
}
body {
padding: 2em 70px 2em 70px;
margin: 0;
font-family: sans-serif;
color: black;
background: white;
background-position: top left;
background-attachment: fixed;
background-repeat: no-repeat;
text-align: justify;
}
section {
max-width: 1500px;
}
.figure {
margin-bottom: 20px;
}
:link {
color: #00C;
background: transparent
}
:visited {
color: #609;
background: transparent
}
a:active {
color: #C00;
background: transparent
}
.sup-c,
.sup-op,
.sup-fp,
.sup-dp,
.sup-ap,
.sup-p,
.sup-ni,
.sup-cp,
.sup-cl {
cursor: help;
margin-left: 3px;
}
.sup-c {
color: orange;
}
.sup-op {
color: navy;
}
.sup-fp {
color: lightskyblue;
}
.sup-dp {
color: green;
}
.sup-ap {
color: darkred;
}
.sup-p {
color: black;
}
.sup-ni {
color: brown;
}
.sup-cp {
color: orange;
}
.sup-cl {
color: darkred;
}
code {
font-size: large;
color: darkred;
}
</style>
<script type="application/ld+json">
[{
"@id": "https://w3id.org/loin",
"@type": [
"https://schema.org/DefinedTermSet"
],
"https://schema.org/description": [{
"@value": "<p>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). </p>"
}],
"https://schema.org/license": [{
"@id": "https://creativecommons.org/licenses/by/4.0/"
}],
"https://schema.org/name": [{
"@value": "Level of Information Need (LOIN) Ontology"
}],
"https://schema.org/rights": [{
"@value": "© 2023 by Chair of Computing in Engineering, Ruhr University Bochum"
}]
}]
</script>
</head>
<body>
<div id="pylode">made by
<a href="http://github.com/rdflib/pyLODE">
<span style="color:#329545;">p</span><span style="color:#f9cb33;">y</span>LODE</a>
<span style="font-size:smaller;">2.4</span>
</div>
<h1>Level of Information Need (LOIN) Ontology</h1>
<section id="metadata">
<h2 style="display:none;">Metadata</h2>
<dl>
<dt>IRI</dt>
<dd><code>https://w3id.org/loin</code></dd>
<dt>Publisher(s)</dt>
<dd>
<a href="https://www.inf.bi.rub.de">Chair of Computing in Engineering, Ruhr University Bochum</a><br/>
</dd>
<dt>Creator(s)</dt>
<dd>
<a href="https://orcid.org/0000-0001-5907-7609">Liu Liu</a>
<a href="https://orcid.org/0000-0001-5907-7609"><svg width="15px" height="15px" viewBox="0 0 72 72" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Orcid logo</title>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="hero" transform="translate(-924.000000, -72.000000)" fill-rule="nonzero">
<g id="Group-4">
<g id="vector_iD_icon" transform="translate(924.000000, 72.000000)">
<path d="M72,36 C72,55.884375 55.884375,72 36,72 C16.115625,72 0,55.884375 0,36 C0,16.115625 16.115625,0 36,0 C55.884375,0 72,16.115625 72,36 Z" id="Path" fill="#A6CE39"></path>
<g id="Group" transform="translate(18.868966, 12.910345)" fill="#FFFFFF">
<polygon id="Path" points="5.03734929 39.1250878 0.695429861 39.1250878 0.695429861 9.14431787 5.03734929 9.14431787 5.03734929 22.6930505 5.03734929 39.1250878"></polygon>
<path d="M11.409257,9.14431787 L23.1380784,9.14431787 C34.303014,9.14431787 39.2088191,17.0664074 39.2088191,24.1486995 C39.2088191,31.846843 33.1470485,39.1530811 23.1944669,39.1530811 L11.409257,39.1530811 L11.409257,9.14431787 Z M15.7511765,35.2620194 L22.6587756,35.2620194 C32.49858,35.2620194 34.7541226,27.8438084 34.7541226,24.1486995 C34.7541226,18.1301509 30.8915059,13.0353795 22.4332213,13.0353795 L15.7511765,13.0353795 L15.7511765,35.2620194 Z" id="Shape"></path>
<path d="M5.71401206,2.90182329 C5.71401206,4.441452 4.44526937,5.72914146 2.86638958,5.72914146 C1.28750978,5.72914146 0.0187670918,4.441452 0.0187670918,2.90182329 C0.0187670918,1.33420133 1.28750978,0.0745051096 2.86638958,0.0745051096 C4.44526937,0.0745051096 5.71401206,1.36219458 5.71401206,2.90182329 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg></a> (
<a href="mailto:[email protected]">[email protected]</a>) of
<a href="https://www.inf.bi.ruhr-uni-bochum.de/iib/lehrstuhl/mitarbeiter/liu_liu.html.en">Ruhr University Bochum</a><br/>
<a href="https://orcid.org/0000-0002-6249-243X">Philipp Hagedorn</a>
<a href="https://orcid.org/0000-0002-6249-243X"><svg width="15px" height="15px" viewBox="0 0 72 72" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Orcid logo</title>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="hero" transform="translate(-924.000000, -72.000000)" fill-rule="nonzero">
<g id="Group-4">
<g id="vector_iD_icon" transform="translate(924.000000, 72.000000)">
<path d="M72,36 C72,55.884375 55.884375,72 36,72 C16.115625,72 0,55.884375 0,36 C0,16.115625 16.115625,0 36,0 C55.884375,0 72,16.115625 72,36 Z" id="Path" fill="#A6CE39"></path>
<g id="Group" transform="translate(18.868966, 12.910345)" fill="#FFFFFF">
<polygon id="Path" points="5.03734929 39.1250878 0.695429861 39.1250878 0.695429861 9.14431787 5.03734929 9.14431787 5.03734929 22.6930505 5.03734929 39.1250878"></polygon>
<path d="M11.409257,9.14431787 L23.1380784,9.14431787 C34.303014,9.14431787 39.2088191,17.0664074 39.2088191,24.1486995 C39.2088191,31.846843 33.1470485,39.1530811 23.1944669,39.1530811 L11.409257,39.1530811 L11.409257,9.14431787 Z M15.7511765,35.2620194 L22.6587756,35.2620194 C32.49858,35.2620194 34.7541226,27.8438084 34.7541226,24.1486995 C34.7541226,18.1301509 30.8915059,13.0353795 22.4332213,13.0353795 L15.7511765,13.0353795 L15.7511765,35.2620194 Z" id="Shape"></path>
<path d="M5.71401206,2.90182329 C5.71401206,4.441452 4.44526937,5.72914146 2.86638958,5.72914146 C1.28750978,5.72914146 0.0187670918,4.441452 0.0187670918,2.90182329 C0.0187670918,1.33420133 1.28750978,0.0745051096 2.86638958,0.0745051096 C4.44526937,0.0745051096 5.71401206,1.36219458 5.71401206,2.90182329 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg></a> (
<a href="mailto:[email protected]">[email protected]</a>) of
<a href="https://www.inf.bi.ruhr-uni-bochum.de/iib/lehrstuhl/mitarbeiter/philipp_hagedorn.html.en">Ruhr University Bochum</a><br/>
</dd>
<dt>Created</dt>
<dd>2023-01-30</dd>
<dt>Version Information</dt>
<dd>0.2</dd>
<dt>License & Rights</dt>
<dd>
<a href="https://creativecommons.org/licenses/by/4.0/">https://creativecommons.org/licenses/by/4.0/</a><br /> © 2023 by Chair of Computing in Engineering, Ruhr University Bochum
</dd>
<dt>Source</dt>
<dd><a href="https://github.com/RUB-Informatik-im-Bauwesen/loin-ontology">https://github.com/RUB-Informatik-im-Bauwesen/loin-ontology</a></dd>
<dt>Ontology RDF</dt>
<dd><a href="loin.ttl">RDF (turtle)</a></dd>
<dd><a href="loin.rdf">RDF (RDF)</a></dd>
<dd><a href="loin.nt">RDF (N-triples)</a></dd>
<dd><a href="loin.jsonld">RDF (JSON-LD)</a></dd>
</dl>
<h2>Description</h2>
<div id="description">
<p>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). </p>
</div>
</section>
<section id="toc">
<h2>Table of Contents</h2>
<ol>
<li><a href="#classes">Classes</a></li>
<li><a href="#objectproperties">Object Properties</a></li>
<li><a href="#datatypeproperties">Datatype Properties</a></li>
<li><a href="#properties">Properties</a></li>
<li><a href="#namespaces">Namespaces</a></li>
<li><a href="#legend">Legend</a></li>
</ol>
</section>
<section id="overview">
<h2>Overview</h2>
<div class="figure">
<img style="width:500px; " src="loin.png">
<div class="caption"><strong>Figure 1:</strong> Ontology overview</div>
</div>
</section>
<section id="classes">
<h2>Classes <span style="float:right; font-size:smaller;"><a href="">↑</a></span></h2>
<ul class="hlist">
<li><a href="#Actor">Actor</a></li>
<li><a href="#Alphanumericalinformation">Alphanumerical information</a></li>
<li><a href="#Alphanumericalinformationcontent">Alphanumerical information content</a></li>
<li><a href="#Appearance">Appearance</a></li>
<li><a href="#AttributofIDS">Attribut of IDS</a></li>
<li><a href="#Attributename">Attribute name</a></li>
<li><a href="#Breakdownstructure">Breakdown structure</a></li>
<li><a href="#Breakdownstructuretype">Breakdown structure type</a></li>
<li><a href="#ClassificationofIDS">Classification of IDS</a></li>
<li><a href="#Detail">Detail</a></li>
<li><a href="#Dimensionality">Dimensionality</a></li>
<li><a href="#Document">Document</a></li>
<li><a href="#Documentcontent">Document content</a></li>
<li><a href="#Documentformat">Document format</a></li>
<li><a href="#Documentpurpose">Document purpose</a></li>
<li><a href="#Documentspecification">Document specification</a></li>
<li><a href="#Documentation">Documentation</a></li>
<li><a href="#Entity">Entity</a></li>
<li><a href="#Entityname">Entity name</a></li>
<li><a href="#Geometricalinformation">Geometrical information</a></li>
<li><a href="#Geometricalinformationspecification">Geometrical information specification</a></li>
<li><a href="#IDSdatadefinition">IDS data definition</a></li>
<li><a href="#IDSfacetdefinition">IDS facet definition</a></li>
<li><a href="#IDSfacetparameter">IDS facet parameter</a></li>
<li><a href="#IDSrequirementtype">IDS requirement type</a></li>
<li><a href="#IFCdatatype">IFC data type</a></li>
<li><a href="#Identification">Identification</a></li>
<li><a href="#Identifier">Identifier</a></li>
<li><a href="#Identifiertype">Identifier type</a></li>
<li><a href="#Informationdeliverymilestone">Information delivery milestone</a></li>
<li><a href="#Informationprovider">Information provider</a></li>
<li><a href="#Informationreceiver">Information receiver</a></li>
<li><a href="#Location">Location</a></li>
<li><a href="#Material">Material</a></li>
<li><a href="#Object">Object</a></li>
<li><a href="#Ontologydatadefinition">Ontology data definition</a></li>
<li><a href="#Parametricbehaviour">Parametric behaviour</a></li>
<li><a href="#Predefinedtype">Predefined type</a></li>
<li><a href="#Property">Property</a></li>
<li><a href="#Propertyname">Property name</a></li>
<li><a href="#Propertysetname">Property set name</a></li>
<li><a href="#Purpose">Purpose</a></li>
<li><a href="#Restrictiontype">Restriction type</a></li>
<li><a href="#Value">Value</a></li>
</ul>
<div class="entity class" id="Actor">
<h3>Actor<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#Actor</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Actor is a contextual aspect according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2000/01/rdf-schema#Resource">rdfs:Resource</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="#Informationreceiver">loin:InformationReceiver</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#Informationprovider">loin:InformationProvider</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#isrelatedtocontainerparty">loin:isRelatedToContainerParty</a><br/>
<a href="#hasagent">loin:hasAgent</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Appearance">
<h3>Appearance<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#Appearance</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Appearance as a geometrical information specification for information need according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Geometricalinformationspecification">loin:GeometrySpecification</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="AttributofIDS">
<h3>Attribut of IDS<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#Attribute</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Attribut is a facet of Information Delivery Specification (IDS), a standard developed by buildingSMART International</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#IDSfacetdefinition">loin:IDSFacetDefinition</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hasattributename">loin:hasAttributeName</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1<br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#hasattributename">loin:hasAttributeName</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#hasvalue">loin:hasValue</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Attributename">
<h3>Attribute name<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#AttributeName</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>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"</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#IDSfacetparameter">loin:IDSFacetParameter</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hasrestrictiontype">loin:hasRestrictionType</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1<br/>
<a href="#Constrainttextformulatedforfacetparameters">loin:restrictionFormulation</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">exactly</span> 1<br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hasattributename">loin:hasAttributeName</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Breakdownstructure">
<h3>Breakdown structure<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#BreakdownStructure</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Breakdown structure is a term for positioning the object in a structure according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2000/01/rdf-schema#Resource">rdfs:Resource</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hasidentifier">loin:hasIdentifier</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1<br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#hasbreakdownstructuretype">loin:hasBreakdownStructureType</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#hasidentifier">loin:hasIdentifier</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hasbreakdownstructure">loin:hasBreakdownStructure</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Breakdownstructuretype">
<h3>Breakdown structure type<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#BreakdownStructureType</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Breakdown structure type is a term to specify the structure according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2000/01/rdf-schema#Resource">rdfs:Resource</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hasbreakdownstructuretype">loin:hasBreakdownStructureType</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="ClassificationofIDS">
<h3>Classification of IDS<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#Classification</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>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</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#IDSfacetdefinition">loin:IDSFacetDefinition</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Detail">
<h3>Detail<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#Detail</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Detail as a geometrical information specification for information need according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Geometricalinformationspecification">loin:GeometrySpecification</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Dimensionality">
<h3>Dimensionality<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#Dimensionality</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Dimensionality as a geometrical information specification for information need according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Geometricalinformationspecification">loin:GeometrySpecification</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Document">
<h3>Document<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#Document</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Document is a term for specifying the documentation of information need according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2000/01/rdf-schema#Resource">rdfs:Resource</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hasdocumentatonspecification">loin:hasDocumentSpecification</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#Documentformat">loin:DocumentFormat</a><sup class="sup-c"
title="class">c</sup><br/>
<a href="#hasdocumentatonspecification">loin:hasDocumentSpecification</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#Documentcontent">loin:DocumentContent</a><sup class="sup-c"
title="class">c</sup><br/>
<a href="#hasdocumentatonspecification">loin:hasDocumentSpecification</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#Documentpurpose">loin:DocumentPurpose</a><sup class="sup-c"
title="class">c</sup><br/>
<a href="#isrelatedtocontainerdocument">loin:isRelatedToContainerDocument</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">max</span> 1<br/>
<a href="#belongstoinformationcontent">loin:belongsToInformationContent</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">max</span> 1<br/>
<a href="#isrelatedtocontainerlinkset">loin:isRelatedToContainerLinkset</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">max</span> 1<br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#isrelatedtocontainerlinkset">loin:isRelatedToContainerLinkset</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#isrelatedtocontainerdocument">loin:isRelatedToContainerDocument</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#hasdocumentatonspecification">loin:hasDocumentSpecification</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#belongstoinformationcontent">loin:belongsToInformationContent</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#isrelatedtoLoindocument">loin:isRelatedToLoinDocument</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Documentcontent">
<h3>Document content<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#DocumentContent</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Document specification for content for information need according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Documentspecification">loin:DocumentSpecification</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Documentformat">
<h3>Document format<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#DocumentFormat</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Document specification for format for information need according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Documentspecification">loin:DocumentSpecification</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Documentpurpose">
<h3>Document purpose<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#DocumentPurpose</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Document purpose is a extension according to BS EN 17412-1 (2020) 6.4 Document - Example 1. It specifies the use of document</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Documentspecification">loin:DocumentSpecification</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Documentspecification">
<h3>Document specification<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#DocumentSpecification</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Additional specification of document for information need according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2000/01/rdf-schema#Resource">rdfs:Resource</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="#Documentformat">loin:DocumentFormat</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#Documentpurpose">loin:DocumentPurpose</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#Documentcontent">loin:DocumentContent</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hasdocumentatonspecification">loin:hasDocumentSpecification</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Documentation">
<h3>Documentation<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#Documentation</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Documentation is a term for specifying the information need according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2000/01/rdf-schema#Resource">rdfs:Resource</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#hasdocument">loin:hasDocument</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hasdocumentation">loin:hasDocumentation</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Entity">
<h3>Entity<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#Entity</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Entity is a facet of Information Delivery Specification (IDS), a standard developed by buildingSMART International</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#IDSfacetdefinition">loin:IDSFacetDefinition</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hasentityname">loin:hasEntityName</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1<br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#haspredefinedtype">loin:hasPredefinedType</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#hasentityname">loin:hasEntityName</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Entityname">
<h3>Entity name<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#EntityName</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Entity name must be a valid IFC class from the IFC schema according to IDS developed by buildingSMART International. Example EntityName = "IFCWALL"</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#IDSfacetparameter">loin:IDSFacetParameter</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hasrestrictiontype">loin:hasRestrictionType</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1<br/>
<a href="#Constrainttextformulatedforfacetparameters">loin:restrictionFormulation</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">exactly</span> 1<br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hasentityname">loin:hasEntityName</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Geometricalinformation">
<h3>Geometrical information<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#Geometry</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Geometrical information is a term for specifying the information need according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2000/01/rdf-schema#Resource">rdfs:Resource</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hasgeometricalinformationspecification">loin:hasGeometrySpecification</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#Location">loin:Location</a><sup class="sup-c"
title="class">c</sup><br/>
<a href="#hasgeometricalinformationspecification">loin:hasGeometrySpecification</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#Parametricbehaviour">loin:ParametricBehaviour</a>
<sup class="sup-c" title="class">c</sup><br/>
<a href="#hasgeometricalinformationspecification">loin:hasGeometrySpecification</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#Dimensionality">loin:Dimensionality</a>
<sup class="sup-c" title="class">c</sup><br/>
<a href="#hasgeometricalinformationspecification">loin:hasGeometrySpecification</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#Appearance">loin:Appearance</a>
<sup class="sup-c" title="class">c</sup><br/>
<a href="#hasgeometricalinformationspecification">loin:hasGeometrySpecification</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#Detail">loin:Detail</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#requestedasboolean,specifysifGeometricalinformationisneededaccordingtoBSEN17412-1(2020)">loin:requested</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">exactly</span> 1<br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#hasgeometricalinformationspecification">loin:hasGeometrySpecification</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#requestedasboolean,specifysifGeometricalinformationisneededaccordingtoBSEN17412-1(2020)">loin:requested</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hasgeometricalinformation">loin:hasGeometry</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Geometricalinformationspecification">
<h3>Geometrical information specification<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#GeometrySpecification</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>Additional specification of geometrical information for information need according to BS EN 17412-1 (2020)</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2000/01/rdf-schema#Resource">rdfs:Resource</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="#Parametricbehaviour">loin:ParametricBehaviour</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#Dimensionality">loin:Dimensionality</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#Detail">loin:Detail</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#Appearance">loin:Appearance</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#Location">loin:Location</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#requestedasboolean,specifysifGeometricalinformationisneededaccordingtoBSEN17412-1(2020)">loin:requested</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hasgeometricalinformationspecification">loin:hasGeometrySpecification</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="IDSdatadefinition">
<h3>IDS data definition<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/loin#IDSDataDefinition</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>IDS data definition is used to specify the alphanumerical information according to Information Delivery Specification (IDS) developed by buildingSMART International</p>
</td>
</tr>
<tr>