-
Notifications
You must be signed in to change notification settings - Fork 1
/
loin.jsonld
2155 lines (2155 loc) · 74.8 KB
/
loin.jsonld
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
{
"@graph": [{
"@id": "_:b0",
"@type": "owl:Restriction",
"onProperty": "loin:hasDocumentSpecification",
"someValuesFrom": "loin:DocumentContent"
}, {
"@id": "_:b1",
"@type": "owl:Restriction",
"minCardinality": "1",
"onProperty": "loin:hasBreakdownStructure"
}, {
"@id": "_:b10",
"@type": "owl:Restriction",
"onProperty": "loin:hasGeometrySpecification",
"someValuesFrom": "loin:Dimensionality"
}, {
"@id": "_:b11",
"@type": "owl:Restriction",
"onProperty": "loin:hasGeometrySpecification",
"someValuesFrom": "loin:Detail"
}, {
"@id": "_:b12",
"@type": "owl:Restriction",
"maxCardinality": "1",
"onProperty": "loin:hasInformation"
}, {
"@id": "_:b13",
"@type": "owl:Restriction",
"maxCardinality": "1",
"onProperty": "loin:hasGeometry"
}, {
"@id": "_:b14",
"@type": "owl:Restriction",
"maxCardinality": "1",
"onProperty": "loin:hasDocumentation"
}, {
"@id": "_:b15",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:description"
}, {
"@id": "_:b16",
"@type": "owl:Class",
"unionOf": {
"@list": ["loin:BreakdownStructure", "loin:OntologyDataDefinition"]
}
}, {
"@id": "_:b18",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasIdentifierType"
}, {
"@id": "_:b19",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:description"
}, {
"@id": "_:b2",
"@type": "owl:Restriction",
"maxCardinality": "1",
"onProperty": "loin:isRelatedToContainerLinkset"
}, {
"@id": "_:b20",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasIFCDataType"
}, {
"@id": "_:b21",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:restrictionFormulation"
}, {
"@id": "_:b22",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasEntityName"
}, {
"@id": "_:b23",
"@type": "owl:Restriction",
"minCardinality": "1",
"onProperty": "loin:hasRequirement"
}, {
"@id": "_:b24",
"identifier": "https://www.inf.bi.ruhr-uni-bochum.de/iib/lehrstuhl/mitarbeiter/liu_liu.html.en",
"name": "Ruhr University Bochum"
}, {
"@id": "_:b25",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:restrictionFormulation"
}, {
"@id": "_:b26",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasProvider"
}, {
"@id": "_:b27",
"@type": "owl:Restriction",
"hasValue": "loin:SimpleValue",
"onProperty": "loin:hasRestrictionType"
}, {
"@id": "_:b28",
"@type": "schema:Person",
"email": "mailto:[email protected]",
"identifier": "https://orcid.org/0000-0002-6249-243X",
"memberOf": "_:b29",
"name": "Philipp Hagedorn"
}, {
"@id": "_:b29",
"identifier": "https://www.inf.bi.ruhr-uni-bochum.de/iib/lehrstuhl/mitarbeiter/philipp_hagedorn.html.en",
"name": "Ruhr University Bochum"
}, {
"@id": "_:b3",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:restrictionFormulation"
}, {
"@id": "_:b30",
"@type": "owl:Restriction",
"minCardinality": "1",
"onProperty": "loin:hasApplicability"
}, {
"@id": "_:b31",
"@type": "schema:Organization",
"identifier": "https://www.inf.bi.rub.de",
"name": "Chair of Computing in Engineering, Ruhr University Bochum",
"parentOrganization": "_:b60"
}, {
"@id": "_:b32",
"@type": "schema:Person",
"email": "mailto:[email protected]",
"identifier": "https://orcid.org/0000-0001-5907-7609",
"memberOf": "_:b24",
"name": "Liu Liu"
}, {
"@id": "_:b33",
"@type": "owl:Class",
"unionOf": {
"@list": ["loin:InformationContent", "loin:Purpose"]
}
}, {
"@id": "_:b34",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:restrictionFormulation"
}, {
"@id": "_:b35",
"@type": "owl:Restriction",
"onProperty": "loin:hasApplicability",
"someValuesFrom": "loin:Entity"
}, {
"@id": "_:b36",
"@type": "owl:Restriction",
"minCardinality": "1",
"onProperty": "loin:specifiedByIdentifier"
}, {
"@id": "_:b38",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:belongsToPset"
}, {
"@id": "_:b4",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasRestrictionType"
}, {
"@id": "_:b40",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasRestrictionType"
}, {
"@id": "_:b41",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:restrictionFormulation"
}, {
"@id": "_:b42",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:value"
}, {
"@id": "_:b43",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasPropertyName"
}, {
"@id": "_:b44",
"@type": "owl:Restriction",
"maxCardinality": "1",
"onProperty": "loin:isRelatedToContainerDocument"
}, {
"@id": "_:b45",
"@type": "owl:Restriction",
"maxCardinality": "1",
"onProperty": "loin:belongsToInformationContent"
}, {
"@id": "_:b46",
"@type": "owl:Restriction",
"onProperty": "loin:hasDocumentSpecification",
"someValuesFrom": "loin:DocumentFormat"
}, {
"@id": "_:b47",
"@type": "owl:Restriction",
"onProperty": "loin:hasDocumentSpecification",
"someValuesFrom": "loin:DocumentPurpose"
}, {
"@id": "_:b48",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasRestrictionType"
}, {
"@id": "_:b49",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:restrictionFormulation"
}, {
"@id": "_:b5",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasRestrictionType"
}, {
"@id": "_:b51",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasIdentifier"
}, {
"@id": "_:b52",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:requested"
}, {
"@id": "_:b53",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasReceiver"
}, {
"@id": "_:b55",
"@type": "owl:Restriction",
"minCardinality": "1",
"onProperty": "loin:hasObject"
}, {
"@id": "_:b56",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasPurpose"
}, {
"@id": "_:b57",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:restrictionFormulation"
}, {
"@id": "_:b6",
"@type": "owl:Restriction",
"onProperty": "loin:hasGeometrySpecification",
"someValuesFrom": "loin:Location"
}, {
"@id": "_:b60",
"@type": "schema:Organization",
"name": "Ruhr University Bochum, Germany"
}, {
"@id": "_:b61",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasRestrictionType"
}, {
"@id": "_:b62",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasRestrictionType"
}, {
"@id": "_:b63",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasBreakdownStructure"
}, {
"@id": "_:b64",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:hasAttributeName"
}, {
"@id": "_:b7",
"@type": "owl:Restriction",
"cardinality": "1",
"onProperty": "loin:requested"
}, {
"@id": "_:b8",
"@type": "owl:Restriction",
"onProperty": "loin:hasGeometrySpecification",
"someValuesFrom": "loin:Appearance"
}, {
"@id": "_:b9",
"@type": "owl:Restriction",
"onProperty": "loin:hasGeometrySpecification",
"someValuesFrom": "loin:ParametricBehaviour"
}, {
"@id": "https://w3id.org/loin",
"@type": "owl:Ontology",
"created": "2023-01-30",
"creator": ["_:b28", "_:b32"],
"description": {
"@language": "en",
"@value": "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). "
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"publisher": "_:b31",
"rights": "Copyright 2023 by Chair of Computing in Engineering, Ruhr University Bochum",
"source": "https://github.com/RUB-Informatik-im-Bauwesen/loin-ontology",
"title": {
"@language": "en",
"@value": "Level of Information Need (LOIN) Ontology"
},
"preferredNamespacePrefix": "loin",
"versionInfo": "0.2"
}, {
"@id": "loin:Actor",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Actor is a contextual aspect according to BS EN 17412-1 (2020)"
},
"label": "Actor",
"subClassOf": "rdfs:Resource",
"term_status": "stable"
}, {
"@id": "loin:Appearance",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Appearance as a geometrical information specification for information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Appearance"
},
"subClassOf": "loin:GeometrySpecification",
"term_status": "stable"
}, {
"@id": "loin:Attribute",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Attribut is a facet of Information Delivery Specification (IDS), a standard developed by buildingSMART International"
},
"label": {
"@language": "en",
"@value": "Attribut of IDS"
},
"subClassOf": ["_:b64", "loin:IDSFacetDefinition"],
"term_status": "stable"
}, {
"@id": "loin:AttributeName",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "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\""
},
"label": {
"@language": "en",
"@value": "Attribute name"
},
"subClassOf": ["_:b62", "_:b21", "loin:IDSFacetParameter"],
"term_status": "stable"
}, {
"@id": "loin:Bounds",
"@type": "loin:IDSRestrictionType",
"comment": {
"@language": "en",
"@value": "Bounds restriction specifies that the value is a number and has to fall within a range of values. It is defined by complex restriction of IDS. In this ontology, it is defined as a restriction type, which specifies the restriction formulation."
},
"label": {
"@language": "en",
"@value": "Bounds restriction"
},
"term_status": "stable"
}, {
"@id": "loin:BreakdownStructure",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Breakdown structure is a term for positioning the object in a structure according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Breakdown structure"
},
"subClassOf": ["_:b51", "rdfs:Resource"],
"term_status": "stable"
}, {
"@id": "loin:BreakdownStructureType",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Breakdown structure type is a term to specify the structure according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Breakdown structure type"
},
"subClassOf": "rdfs:Resource",
"term_status": "stable"
}, {
"@id": "loin:Classification",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "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"
},
"label": {
"@language": "en",
"@value": "Classification of IDS"
},
"subClassOf": "loin:IDSFacetDefinition",
"equivalentClass": "loin:Identification",
"term_status": "stable"
}, {
"@id": "loin:ClassificationSystem",
"@type": "loin:BreakdownStructureType",
"comment": {
"@language": "en",
"@value": "An example of breakdown structure type according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Classification system"
},
"term_status": "stable"
}, {
"@id": "loin:Codification",
"@type": "loin:IdentifierType",
"comment": {
"@language": "en",
"@value": "An example of identifier type from a breakdown structure according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Codification of an item in a breakdown structure"
},
"term_status": "stable"
}, {
"@id": "loin:Detail",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Detail as a geometrical information specification for information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Detail"
},
"subClassOf": "loin:GeometrySpecification",
"term_status": "stable"
}, {
"@id": "loin:Dimensionality",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Dimensionality as a geometrical information specification for information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Dimensionality"
},
"subClassOf": "loin:GeometrySpecification",
"term_status": "stable"
}, {
"@id": "loin:Document",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Document is a term for specifying the documentation of information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Document"
},
"subClassOf": ["_:b45", "_:b2", "_:b0", "_:b44", "_:b46", "rdfs:Resource", "_:b47"],
"term_status": "stable"
}, {
"@id": "loin:DocumentContent",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Document specification for content for information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Document content"
},
"subClassOf": "loin:DocumentSpecification",
"term_status": "stable"
}, {
"@id": "loin:DocumentFormat",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Document specification for format for information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Document format"
},
"subClassOf": "loin:DocumentSpecification",
"term_status": "stable"
}, {
"@id": "loin:DocumentPurpose",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Document purpose is a extension according to BS EN 17412-1 (2020) 6.4 Document - Example 1. It specifies the use of document"
},
"label": {
"@language": "en",
"@value": "Document purpose"
},
"subClassOf": "loin:DocumentSpecification",
"term_status": "stable"
}, {
"@id": "loin:DocumentSpecification",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Additional specification of document for information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Document specification"
},
"subClassOf": "rdfs:Resource",
"term_status": "stable"
}, {
"@id": "loin:Documentation",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Documentation is a term for specifying the information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Documentation"
},
"subClassOf": "rdfs:Resource",
"term_status": "stable"
}, {
"@id": "loin:EngineeringPrinciple",
"@type": "loin:BreakdownStructureType",
"comment": {
"@language": "en",
"@value": "An example of breakdown structure type according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Engineering principle"
},
"term_status": "stable"
}, {
"@id": "loin:Entity",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Entity is a facet of Information Delivery Specification (IDS), a standard developed by buildingSMART International"
},
"label": {
"@language": "en",
"@value": "Entity"
},
"subClassOf": ["_:b22", "loin:IDSFacetDefinition"],
"term_status": "stable"
}, {
"@id": "loin:EntityName",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Entity name must be a valid IFC class from the IFC schema according to IDS developed by buildingSMART International. Example EntityName = \"IFCWALL\""
},
"label": {
"@language": "en",
"@value": "Entity name"
},
"subClassOf": ["_:b3", "_:b4", "loin:IDSFacetParameter"],
"term_status": "stable"
}, {
"@id": "loin:Enumeration",
"@type": "loin:IDSRestrictionType",
"comment": {
"@language": "en",
"@value": "Enumeration restriction specifies that the value must be one of a list of allowed values. It is defined by complex restriction of IDS. In this ontology, it is defined as a restriction type, which specifies the restriction formulation."
},
"label": {
"@language": "en",
"@value": "Enumeration restriction"
},
"term_status": "stable"
}, {
"@id": "loin:FederationStrategy",
"@type": "loin:BreakdownStructureType",
"comment": {
"@language": "en",
"@value": "An example of breakdown structure type according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Federation strategy"
},
"term_status": "stable"
}, {
"@id": "loin:Functional",
"@type": "loin:BreakdownStructureType",
"comment": {
"@language": "en",
"@value": "An example of breakdown structure type according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Functional structure"
},
"term_status": "stable"
}, {
"@id": "loin:Geometry",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Geometrical information is a term for specifying the information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Geometrical information"
},
"subClassOf": ["_:b6", "_:b7", "rdfs:Resource", "_:b8", "_:b9", "_:b10", "_:b11"],
"term_status": "stable"
}, {
"@id": "loin:GeometrySpecification",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Additional specification of geometrical information for information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Geometrical information specification"
},
"subClassOf": "rdfs:Resource",
"term_status": "stable"
}, {
"@id": "loin:Handdrawn_Sketches",
"@type": "loin:DocumentContent",
"comment": {
"@language": "en",
"@value": "Documents such as such as initial sketches, site plans according to notes of BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Handdrawn sketches"
},
"term_status": "stable"
}, {
"@id": "loin:Hard_Copy",
"@type": "loin:DocumentContent",
"comment": {
"@language": "en",
"@value": "Documents of geometrical information or alphanumerical information can also be considered as documents according to notes of BS EN 17412-1 (2020)."
},
"label": {
"@language": "en",
"@value": "Hand copy"
},
"term_status": "stable"
}, {
"@id": "loin:IDSDataDefinition",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "IDS data definition is used to specify the alphanumerical information according to Information Delivery Specification (IDS) developed by buildingSMART International"
},
"label": {
"@language": "en",
"@value": "IDS data definition"
},
"subClassOf": ["_:b35", "_:b23", "_:b30", "_:b15", "loin:InformationContent"],
"term_status": "stable"
}, {
"@id": "loin:IDSFacetDefinition",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "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"
},
"label": {
"@language": "en",
"@value": "IDS facet definition"
},
"subClassOf": "rdfs:Resource",
"term_status": "stable"
}, {
"@id": "loin:IDSFacetParameter",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "IDS facet parameter is used to specify a facet definition according to IDS standard developed by buildingSMART International"
},
"label": {
"@language": "en",
"@value": "IDS facet parameter"
},
"subClassOf": "rdfs:Resource",
"term_status": "stable"
}, {
"@id": "loin:IDSRequirementType",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "IDS requirement type is used to specify a requirement, if it is optional or mandatory according to IDS standard developed by buildingSMART International"
},
"label": {
"@language": "en",
"@value": "IDS requirement type"
},
"subClassOf": "rdfs:Resource",
"owl:oneOf": {
"@list": ["Required", "Optional", "Prohibited"]
},
"term_status": "stable"
}, {
"@id": "loin:IDSRestrictionType",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "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"
},
"label": {
"@language": "en",
"@value": "Restriction type"
},
"subClassOf": "rdfs:Resource",
"term_status": "stable"
}, {
"@id": "loin:IFCDataType",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "IFC data type must be a valid predefined type from the IFC schema according to IDS standard developed by buildingSMART International"
},
"label": {
"@language": "en",
"@value": "IFC data type"
},
"subClassOf": ["_:b48", "_:b49", "loin:IDSFacetParameter"],
"term_status": "stable"
}, {
"@id": "loin:Identification",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Identification is a term for positioning the object in a breakdown structure according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Identification"
},
"subClassOf": ["_:b1", "rdfs:Resource"],
"term_status": "stable"
}, {
"@id": "loin:Identifier",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Identifier is used to assiging a vaule for positioning the object in a breakdown structure according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Identifier"
},
"subClassOf": ["_:b42", "_:b18", "_:b63", "rdfs:Resource"],
"term_status": "stable"
}, {
"@id": "loin:IdentifierType",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Identifier type is used to specify the identifier in a breakdown structure according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Identifier type"
},
"subClassOf": "rdfs:Resource",
"term_status": "stable"
}, {
"@id": "loin:Index",
"@type": "loin:IdentifierType",
"comment": {
"@language": "en",
"@value": "Index, an identifier type according to notes of BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Index of an item in a breakdown structure"
},
"term_status": "stable"
}, {
"@id": "loin:Information",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Alphanumerical information is a term for specifying the information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Alphanumerical information"
},
"subClassOf": ["_:b52", "rdfs:Resource"],
"term_status": "stable"
}, {
"@id": "loin:InformationContent",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Alphanumerical information content is a term for specifying the alphanumerical information according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Alphanumerical information content"
},
"subClassOf": "rdfs:Resource",
"term_status": "stable"
}, {
"@id": "loin:InformationDeliveryMilestone",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Information delivery milestone is a contextual aspect according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Information delivery milestone"
},
"subClassOf": ["_:b55", "_:b53", "_:b56", "_:b26", "rdfs:Resource"],
"term_status": "stable"
}, {
"@id": "loin:InformationProvider",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Information provider is a party for information delivery according to ISO 19650-1 (2018)"
},
"label": {
"@language": "en",
"@value": "Information provider"
},
"subClassOf": "loin:Actor",
"term_status": "stable"
}, {
"@id": "loin:InformationReceiver",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Information receiver is a party for information delivery according to ISO 19650-1 (2018)"
},
"label": {
"@language": "en",
"@value": "Information receiver"
},
"subClassOf": "loin:Actor",
"term_status": "stable"
}, {
"@id": "loin:Length",
"@type": "loin:IDSRestrictionType",
"comment": {
"@language": "en",
"@value": "Length restriction specifies the exact number of characters allowed in a value. It is defined by complex restriction of IDS. In this ontology, it is defined as a restriction type, which specifies the restriction formulation."
},
"label": {
"@language": "en",
"@value": "Length restriction"
},
"term_status": "stable"
}, {
"@id": "loin:Location",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Location as a geometrical information specification for information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Location"
},
"subClassOf": "loin:GeometrySpecification",
"term_status": "stable"
}, {
"@id": "loin:Manual",
"@type": "loin:DocumentContent",
"comment": {
"@language": "en",
"@value": "Documents such as maintenance and user manuals according to notes of BS EN 17412-1 (2020)"
},
"label": "Manual",
"term_status": "stable"
}, {
"@id": "loin:Material",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Material is a facet of Information Delivery Specification(IDS), a standard developed by buildingSMART International"
},
"label": {
"@language": "en",
"@value": "Material"
},
"subClassOf": "loin:IDSFacetDefinition",
"term_status": "stable"
}, {
"@id": "loin:Name",
"@type": "loin:IdentifierType",
"comment": {
"@language": "en",
"@value": "Name, an identifier type in a breakdown structure according to notes of BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Name of an item in a breakdown structure"
},
"term_status": "stable"
}, {
"@id": "loin:NotRequested",
"@type": "loin:Geometry",
"comment": {
"@language": "en",
"@value": "Geometry information is not requested"
},
"label": {
"@language": "en",
"@value": "Geometry not requested"
},
"term_status": "stable",
"loin:requested": false
}, {
"@id": "loin:Numbering",
"@type": "loin:IdentifierType",
"comment": {
"@language": "en",
"@value": "Numbering, an identifier type in a breakdown structure according to notes of BS EN 17412-1 (2020)"
},
"label": "Numbering of an item in a breakdown structure",
"term_status": "stable"
}, {
"@id": "loin:Object",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Object is a contextual aspect according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Object"
},
"subClassOf": ["_:b12", "_:b13", "_:b14", "rdfs:Resource"],
"term_status": "stable"
}, {
"@id": "loin:OntologyDataDefinition",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "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"
},
"label": {
"@language": "en",
"@value": "Ontology data definition"
},
"subClassOf": ["_:b36", "loin:InformationContent"],
"term_status": "stable"
}, {
"@id": "loin:ParametricBehaviour",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "Parametric behaviour as a geometrical information specification for information need according to BS EN 17412-1 (2020)"
},
"label": {
"@language": "en",
"@value": "Parametric behaviour"
},
"subClassOf": "loin:GeometrySpecification",
"term_status": "stable"
}, {
"@id": "loin:Pattern",
"@type": "loin:IDSRestrictionType",
"comment": {
"@language": "en",
"@value": "Pattern restriction with regex method specifies advanced pattern matching. In this ontology, it is defined as a restriction type, which specifies the restriction formulation."
},
"label": {
"@language": "en",
"@value": "Pattern restriction"
},
"term_status": "stable"
}, {
"@id": "loin:Photograph",
"@type": "loin:DocumentContent",
"comment": {