forked from RUB-Informatik-im-Bauwesen/bcom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuildingConcreteMonitoring.jsonld
More file actions
1180 lines (1180 loc) · 39.2 KB
/
BuildingConcreteMonitoring.jsonld
File metadata and controls
1180 lines (1180 loc) · 39.2 KB
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": "_:b10",
"@type": "owl:Class",
"unionOf": {
"@list": ["bcom:ConcretePlacement", "bcom:Test"]
}
}, {
"@id": "_:b12",
"@type": "owl:Class",
"unionOf": {
"@list": ["bcom:ConcretePlacement", "bcom:TestSample"]
}
}, {
"@id": "_:b13",
"@type": "foaf:Person",
"name": "Liu Liu, Ruhr University Bochum"
}, {
"@id": "_:b14",
"@type": "foaf:Person",
"name": "Philipp Hagedorn, Ruhr University Bochum"
}, {
"@id": "_:b15",
"@type": "foaf:Organization",
"name": "Chair of Computing in Engineering, Ruhr University Bochum"
}, {
"@id": "_:b2",
"@type": "rdfs:Datatype",
"owl:oneOf": {
"@list": ["Self-Inspection", "Third-Party Monitoring"]
}
}, {
"@id": "_:b7",
"@type": "rdfs:Datatype",
"owl:oneOf": {
"@list": ["Class 1", "Class 2", "Class 3"]
}
}, {
"@id": "https://w3id.org/bcom",
"@type": "owl:Ontology",
"bibliographicCitation": "https://ec-3.org/publications/conferences/2021/paper/?id=167",
"created": "2021-01-20",
"creator": ["_:b13", "_:b14"],
"description": {
"@language": "en",
"@value": "The Building Concrete Monitoring Ontology (BCOM) is defined for capturing information of concrete work, concrete curing and testing of concrete properties. Further Information on the development and usage of the Ontology can be found in the following publication: Liu et al. (2021): An ontology integrating as-built information for infrastructure asset management using BIM and semantic web. In: Proceedings of 2021 European Conference on Computing in Construction, Online eConference, URL: https://ec-3.org/publications/conferences/2021/paper/?id=167"
},
"issued": "2021-01-20",
"license": "https://creativecommons.org/licenses/by/4.0/",
"modified": "2021-07-21",
"publisher": "_:b15",
"rights": "Copyright 2021 by Chair of Computing in Engineering, Ruhr University Bochum",
"source": "https://github.com/RUB-Informatik-im-Bauwesen/bcom",
"title": {
"@language": "en",
"@value": "Building Concrete Monitoring Ontology (BCOM)"
},
"preferredNamespacePrefix": "bcom",
"preferredNamespaceUri": "https://w3id.org/bcom",
"comment": {
"@language": "en",
"@value": "-Version 0.3: with additional metadata -Version 0.2: added/changed relations between classes -Version 0.1: initial version of ontology"
},
"versionIRI": "https://w3id.org/bcom",
"versionInfo": "0.3"
}, {
"@id": "bcom:AirTemperature",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "air temperature during concreting or testing on fresh concrete in degree Celsius"
},
"domain": "_:b12",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "air temperature"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:BeginDate",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "begin date of concrete curing with format year-month-day in yyyy-mm-dd"
},
"domain": "bcom:ConcreteCuring",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "begin date"
},
"range": "xsd:date",
"term_status": "stable"
}, {
"@id": "bcom:BeginTimeOfPlacement",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "begin time of concrete placement with format hour-minute-second in hh:mm:ss"
},
"domain": "bcom:ConcreteDelivery",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "begin time"
},
"range": "xsd:time",
"term_status": "stable"
}, {
"@id": "bcom:BulkDensity",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "bulk density of fresh concrete in kg/m^3"
},
"domain": "bcom:FreshConcreteProperties",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "bulk density"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:ClassOfMonitoring",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "class of concrete monitoring according to DIN EN 13670 / DIN 1045-3 related to the properties of hardened concrete"
},
"domain": "bcom:ConcretePlacement",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "class of monitoring"
},
"range": "_:b7",
"term_status": "stable"
}, {
"@id": "bcom:ConcreteCuring",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "This class provides information about the curing process after a concrete placement."
},
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "Concrete curing"
},
"subClassOf": "owl:Thing",
"term_status": "stable"
}, {
"@id": "bcom:ConcreteDelivery",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "This class provides information about a concrete delivery."
},
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "Concrete delivery"
},
"subClassOf": "owl:Thing",
"term_status": "stable"
}, {
"@id": "bcom:ConcretePlacement",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "This class provides information about a concreting process itself."
},
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "Concrete placement"
},
"subClassOf": "owl:Thing",
"term_status": "stable"
}, {
"@id": "bcom:ConcreteTemperature",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "fresh concrete temperature during testing of properties in degree Celsius"
},
"domain": "bcom:FreshConcreteProperties",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "fresh concrete temperature"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:Condition",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "description of storage conditions"
},
"domain": "bcom:Storage",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "storage condition"
},
"range": "xsd:string",
"term_status": "stable"
}, {
"@id": "bcom:ConformityOfCompressiveStrength",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "This class provides information needed for performing and evaluating the conformity of concrete compressive strength."
},
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "Conformity testing of compressive strength"
},
"subClassOf": "bcom:Test",
"term_status": "stable"
}, {
"@id": "bcom:ConversionFactor",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "conversion factor of compressive strength testing"
},
"domain": "bcom:ConformityOfCompressiveStrength",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "conversion factor"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:DateOfConcreting",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "date of concreting with format year-month-day in yyyy-mm-dd"
},
"domain": "bcom:ConcretePlacement",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "date of concreting"
},
"range": "xsd:date",
"term_status": "stable"
}, {
"@id": "bcom:DateOfStripping",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "date of stripping with format year-month-day in yyyy-mm-dd"
},
"domain": "bcom:ConcretePlacement",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "date of stripping"
},
"range": "xsd:date",
"term_status": "stable"
}, {
"@id": "bcom:DeliversConcreteFor",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a concrete delivery to its concrete placement activity where it was used for."
},
"domain": "bcom:ConcreteDelivery",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "delivers concrete for"
},
"range": "bcom:ConcretePlacement",
"subClassOf": "owl:TopObjectProperty",
"inverseOf": "bcom:HasDelivery",
"term_status": "stable"
}, {
"@id": "bcom:DeliveryNote",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "delivery note of mixed-ready concrete"
},
"domain": "bcom:ConcreteDelivery",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "delivery note"
},
"range": "xsd:anyURI",
"term_status": "stable"
}, {
"@id": "bcom:Duration",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "duration of storage for test sample in days"
},
"domain": "bcom:Storage",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "duration"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:EndDate",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "end date of concrete curing with format year-month-day in yyyy-mm-dd"
},
"domain": "bcom:ConcreteCuring",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "end date"
},
"range": "xsd:date",
"term_status": "stable"
}, {
"@id": "bcom:EndTimeOfPlacement",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "end time of concrete placement with format hour-minute-second in hh:mm:ss"
},
"domain": "bcom:ConcreteDelivery",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "end time of placement"
},
"range": "xsd:time",
"term_status": "stable"
}, {
"@id": "bcom:EvaluationOfTest",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "evaluation of the mean value of the test in N/mm^2"
},
"domain": "bcom:ConformityOfCompressiveStrength",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "evaluation of test"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:FinalCompressiveStrength",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "result of the compressive strength of the respective test sample under consideration of the conversion factor in N/mm^2"
},
"domain": "bcom:ConformityOfCompressiveStrength",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "final compressive strength"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:FreshConcreteProperties",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "This class represents a group of fresh concrete properties. A fresh concrete propertyset object will usually contain density, voids ratio, consistency."
},
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "Fresh concrete properties"
},
"subClassOf": "bcom:Test",
"term_status": "stable"
}, {
"@id": "bcom:FreshConcreteTemperature",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "fresh concrete temperature before concrete placement in degree Celsius"
},
"domain": "bcom:ConcretePlacement",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "fresh concrete temperature"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:HasConcretePlacement",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a concrete curing process to its concrete placement activity."
},
"domain": "bcom:ConcreteCuring",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "has concrete placement"
},
"range": "bcom:ConcretePlacement",
"subClassOf": "owl:TopObjectProperty",
"inverseOf": "bcom:HasCuring",
"term_status": "stable"
}, {
"@id": "bcom:HasCuring",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a concrete placement activity to its curing process."
},
"domain": "bcom:ConcretePlacement",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "has curing"
},
"range": "bcom:ConcreteCuring",
"inverseOf": "bcom:HasConcretePlacement",
"term_status": "stable"
}, {
"@id": "bcom:HasDelivery",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a concrete placement activity to its concrete delivery providing the used concrete."
},
"domain": "bcom:ConcretePlacement",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "has delivery"
},
"range": "bcom:ConcreteDelivery",
"inverseOf": "bcom:SuppliesConcreteTo",
"term_status": "stable"
}, {
"@id": "bcom:HasStorage",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a concrete test sample to its storage details."
},
"domain": "bcom:TestSample",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "has storage"
},
"range": "bcom:Storage",
"inverseOf": "bcom:StoresSample",
"term_status": "stable"
}, {
"@id": "bcom:HasSupplier",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a concrete delivery to its supplier."
},
"domain": "bcom:ConcreteDelivery",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "has supplier"
},
"range": "vcard:Organization",
"inverseOf": "bcom:SuppliesConcreteTo",
"term_status": "stable"
}, {
"@id": "bcom:HasTest",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a concrete placement activity to its test procedure."
},
"domain": "bcom:ConcretePlacement",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "has test"
},
"range": "bcom:Test",
"inverseOf": "bcom:IsTestOf",
"term_status": "stable"
}, {
"@id": "bcom:HasTestOrganisation",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a test procedure to its organization which is performing the test."
},
"domain": "bcom:Test",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "has test organisation"
},
"range": "vcard:Organization",
"inverseOf": "bcom:IsTestOrganisationOf",
"term_status": "stable"
}, {
"@id": "bcom:HasTestPerson",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a test procedure to its person who is performing the test."
},
"domain": "bcom:Test",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "has test person"
},
"range": "vcard:Individual",
"inverseOf": "bcom:IsTestPersonOf",
"term_status": "stable"
}, {
"@id": "bcom:HasTestSample",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a test procedure to its test samples tested within this procedure."
},
"domain": "bcom:Test",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "has test sample"
},
"range": "bcom:TestSample",
"inverseOf": "bcom:IsTestSampleOf",
"term_status": "stable"
}, {
"@id": "bcom:Height",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "height of a test sample as cube or as cylinder in mm"
},
"domain": "bcom:TestSample",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "height"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:Humidity",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "relative humidity of storage condition in %"
},
"domain": "bcom:Storage",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "humidity"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:InterimCompressiveStrength",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "intermediate result of the compressive strength of the respective sample without conversion factor of in N/mm^2"
},
"domain": "bcom:ConformityOfCompressiveStrength",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "intermediate compressive strength"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:IsTestOf",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a test procedure to its concrete placement activity whithin its test samples have been concreted."
},
"domain": "bcom:Test",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "is test of"
},
"range": "bcom:ConcretePlacement",
"inverseOf": "bcom:HasTest",
"term_status": "stable"
}, {
"@id": "bcom:IsTestOrganisationOf",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links an organization to its test procedures that have been performed by itself."
},
"domain": "vcard:Organization",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "is test organisation of"
},
"range": "bcom:Test",
"subClassOf": "owl:TopObjectProperty",
"inverseOf": "bcom:HasTestOrganisation",
"term_status": "stable"
}, {
"@id": "bcom:IsTestPersonOf",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a test examining person to its test procedures that have been performed by itslef."
},
"domain": "vcard:Individual",
"isDefinedBy": "https://w3id.org/bcom#",
"label": "is test person of",
"range": "bcom:Test",
"inverseOf": "bcom:HasTestPerson",
"term_status": "stable"
}, {
"@id": "bcom:IsTestSampleOf",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links a test sample to its test procedure within which it has been tested."
},
"domain": "bcom:TestSample",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "is test sample of"
},
"range": "bcom:Test",
"inverseOf": "bcom:HasTestSample",
"term_status": "stable"
}, {
"@id": "bcom:Length",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "length of a test sample for cubes in mm"
},
"domain": "bcom:TestSample",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "length"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:MaturityOfConcrete",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "maturity of concrete in minutes"
},
"domain": "bcom:FreshConcreteProperties",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "maturity of concrete"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:MaxAirTemperature",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "maximum air temperature during post-treatment in degree Celsius"
},
"domain": "bcom:ConcreteCuring",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "max air temperature"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:MethodOfAftertreatment",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "description for the method of concrete curing"
},
"domain": "bcom:ConcreteCuring",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "method of aftertreatment"
},
"range": "xsd:string",
"term_status": "stable"
}, {
"@id": "bcom:MinAirTemperature",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "minimum air temperature during post-treatment in degree Celsius"
},
"domain": "bcom:ConcreteCuring",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "min air temperature"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:NormativeReference",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "norm or standard of the test method"
},
"domain": "bcom:ConformityOfCompressiveStrength",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "normative reference"
},
"range": "xsd:string",
"term_status": "stable"
}, {
"@id": "bcom:ObjectTemperature",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "object temperature of a test sample in degree Celsius"
},
"domain": "bcom:TestSample",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "object temperature"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:QuantityOfConcrete",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "quantity of the concrete placement in cubature m^3"
},
"domain": "bcom:ConcretePlacement",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "quantity of concrete"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:RateOfFlowTableTest",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "rate of flow table test according to DIN EN 12350-5 in mm"
},
"domain": "bcom:FreshConcreteProperties",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "rate of flow table test"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:SampleID",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "name or ID of the test sample"
},
"domain": "bcom:TestSample",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "sample ID"
},
"range": "xsd:string",
"term_status": "stable"
}, {
"@id": "bcom:SamplingDate",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "date of sampling with format year-month-day in yyyy-mm-dd"
},
"domain": "bcom:TestSample",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "sampling date"
},
"range": "xsd:date",
"term_status": "stable"
}, {
"@id": "bcom:Storage",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "This class represents the storage conditions of a test sample."
},
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "Storage"
},
"subClassOf": "owl:Thing",
"term_status": "stable"
}, {
"@id": "bcom:StoresSample",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links storage details to its test samples that has been stored under the specific storage conditions."
},
"domain": "bcom:Storage",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "stores sample"
},
"range": "bcom:TestSample",
"inverseOf": "bcom:HasStorage",
"term_status": "stable"
}, {
"@id": "bcom:SuppliesConcreteTo",
"@type": "owl:ObjectProperty",
"comment": {
"@language": "en",
"@value": "This property links an organization to its concrete placement activities where it delivered concrete for."
},
"domain": "vcard:Organization",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "supplies concrete to"
},
"range": "bcom:ConcretePlacement",
"subClassOf": "owl:TopObjectProperty",
"inverseOf": "bcom:HasSupplier",
"term_status": "stable"
}, {
"@id": "bcom:Temperature",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "storage temperature in degree Celsius"
},
"domain": "bcom:Storage",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "temperature"
},
"range": "xsd:decimal",
"term_status": "stable"
}, {
"@id": "bcom:Test",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "This class represents the super-class for different types of tests, that can be performed on placed concrete."
},
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "Test"
},
"subClassOf": "owl:Thing",
"term_status": "stable"
}, {
"@id": "bcom:TestCharacteristic",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "the material property that has to be tested"
},
"domain": "bcom:ConformityOfCompressiveStrength",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "tested characteristic"
},
"range": "xsd:string",
"term_status": "stable"
}, {
"@id": "bcom:TestDate",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "date of testing with format year-month-day in yyyy-mm-dd"
},
"domain": "bcom:Test",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "test date"
},
"range": "xsd:date",
"term_status": "stable"
}, {
"@id": "bcom:TestReport",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "report of conformity test of concrete"
},
"domain": "bcom:Test",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "test report"
},
"range": "xsd:anyURI",
"term_status": "stable"
}, {
"@id": "bcom:TestSample",
"@type": "owl:Class",
"comment": {
"@language": "en",
"@value": "This class provides information about test samples."
},
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "Test sample"
},
"subClassOf": "owl:Thing",
"term_status": "stable"
}, {
"@id": "bcom:TestTime",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "time of testing with format hour-minute-second in hh:mm:ss"
},
"domain": "bcom:Test",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "test time"
},
"range": "xsd:time",
"term_status": "stable"
}, {
"@id": "bcom:TestType",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "type of test as self-inspection or third-party monitoring"
},
"domain": "_:b10",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",
"@value": "test type"
},
"range": "_:b2",
"term_status": "stable"
}, {
"@id": "bcom:TestedBreakingLoad",
"@type": "owl:DatatypeProperty",
"comment": {
"@language": "en",
"@value": "value of breaking load of test procedure in N"
},
"domain": "bcom:ConformityOfCompressiveStrength",
"isDefinedBy": "https://w3id.org/bcom#",
"label": {
"@language": "en",