-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrdo.nt
More file actions
1692 lines (1692 loc) · 158 KB
/
rdo.nt
File metadata and controls
1692 lines (1692 loc) · 158 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
<https://w3id.org/rdo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Ontology> .
<https://w3id.org/rdo> <http://www.w3.org/2002/07/owl#versionIRI> <https://w3id.org/rdo/0.5> .
<https://w3id.org/rdo> <http://www.w3.org/2002/07/owl#imports> <http://purl.org/spar/foaf> .
<https://w3id.org/rdo> <http://www.w3.org/2002/07/owl#imports> <https://pi.pauwel.be/voc/buildingelement> .
<https://w3id.org/rdo> <http://www.w3.org/2002/07/owl#imports> <https://w3id.org/dot/0.8> .
<https://w3id.org/rdo> <http://purl.org/dc/elements/1.1/publisher> "Cyberbuild, University of Edinburgh" .
<https://w3id.org/rdo> <http://purl.org/dc/terms/created> "2026-02-06"^^<http://www.w3.org/2000/01/rdf-schema#Literal> .
<https://w3id.org/rdo> <http://purl.org/dc/terms/creator> "Frederic Bosche, University of Edinburgh" .
<https://w3id.org/rdo> <http://purl.org/dc/terms/creator> "Jiajun Li, University of Edinburgh" .
<https://w3id.org/rdo> <http://purl.org/dc/terms/license> "https://creativecommons.org/licenses/by/4.0/" .
<https://w3id.org/rdo> <http://purl.org/dc/terms/title> "Roof Damage Ontology" .
<https://w3id.org/rdo> <http://purl.org/vocab/vann/preferredNamespacePrefix> "rdo" .
<https://w3id.org/rdo> <http://purl.org/vocab/vann/preferredNamespaceUri> "https://w3id.org/rdo#" .
<https://w3id.org/rdo> <http://www.w3.org/2000/01/rdf-schema#comment> "This ontology provides a semantic framework for representing roof condition inspection information, including roofs and roof pitches, inspections, orthophotos, and image-derived defect observations. It is designed to support structured documentation, querying, and interoperability within digital twin–based workflows for roof condition monitoring and maintenance, particularly in the context of existing and heritage buildings." .
<https://w3id.org/rdo> <http://www.w3.org/2000/01/rdf-schema#comment> "This ontology was developed with support from Historic Environment Scotland (HES) and the Engineering and Physical Sciences Research Council (EPSRC), and informed by collaboration with domain experts in heritage roof inspection and maintenance." .
<https://w3id.org/rdo> <http://www.w3.org/2002/07/owl#versionInfo> "0.5"^^<http://www.w3.org/2001/XMLSchema#decimal> .
#
#
# #################################################################
# #
# # Annotation properties
# #
# #################################################################
#
#
# http://purl.org/dc/dcam/domainIncludes
<http://purl.org/dc/dcam/domainIncludes> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/dcam/rangeIncludes
<http://purl.org/dc/dcam/rangeIncludes> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/contributor
<http://purl.org/dc/elements/1.1/contributor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/coverage
<http://purl.org/dc/elements/1.1/coverage> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/creator
<http://purl.org/dc/elements/1.1/creator> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/date
<http://purl.org/dc/elements/1.1/date> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/format
<http://purl.org/dc/elements/1.1/format> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/identifier
<http://purl.org/dc/elements/1.1/identifier> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/language
<http://purl.org/dc/elements/1.1/language> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/publisher
<http://purl.org/dc/elements/1.1/publisher> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/relation
<http://purl.org/dc/elements/1.1/relation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/rights
<http://purl.org/dc/elements/1.1/rights> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/source
<http://purl.org/dc/elements/1.1/source> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/subject
<http://purl.org/dc/elements/1.1/subject> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/elements/1.1/type
<http://purl.org/dc/elements/1.1/type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/terms/abstract
<http://purl.org/dc/terms/abstract> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/abstract> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/description> .
<http://purl.org/dc/terms/abstract> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/description> .
#
# http://purl.org/dc/terms/accessRights
<http://purl.org/dc/terms/accessRights> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/accessRights> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/rights> .
<http://purl.org/dc/terms/accessRights> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/rights> .
#
# http://purl.org/dc/terms/accrualMethod
<http://purl.org/dc/terms/accrualMethod> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/accrualMethod> <http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/dc/dcmitype/Collection> .
#
# http://purl.org/dc/terms/accrualPeriodicity
<http://purl.org/dc/terms/accrualPeriodicity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/accrualPeriodicity> <http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/dc/dcmitype/Collection> .
#
# http://purl.org/dc/terms/accrualPolicy
<http://purl.org/dc/terms/accrualPolicy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/accrualPolicy> <http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/dc/dcmitype/Collection> .
#
# http://purl.org/dc/terms/alternative
<http://purl.org/dc/terms/alternative> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/alternative> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/title> .
#
# http://purl.org/dc/terms/audience
<http://purl.org/dc/terms/audience> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://purl.org/dc/terms/available
<http://purl.org/dc/terms/available> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/available> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/date> .
#
# http://purl.org/dc/terms/bibliographicCitation
<http://purl.org/dc/terms/bibliographicCitation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/bibliographicCitation> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/identifier> .
#
# http://purl.org/dc/terms/conformsTo
<http://purl.org/dc/terms/conformsTo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/conformsTo> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/conformsTo> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/contributor
<http://purl.org/dc/terms/contributor> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/contributor> .
#
# http://purl.org/dc/terms/coverage
<http://purl.org/dc/terms/coverage> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/coverage> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/coverage> .
#
# http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/created> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/date> .
#
# http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/creator> .
<http://purl.org/dc/terms/creator> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/contributor> .
#
# http://purl.org/dc/terms/date
<http://purl.org/dc/terms/date> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/date> .
#
# http://purl.org/dc/terms/dateAccepted
<http://purl.org/dc/terms/dateAccepted> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/dateAccepted> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/date> .
#
# http://purl.org/dc/terms/dateCopyrighted
<http://purl.org/dc/terms/dateCopyrighted> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/dateCopyrighted> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/date> .
#
# http://purl.org/dc/terms/dateSubmitted
<http://purl.org/dc/terms/dateSubmitted> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/dateSubmitted> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/date> .
#
# http://purl.org/dc/terms/description
<http://purl.org/dc/terms/description> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/description> .
#
# http://purl.org/dc/terms/educationLevel
<http://purl.org/dc/terms/educationLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/educationLevel> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/audience> .
#
# http://purl.org/dc/terms/extent
<http://purl.org/dc/terms/extent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/extent> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/format> .
<http://purl.org/dc/terms/extent> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/format> .
#
# http://purl.org/dc/terms/format
<http://purl.org/dc/terms/format> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/format> .
#
# http://purl.org/dc/terms/hasFormat
<http://purl.org/dc/terms/hasFormat> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/hasFormat> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/hasFormat> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/hasPart
<http://purl.org/dc/terms/hasPart> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/hasPart> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/hasPart> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/hasVersion
<http://purl.org/dc/terms/hasVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/hasVersion> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/hasVersion> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/identifier
<http://purl.org/dc/terms/identifier> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/identifier> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/identifier> .
#
# http://purl.org/dc/terms/isFormatOf
<http://purl.org/dc/terms/isFormatOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/isFormatOf> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/isFormatOf> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/isPartOf
<http://purl.org/dc/terms/isPartOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/isPartOf> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/isPartOf> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/isReferencedBy
<http://purl.org/dc/terms/isReferencedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/isReferencedBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/isReferencedBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/isReplacedBy
<http://purl.org/dc/terms/isReplacedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/isReplacedBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/isReplacedBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/isRequiredBy
<http://purl.org/dc/terms/isRequiredBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/isRequiredBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/isRequiredBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/isVersionOf
<http://purl.org/dc/terms/isVersionOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/isVersionOf> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/isVersionOf> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/issued
<http://purl.org/dc/terms/issued> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/date> .
#
# http://purl.org/dc/terms/language
<http://purl.org/dc/terms/language> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/language> .
#
# http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/rights> .
<http://purl.org/dc/terms/license> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/rights> .
#
# http://purl.org/dc/terms/mediator
<http://purl.org/dc/terms/mediator> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/mediator> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/audience> .
#
# http://purl.org/dc/terms/medium
<http://purl.org/dc/terms/medium> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/medium> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/format> .
<http://purl.org/dc/terms/medium> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/format> .
#
# http://purl.org/dc/terms/modified
<http://purl.org/dc/terms/modified> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/date> .
#
# http://purl.org/dc/terms/publisher
<http://purl.org/dc/terms/publisher> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/publisher> .
#
# http://purl.org/dc/terms/references
<http://purl.org/dc/terms/references> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/references> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/references> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/relation
<http://purl.org/dc/terms/relation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/relation> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
#
# http://purl.org/dc/terms/replaces
<http://purl.org/dc/terms/replaces> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/replaces> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/replaces> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/requires
<http://purl.org/dc/terms/requires> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/requires> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/relation> .
<http://purl.org/dc/terms/requires> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/rights
<http://purl.org/dc/terms/rights> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/rights> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/rights> .
#
# http://purl.org/dc/terms/source
<http://purl.org/dc/terms/source> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/source> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/source> .
<http://purl.org/dc/terms/source> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation> .
#
# http://purl.org/dc/terms/spatial
<http://purl.org/dc/terms/spatial> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/spatial> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/coverage> .
<http://purl.org/dc/terms/spatial> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/coverage> .
#
# http://purl.org/dc/terms/subject
<http://purl.org/dc/terms/subject> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/subject> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/subject> .
#
# http://purl.org/dc/terms/tableOfContents
<http://purl.org/dc/terms/tableOfContents> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/tableOfContents> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/description> .
<http://purl.org/dc/terms/tableOfContents> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/description> .
#
# http://purl.org/dc/terms/temporal
<http://purl.org/dc/terms/temporal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/temporal> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/coverage> .
<http://purl.org/dc/terms/temporal> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/coverage> .
#
# http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/title> .
#
# http://purl.org/dc/terms/type
<http://purl.org/dc/terms/type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/type> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/type> .
#
# http://purl.org/dc/terms/valid
<http://purl.org/dc/terms/valid> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/valid> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/elements/1.1/date> .
#
# http://purl.org/vocab/vann/example
<http://purl.org/vocab/vann/example> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://schema.org/#domainIncludes
<http://schema.org/#domainIncludes> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
#
#
# #################################################################
# #
# # Datatypes
# #
# #################################################################
#
#
# http://purl.org/dc/terms/Box
<http://purl.org/dc/terms/Box> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
# http://purl.org/dc/terms/ISO3166
<http://purl.org/dc/terms/ISO3166> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
# http://purl.org/dc/terms/ISO639-2
<http://purl.org/dc/terms/ISO639-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
# http://purl.org/dc/terms/ISO639-3
<http://purl.org/dc/terms/ISO639-3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
# http://purl.org/dc/terms/Period
<http://purl.org/dc/terms/Period> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
# http://purl.org/dc/terms/Point
<http://purl.org/dc/terms/Point> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
# http://purl.org/dc/terms/RFC1766
<http://purl.org/dc/terms/RFC1766> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
# http://purl.org/dc/terms/RFC3066
<http://purl.org/dc/terms/RFC3066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
# http://purl.org/dc/terms/RFC4646
<http://purl.org/dc/terms/RFC4646> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
# http://purl.org/dc/terms/RFC5646
<http://purl.org/dc/terms/RFC5646> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
# http://purl.org/dc/terms/URI
<http://purl.org/dc/terms/URI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
# http://purl.org/dc/terms/W3CDTF
<http://purl.org/dc/terms/W3CDTF> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
# http://www.w3.org/2001/XMLSchema#date
<http://www.w3.org/2001/XMLSchema#date> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> .
#
#
#
# #################################################################
# #
# # Object Properties
# #
# #################################################################
#
#
# http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk
<http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk> <http://www.w3.org/2002/07/owl#inverseOf> <urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto> .
<http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk> <http://www.w3.org/2000/01/rdf-schema#domain> <https://pi.pauwel.be/voc/buildingelement#Roof> .
<http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk> <http://www.w3.org/2000/01/rdf-schema#range> <http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu> .
<http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk> <http://www.w3.org/2000/01/rdf-schema#comment> "Represents a part–whole relationship where a roof consists of one or more pitches.\nConceptually aligned with standard part–whole relations (e.g. BFO:has_part), without importing upper-level ontologies." .
<http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk> <http://www.w3.org/2000/01/rdf-schema#label> "has Pitch" .
#
# https://w3id.org/dot#documentationFromInspection
<https://w3id.org/dot#documentationFromInspection> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://w3id.org/dot#documentationFromInspection> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#Documentation> .
<https://w3id.org/dot#Documentation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://w3id.org/dot#documentationFromInspection> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/dot#Inspection> .
<https://w3id.org/dot#Inspection> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# https://w3id.org/rdo#HasAppearance
<https://w3id.org/rdo#HasAppearance> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://w3id.org/rdo#HasAppearance> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/rdo#is_Inspection_Observation_Of> .
<https://w3id.org/rdo#HasAppearance> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#Damage> .
<https://w3id.org/dot#Damage> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://w3id.org/rdo#HasAppearance> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/rdo#Damage_Inspection_Observation> .
<https://w3id.org/rdo#HasAppearance> <http://www.w3.org/2000/01/rdf-schema#comment> "Relationship between a damage presence and the corresponding inspection observation." .
<https://w3id.org/rdo#HasAppearance> <http://www.w3.org/2000/01/rdf-schema#label> "has Inspection Observation" .
#
# https://w3id.org/rdo#Is_Composed_Of
<https://w3id.org/rdo#Is_Composed_Of> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://w3id.org/rdo#Is_Composed_Of> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#Damage> .
<https://w3id.org/rdo#Is_Composed_Of> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/dot#Damage> .
<https://w3id.org/rdo#Is_Composed_Of> <http://www.w3.org/2000/01/rdf-schema#comment> "Relationship between classified damage instances forming a composite classified damage." .
<https://w3id.org/rdo#Is_Composed_Of> <http://www.w3.org/2000/01/rdf-schema#label> "is Composed Of" .
#
# https://w3id.org/rdo#affect_Product
<https://w3id.org/rdo#affect_Product> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://w3id.org/rdo#affect_Product> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#Damage> .
<https://w3id.org/rdo#affect_Product> <http://www.w3.org/2000/01/rdf-schema#range> <https://schema.org/Product> .
<https://w3id.org/rdo#affect_Product> <http://www.w3.org/2000/01/rdf-schema#comment> "Relationship between a damage and the product it affects." .
<https://w3id.org/rdo#affect_Product> <http://www.w3.org/2000/01/rdf-schema#label> "affects Product" .
#
# https://w3id.org/rdo#has_Damage_Observation_Location
<https://w3id.org/rdo#has_Damage_Observation_Location> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://w3id.org/rdo#has_Damage_Observation_Location> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/rdo#has_Image> .
<https://w3id.org/rdo#has_Damage_Observation_Location> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/rdo#Image> .
<https://w3id.org/rdo#has_Damage_Observation_Location> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/rdo#Damage_Image_Location> .
<https://w3id.org/rdo#has_Damage_Observation_Location> <http://www.w3.org/2000/01/rdf-schema#comment> "Relationship between an Image and one or more Damage Observation Image Locations recorded within that image.\nThis property is the inverse of has Image and enables queries from an image to the damage observation locations it contains." .
<https://w3id.org/rdo#has_Damage_Observation_Location> <http://www.w3.org/2000/01/rdf-schema#label> "has Damage Observation Location" .
#
# https://w3id.org/rdo#has_Image
<https://w3id.org/rdo#has_Image> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://w3id.org/rdo#has_Image> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/rdo#Damage_Image_Location> .
<https://w3id.org/rdo#has_Image> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/rdo#Image> .
<https://w3id.org/rdo#has_Image> <http://www.w3.org/2000/01/rdf-schema#comment> "Relationship between a damage image location and the corresponding image." .
<https://w3id.org/rdo#has_Image> <http://www.w3.org/2000/01/rdf-schema#label> "has Image" .
#
# https://w3id.org/rdo#has_Location_in
<https://w3id.org/rdo#has_Location_in> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://w3id.org/rdo#has_Location_in> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/rdo#locates_Damage> .
<https://w3id.org/rdo#has_Location_in> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/rdo#Damage_Inspection_Observation> .
<https://w3id.org/rdo#has_Location_in> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/rdo#Damage_Image_Location> .
<https://w3id.org/rdo#has_Location_in> <http://www.w3.org/2000/01/rdf-schema#comment> "Links a Damage Inspection Observation to the corresponding Damage Observation Image Location where it is spatially located within visual documentation.\nThis property is the inverse of locates and enables queries from inspection observations to their associated image locations." .
<https://w3id.org/rdo#has_Location_in> <http://www.w3.org/2000/01/rdf-schema#label> "has Location In" .
#
# https://w3id.org/rdo#is_Inspection_Observation_Of
<https://w3id.org/rdo#is_Inspection_Observation_Of> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://w3id.org/rdo#is_Inspection_Observation_Of> <http://www.w3.org/2000/01/rdf-schema#comment> "Relationship between an inspection observation and the corresponding damage entity" .
<https://w3id.org/rdo#is_Inspection_Observation_Of> <http://www.w3.org/2000/01/rdf-schema#label> "is Inspection Observation Of" .
#
# https://w3id.org/rdo#locates_Damage
<https://w3id.org/rdo#locates_Damage> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://w3id.org/rdo#locates_Damage> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/rdo#Damage_Image_Location> .
<https://w3id.org/rdo#locates_Damage> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/rdo#Damage_Inspection_Observation> .
<https://w3id.org/rdo#locates_Damage> <http://www.w3.org/2000/01/rdf-schema#comment> "Represents the relationship between a damage image location (e.g. a region on an orthophoto) and the damage inspection observation it refers to.\nThis allows a detected damage observed during an inspection to be spatially located within visual documentation." .
<https://w3id.org/rdo#locates_Damage> <http://www.w3.org/2000/01/rdf-schema#label> "locates" .
#
# urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto
<urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto> <http://www.w3.org/2000/01/rdf-schema#domain> <http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu> .
<urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto> <http://www.w3.org/2000/01/rdf-schema#range> <https://pi.pauwel.be/voc/buildingelement#Roof> .
<urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto> <http://www.w3.org/2000/01/rdf-schema#comment> "Relationship between a pitch and the roof it belongs to." .
<urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto> <http://www.w3.org/2000/01/rdf-schema#label> "is Pitch Of" .
#
#
#
# #################################################################
# #
# # Data properties
# #
# #################################################################
#
#
# http://purl.org/dc/terms/alternative
<http://purl.org/dc/terms/alternative> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/alternative> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/title> .
<http://purl.org/dc/terms/title> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/alternative> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://purl.org/dc/terms/available
<http://purl.org/dc/terms/available> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/available> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/date> .
<http://purl.org/dc/terms/available> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://purl.org/dc/terms/bibliographicCitation
<http://purl.org/dc/terms/bibliographicCitation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/bibliographicCitation> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/identifier> .
<http://purl.org/dc/terms/identifier> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/bibliographicCitation> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/created> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/date> .
<http://purl.org/dc/terms/created> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://purl.org/dc/terms/date
<http://purl.org/dc/terms/date> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/date> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#Inspection> .
<http://purl.org/dc/terms/date> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://purl.org/dc/terms/dateAccepted
<http://purl.org/dc/terms/dateAccepted> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/dateAccepted> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/date> .
<http://purl.org/dc/terms/dateAccepted> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://purl.org/dc/terms/dateCopyrighted
<http://purl.org/dc/terms/dateCopyrighted> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/dateCopyrighted> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/date> .
<http://purl.org/dc/terms/dateCopyrighted> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://purl.org/dc/terms/dateSubmitted
<http://purl.org/dc/terms/dateSubmitted> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/dateSubmitted> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/date> .
<http://purl.org/dc/terms/dateSubmitted> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://purl.org/dc/terms/identifier
<http://purl.org/dc/terms/identifier> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://purl.org/dc/terms/issued
<http://purl.org/dc/terms/issued> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/issued> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/date> .
<http://purl.org/dc/terms/issued> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://purl.org/dc/terms/modified
<http://purl.org/dc/terms/modified> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/modified> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/date> .
<http://purl.org/dc/terms/modified> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://purl.org/dc/terms/valid
<http://purl.org/dc/terms/valid> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://purl.org/dc/terms/valid> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/date> .
<http://purl.org/dc/terms/valid> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
#
# http://webprotege.stanford.edu/RB3bxfNs0KGdXacZxMLhjzb
<http://webprotege.stanford.edu/RB3bxfNs0KGdXacZxMLhjzb> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://webprotege.stanford.edu/RB3bxfNs0KGdXacZxMLhjzb> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topDataProperty> .
<http://webprotege.stanford.edu/RB3bxfNs0KGdXacZxMLhjzb> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#Damage> .
<http://webprotege.stanford.edu/RB3bxfNs0KGdXacZxMLhjzb> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#decimal> .
<http://webprotege.stanford.edu/RB3bxfNs0KGdXacZxMLhjzb> <http://www.w3.org/2000/01/rdf-schema#comment> "The confidence associated with an observation or assessment of a damage." .
<http://webprotege.stanford.edu/RB3bxfNs0KGdXacZxMLhjzb> <http://www.w3.org/2000/01/rdf-schema#label> "confidence" .
#
# http://xmlns.com/foaf/0.1/name
<http://xmlns.com/foaf/0.1/name> <http://www.w3.org/2000/01/rdf-schema#domain> <http://xmlns.com/foaf/0.1/Person> .
<http://xmlns.com/foaf/0.1/name> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
#
# https://w3id.org/rdo#Caveat
<https://w3id.org/rdo#Caveat> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#Caveat> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#Inspection> .
<https://w3id.org/rdo#Caveat> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#Caveat> <http://www.w3.org/2000/01/rdf-schema#comment> "Specifies how inspection data were acquired, describing the data acquisition method used during an inspection (e.g. UAV-based photogrammetry, ground-based visual inspection, handheld photography, or mixed approaches). This property supports interpretation of inspection outcomes by making data provenance explicit." .
<https://w3id.org/rdo#Caveat> <http://www.w3.org/2000/01/rdf-schema#label> "data acquisition type" .
#
# https://w3id.org/rdo#analysis_type
<https://w3id.org/rdo#analysis_type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#analysis_type> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#Inspection> .
<https://w3id.org/rdo#analysis_type> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#analysis_type> <http://www.w3.org/2000/01/rdf-schema#comment> "Specifies the type of analysis applied to inspection data, such as AI-assisted image analysis, manual expert assessment, or hybrid approaches. This property clarifies how inspection findings and defect classifications were produced, and helps to make potential limitations of the inspection results explicit." .
<https://w3id.org/rdo#analysis_type> <http://www.w3.org/2000/01/rdf-schema#label> "analysis type" .
#
# https://w3id.org/rdo#environmental_context
<https://w3id.org/rdo#environmental_context> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#environmental_context> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topDataProperty> .
<https://w3id.org/rdo#environmental_context> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#Inspection> .
<https://w3id.org/rdo#environmental_context> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#environmental_context> <http://www.w3.org/2000/01/rdf-schema#comment> "Describes the environmental conditions surrounding the building or present at the time of inspection that may influence moisture behaviour, surface visibility, and deterioration processes. Where more detailed environmental information is required, this property may be aligned with external weather or climate ontologies (e.g., https://bimerr.iot.linkeddata.es/def/weather/) to enable richer and time-specific representations." .
<https://w3id.org/rdo#environmental_context> <http://www.w3.org/2000/01/rdf-schema#label> "environmental context" .
#
# https://w3id.org/rdo#exposure_level
<https://w3id.org/rdo#exposure_level> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#exposure_level> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topDataProperty> .
<https://w3id.org/rdo#exposure_level> <http://www.w3.org/2000/01/rdf-schema#domain> <http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu> .
<https://w3id.org/rdo#exposure_level> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#exposure_level> <http://www.w3.org/2000/01/rdf-schema#comment> "Characterises the degree to which a pitch is exposed to weathering forces (e.g., sheltered or exposed). Exposure level influences the likelihood of wind-driven rain penetration, accelerated weathering of materials, and deterioration at junctions, but does not alone determine the presence or severity of defects." .
<https://w3id.org/rdo#exposure_level> <http://www.w3.org/2000/01/rdf-schema#label> "exposure level" .
#
# https://w3id.org/rdo#hasConditionLevel
<https://w3id.org/rdo#hasConditionLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#hasConditionLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
<https://w3id.org/rdo#hasConditionLevel> <http://www.w3.org/2000/01/rdf-schema#domain> <https://schema.org/Product> .
<https://w3id.org/rdo#hasConditionLevel> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#hasConditionLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "Represents the assessed condition rating of a building element (e.g., roof or roof pitch), derived from visual inspection and used to indicate the severity of deterioration and the urgency of maintenance or repair. \nThe value typically follows standardised building survey rating systems, such as the RICS Condition Ratings (1–3, traffic light system) or equivalent condition indices (e.g., numerical scales indicating maintenance, restoration, or replacement needs)." .
<https://w3id.org/rdo#hasConditionLevel> <http://www.w3.org/2000/01/rdf-schema#label> "condition level" .
#
# https://w3id.org/rdo#hasDefectType
<https://w3id.org/rdo#hasDefectType> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#hasDefectType> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#ClassifiedDamage> .
<https://w3id.org/dot#ClassifiedDamage> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://w3id.org/rdo#hasDefectType> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#hasDefectType> <http://www.w3.org/2000/01/rdf-schema#comment> "This data property specifies the type of defect identified for a Classified Damage during roof inspection.\n\nThe defect types are expressed as descriptive values rather than modelled as individuals. They reflect inspection outcomes and expert interpretation.\n\nTypical defect types include:\n\nSlate Biological Growth (subclass of Classified Damage):\n– algae: thin biological growth typically associated with surface moisture and damp environmental conditions;\n– lichen: slow-growing biological organisms indicating long-term environmental exposure;\n– moss: thicker biological growth that retains moisture and may contribute to accelerated material deterioration.\n\nSlate Structural Defect (subclass of Classified Damage):\n– broken slate: cracked or fractured slate that may allow water penetration;\n– displaced slate: slate that has moved from its original position, potentially compromising weather tightness;\n– missing slate: complete absence of a slate, directly exposing underlying roof layers.\n\nThe listed defect types are illustrative and not intended to form an exhaustive taxonomy." .
<https://w3id.org/rdo#hasDefectType> <http://www.w3.org/2000/01/rdf-schema#label> "Defect type" .
#
# https://w3id.org/rdo#hasRepairStatus
<https://w3id.org/rdo#hasRepairStatus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#hasRepairStatus> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#ClassifiedDamage> .
<https://w3id.org/rdo#hasRepairStatus> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#hasRepairStatus> <http://www.w3.org/2000/01/rdf-schema#comment> "Represents the observed or inferred repair status of a damage instance relative to the latest available inspection results, and where applicable, comparisons across multiple inspections.\n\nThe status reflects the current observation-based interpretation and does not necessarily indicate the existence of an explicit repair record.\n\nTypical values include:\n\n- \"active\": The damage is explicitly detected and confirmed to be present in the latest inspection.\n- \"not_observed\": The damage is not detected in the latest inspection. This does not imply that the damage has been repaired, as the absence may be due to occlusion, limited visibility, data quality issues, or detection uncertainty.\n- \"likely_repaired\": Based on comparisons across multiple inspections, there is strong observational evidence suggesting that the damage may have been repaired; however, no explicit repair record or confirmation is available.\n- \"confirmed_repaired\": The damage is considered repaired based on explicit confirmation, such as a repair record, maintenance documentation, or expert validation. This status indicates recorded confirmation rather than purely observation-based inference." .
<https://w3id.org/rdo#hasRepairStatus> <http://www.w3.org/2000/01/rdf-schema#label> "repair status" .
#
# https://w3id.org/rdo#hasResolution
<https://w3id.org/rdo#hasResolution> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#hasResolution> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/rdo#Image> .
<https://w3id.org/rdo#hasResolution> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#decimal> .
<https://w3id.org/rdo#hasResolution> <http://www.w3.org/2000/01/rdf-schema#comment> "The resolution of the orthophoto, representing the size of each pixel in meters. For example, a value of \"0.005\" means each pixel represents 5mm by 5mm." .
<https://w3id.org/rdo#hasResolution> <http://www.w3.org/2000/01/rdf-schema#label> "resolution" .
#
# https://w3id.org/rdo#hasX
<https://w3id.org/rdo#hasX> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#hasX> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#Damage> .
<https://w3id.org/rdo#hasX> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#hasX> <http://www.w3.org/2000/01/rdf-schema#comment> "The 3D spatial location of the damage instance in the real-world coordinate system." .
<https://w3id.org/rdo#hasX> <http://www.w3.org/2000/01/rdf-schema#label> "3D location" .
#
# https://w3id.org/rdo#junction_context
<https://w3id.org/rdo#junction_context> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#junction_context> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#Damage> .
<https://w3id.org/rdo#junction_context> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#junction_context> <http://www.w3.org/2000/01/rdf-schema#comment> "A description of whether and how a damage is associated with a junction. This property is used to record junction-related context that is difficult to capture purely geometrically, such as “junction between slate and leadwork (material junction)” or “junction between roof and masonry (element junction)”. Junction information supports interpretation of likely failure mechanisms and potential water ingress pathways." .
<https://w3id.org/rdo#junction_context> <http://www.w3.org/2000/01/rdf-schema#label> "junction context" .
#
# https://w3id.org/rdo#junction_type
<https://w3id.org/rdo#junction_type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#junction_type> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topDataProperty> .
<https://w3id.org/rdo#junction_type> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/dot#Damage> .
<https://w3id.org/rdo#junction_type> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#junction_type> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates the junction category relevant to the damage (e.g., material junction or element junction). This supports consistent reporting and querying of junction-related failures." .
<https://w3id.org/rdo#junction_type> <http://www.w3.org/2000/01/rdf-schema#label> "junction type" .
#
# https://w3id.org/rdo#orientation
<https://w3id.org/rdo#orientation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#orientation> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topDataProperty> .
<https://w3id.org/rdo#orientation> <http://www.w3.org/2000/01/rdf-schema#domain> <http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu> .
<https://w3id.org/rdo#orientation> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#orientation> <http://www.w3.org/2000/01/rdf-schema#comment> "Represents the facing direction (aspect) of a pitch (e.g., cardinal direction or azimuth). Orientation is pitch-specific and supports interpretation of differential moisture retention, biological growth, and weathering patterns observed during inspection, particularly where multiple pitches on the same roof exhibit different deterioration behaviours." .
<https://w3id.org/rdo#orientation> <http://www.w3.org/2000/01/rdf-schema#label> "orientation" .
#
# https://w3id.org/rdo#pitch_angle
<https://w3id.org/rdo#pitch_angle> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#pitch_angle> <http://www.w3.org/2000/01/rdf-schema#domain> <http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu> .
<https://w3id.org/rdo#pitch_angle> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#decimal> .
<https://w3id.org/rdo#pitch_angle> <http://www.w3.org/2000/01/rdf-schema#comment> "Pitch angle is a numerical value (expressed in degrees) representing the inclination of a roof surface. This property uses a decimal value to allow precise measurement. Indicative threshold ranges may be applied for roof characterisation: pitch angles below 10° typically indicate flat roofs; values between 10° and 45° represent low-pitched roofs; and angles greater than 45° indicate steeply pitched roofs. Variations in pitch angle influence drainage behaviour, exposure conditions, defect susceptibility, and inspection and maintenance considerations." .
<https://w3id.org/rdo#pitch_angle> <http://www.w3.org/2000/01/rdf-schema#label> "Pitch angle" .
#
# https://w3id.org/rdo#relative_position
<https://w3id.org/rdo#relative_position> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#relative_position> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topDataProperty> .
<https://w3id.org/rdo#relative_position> <http://www.w3.org/2000/01/rdf-schema#domain> <http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu> .
<https://w3id.org/rdo#relative_position> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#relative_position> <http://www.w3.org/2000/01/rdf-schema#comment> "Specifies the relative position of a pitch within the overall roof configuration (e.g., upper pitch or lower pitch). Relative position is important for inspection interpretation, as lower pitches may receive runoff, debris, or moisture from higher pitches, and are often associated with junction-related issues and concealed water ingress pathways." .
<https://w3id.org/rdo#relative_position> <http://www.w3.org/2000/01/rdf-schema#label> "relative position" .
#
# https://w3id.org/rdo#roof_build_up
<https://w3id.org/rdo#roof_build_up> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#roof_build_up> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topDataProperty> .
<https://w3id.org/rdo#roof_build_up> <http://www.w3.org/2000/01/rdf-schema#domain> <https://pi.pauwel.be/voc/buildingelement#Roof> .
<https://w3id.org/rdo#roof_build_up> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#roof_build_up> <http://www.w3.org/2000/01/rdf-schema#comment> "A description of the roof build-up (construction make-up), capturing the main roof-related elements and underlying materials relevant to condition assessment. This may include slates, ridge coverings, mortar fillets at wall abutments, lead flashings, wallhead/parapet gutters, chimney stacks, associated stonework/brickwork, and underlying layers such as masonry, lead, mortar, sarking/timber, or flat-roofing materials. This property is intended to record practical construction knowledge often missing from BIM models and to support interpretation of junction-related defects and water ingress mechanisms." .
<https://w3id.org/rdo#roof_build_up> <http://www.w3.org/2000/01/rdf-schema#label> "Roof build-up" .
#
# https://w3id.org/rdo#2D_location
<https://w3id.org/rdo#2D_location> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/rdo#2D_location> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/rdo#Damage_Image_Location> .
<https://w3id.org/rdo#2D_location> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/rdo#2D_location> <http://www.w3.org/2000/01/rdf-schema#comment> "The 2D image location of the observation expressed in pixel coordinates within the associated image or orthophoto." .
<https://w3id.org/rdo#2D_location> <http://www.w3.org/2000/01/rdf-schema#label> "2D location" .
#
#
#
# #################################################################
# #
# # Classes
# #
# #################################################################
#
#
# http://purl.org/dc/dcam/VocabularyEncodingScheme
<http://purl.org/dc/dcam/VocabularyEncodingScheme> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/Agent
<http://purl.org/dc/terms/Agent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/AgentClass
<http://purl.org/dc/terms/AgentClass> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://purl.org/dc/terms/AgentClass> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#Class> .
#
# http://purl.org/dc/terms/BibliographicResource
<http://purl.org/dc/terms/BibliographicResource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/FileFormat
<http://purl.org/dc/terms/FileFormat> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://purl.org/dc/terms/FileFormat> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/dc/terms/MediaType> .
#
# http://purl.org/dc/terms/Frequency
<http://purl.org/dc/terms/Frequency> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/Jurisdiction
<http://purl.org/dc/terms/Jurisdiction> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://purl.org/dc/terms/Jurisdiction> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/dc/terms/LocationPeriodOrJurisdiction> .
#
# http://purl.org/dc/terms/LicenseDocument
<http://purl.org/dc/terms/LicenseDocument> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://purl.org/dc/terms/LicenseDocument> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/dc/terms/RightsStatement> .
#
# http://purl.org/dc/terms/LinguisticSystem
<http://purl.org/dc/terms/LinguisticSystem> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/Location
<http://purl.org/dc/terms/Location> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://purl.org/dc/terms/Location> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/dc/terms/LocationPeriodOrJurisdiction> .
#
# http://purl.org/dc/terms/LocationPeriodOrJurisdiction
<http://purl.org/dc/terms/LocationPeriodOrJurisdiction> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/MediaType
<http://purl.org/dc/terms/MediaType> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://purl.org/dc/terms/MediaType> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/dc/terms/MediaTypeOrExtent> .
#
# http://purl.org/dc/terms/MediaTypeOrExtent
<http://purl.org/dc/terms/MediaTypeOrExtent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/MethodOfAccrual
<http://purl.org/dc/terms/MethodOfAccrual> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/MethodOfInstruction
<http://purl.org/dc/terms/MethodOfInstruction> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/PeriodOfTime
<http://purl.org/dc/terms/PeriodOfTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://purl.org/dc/terms/PeriodOfTime> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/dc/terms/LocationPeriodOrJurisdiction> .
#
# http://purl.org/dc/terms/PhysicalMedium
<http://purl.org/dc/terms/PhysicalMedium> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://purl.org/dc/terms/PhysicalMedium> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/dc/terms/MediaType> .
#
# http://purl.org/dc/terms/PhysicalResource
<http://purl.org/dc/terms/PhysicalResource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/Policy
<http://purl.org/dc/terms/Policy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/ProvenanceStatement
<http://purl.org/dc/terms/ProvenanceStatement> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/RightsStatement
<http://purl.org/dc/terms/RightsStatement> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://purl.org/dc/terms/SizeOrDuration
<http://purl.org/dc/terms/SizeOrDuration> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://purl.org/dc/terms/SizeOrDuration> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/dc/terms/MediaTypeOrExtent> .
#
# http://purl.org/dc/terms/Standard
<http://purl.org/dc/terms/Standard> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://webprotege.stanford.edu/R89LStemoQ1MqtJ4u3wNnCc
<http://webprotege.stanford.edu/R89LStemoQ1MqtJ4u3wNnCc> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://webprotege.stanford.edu/R89LStemoQ1MqtJ4u3wNnCc> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/dot#ClassifiedDamage> .
<http://webprotege.stanford.edu/R89LStemoQ1MqtJ4u3wNnCc> <http://www.w3.org/2000/01/rdf-schema#comment> "A Slate Structural Defect represents a physical damage potentially affecting the integrity or position of a roof slate, such as broken, displaced, or missing slate." .
<http://webprotege.stanford.edu/R89LStemoQ1MqtJ4u3wNnCc> <http://www.w3.org/2000/01/rdf-schema#label> "Slate Structural Defect" .
#
# http://webprotege.stanford.edu/RCY2aGVeb8KpRCsVrf5s8AD
<http://webprotege.stanford.edu/RCY2aGVeb8KpRCsVrf5s8AD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://webprotege.stanford.edu/RCY2aGVeb8KpRCsVrf5s8AD> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/rdo#Image> .
<http://webprotege.stanford.edu/RCY2aGVeb8KpRCsVrf5s8AD> <http://www.w3.org/2000/01/rdf-schema#comment> "An Orthophoto is a geometrically corrected image produced from photogrammetric processing, providing a uniform scale representation of roof surfaces and serving as spatial evidence for damage documentation." .
<http://webprotege.stanford.edu/RCY2aGVeb8KpRCsVrf5s8AD> <http://www.w3.org/2000/01/rdf-schema#label> "Orthophoto" .
#
# http://webprotege.stanford.edu/RCiwm3pFp97sUUNZMKSqwg7
<http://webprotege.stanford.edu/RCiwm3pFp97sUUNZMKSqwg7> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://webprotege.stanford.edu/RCiwm3pFp97sUUNZMKSqwg7> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/dot#Inspection> .
<http://webprotege.stanford.edu/RCiwm3pFp97sUUNZMKSqwg7> <http://www.w3.org/2000/01/rdf-schema#comment> "A Roof Inspection is a specialised inspection activity focusing on the condition assessment of roof elements, during which visual observations, images, and damage documentation are produced" .
<http://webprotege.stanford.edu/RCiwm3pFp97sUUNZMKSqwg7> <http://www.w3.org/2000/01/rdf-schema#label> "Roof Inspection" .
#
# http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu
<http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://pi.pauwel.be/voc/buildingelement#BuildingElementPart> .
<http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu> <http://www.w3.org/2000/01/rdf-schema#comment> "A Roof Pitch is a subdivision of a roof used as a spatial unit for inspection and damage documentation." .
<http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu> <http://www.w3.org/2000/01/rdf-schema#label> "Roof Pitch" .
#
# http://webprotege.stanford.edu/RkC6OzV1rmYsTeyuPAyaTf
<http://webprotege.stanford.edu/RkC6OzV1rmYsTeyuPAyaTf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://webprotege.stanford.edu/RkC6OzV1rmYsTeyuPAyaTf> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/dot#ClassifiedDamage> .
<http://webprotege.stanford.edu/RkC6OzV1rmYsTeyuPAyaTf> <http://www.w3.org/2000/01/rdf-schema#comment> "Slate Biological Growth represents biologically induced surface conditions observed on roof slates, such as algae, moss, and lichen. These forms of growth are not necessarily defects in themselves, but are indicative of persistent moisture, local environmental conditions, and reduced drying potential. The presence and distribution of biological growth may signal emerging risks, particularly at junctions or areas prone to water retention, and therefore support interpretation of roof condition and prioritisation of further inspection." .
<http://webprotege.stanford.edu/RkC6OzV1rmYsTeyuPAyaTf> <http://www.w3.org/2000/01/rdf-schema#label> "Slate Biological Growth" .
#
# http://www.w3.org/2000/01/rdf-schema#Class
<http://www.w3.org/2000/01/rdf-schema#Class> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# http://xmlns.com/foaf/0.1/Image
<http://xmlns.com/foaf/0.1/Image> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://xmlns.com/foaf/0.1/Image> <http://www.w3.org/2002/07/owl#equivalentClass> <https://w3id.org/rdo#Image> .
#
# https://w3id.org/dot#ClassifiedDamage
#
# https://w3id.org/dot#Damage
#
# https://w3id.org/dot#Documentation
#
# https://w3id.org/dot#ExternalResource
<https://w3id.org/dot#ExternalResource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
#
# https://w3id.org/dot#Inspection
#
# https://w3id.org/rdo#Damage_Image_Location
<https://w3id.org/rdo#Damage_Image_Location> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://w3id.org/rdo#Damage_Image_Location> <http://www.w3.org/2000/01/rdf-schema#comment> "A Damage Observation Image Location represents the spatial localisation of a detected or observed damage within an image or orthophoto." .
<https://w3id.org/rdo#Damage_Image_Location> <http://www.w3.org/2000/01/rdf-schema#label> "Damage Observation Image Location" .
#
# https://w3id.org/rdo#Damage_Inspection_Observation
<https://w3id.org/rdo#Damage_Inspection_Observation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://w3id.org/rdo#Damage_Inspection_Observation> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/dot#Damage> .
<https://w3id.org/rdo#Damage_Inspection_Observation> <http://www.w3.org/2000/01/rdf-schema#comment> "A Damage Inspection Observation represents an observation made during an inspection indicating the presence of a potential damage." .
<https://w3id.org/rdo#Damage_Inspection_Observation> <http://www.w3.org/2000/01/rdf-schema#label> "Damage Inspection Observation" .
#
# https://w3id.org/rdo#Image
<https://w3id.org/rdo#Image> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://w3id.org/rdo#Image> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/dot#ExternalResource> .
#
#
#
# #################################################################
# #
# # Individuals
# #
# #################################################################
#
#
# http://purl.org/dc/terms/
<http://purl.org/dc/terms/> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/> <http://purl.org/dc/terms/modified> "2012-06-14"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://purl.org/dc/terms/> <http://purl.org/dc/terms/title> "DCMI Metadata Terms - other"@en .
<http://purl.org/dc/terms/> <http://purl.org/dc/terms/publisher> <http://purl.org/dc/aboutdcmi#DCMI> .
#
# http://purl.org/dc/terms/Agent
<http://purl.org/dc/terms/Agent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/Agent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/terms/AgentClass> .
<http://purl.org/dc/terms/Agent> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/AgentClass
<http://purl.org/dc/terms/AgentClass> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/AgentClass> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/BibliographicResource
<http://purl.org/dc/terms/BibliographicResource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/BibliographicResource> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/Box
<http://purl.org/dc/terms/Box> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/Box> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/DCMIType
<http://purl.org/dc/terms/DCMIType> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/DCMIType> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/dcam/VocabularyEncodingScheme> .
<http://purl.org/dc/terms/DCMIType> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://purl.org/dc/terms/DCMIType> <http://www.w3.org/2000/01/rdf-schema#comment> "The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource."@en .
<http://purl.org/dc/terms/DCMIType> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/dc/terms/> .
<http://purl.org/dc/terms/DCMIType> <http://www.w3.org/2000/01/rdf-schema#label> "DCMI Type Vocabulary"@en .
<http://purl.org/dc/terms/DCMIType> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://purl.org/dc/dcmitype/> .
#
# http://purl.org/dc/terms/DDC
<http://purl.org/dc/terms/DDC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/DDC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/dcam/VocabularyEncodingScheme> .
<http://purl.org/dc/terms/DDC> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://purl.org/dc/terms/DDC> <http://www.w3.org/2000/01/rdf-schema#comment> "The set of conceptual resources specified by the Dewey Decimal Classification."@en .
<http://purl.org/dc/terms/DDC> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/dc/terms/> .
<http://purl.org/dc/terms/DDC> <http://www.w3.org/2000/01/rdf-schema#label> "DDC"@en .
<http://purl.org/dc/terms/DDC> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.oclc.org/dewey/> .
#
# http://purl.org/dc/terms/FileFormat
<http://purl.org/dc/terms/FileFormat> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/FileFormat> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/Frequency
<http://purl.org/dc/terms/Frequency> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/Frequency> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/IMT
<http://purl.org/dc/terms/IMT> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/IMT> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/dcam/VocabularyEncodingScheme> .
<http://purl.org/dc/terms/IMT> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://purl.org/dc/terms/IMT> <http://www.w3.org/2000/01/rdf-schema#comment> "The set of media types specified by the Internet Assigned Numbers Authority."@en .
<http://purl.org/dc/terms/IMT> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/dc/terms/> .
<http://purl.org/dc/terms/IMT> <http://www.w3.org/2000/01/rdf-schema#label> "IMT"@en .
<http://purl.org/dc/terms/IMT> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.iana.org/assignments/media-types/> .
#
# http://purl.org/dc/terms/ISO3166
<http://purl.org/dc/terms/ISO3166> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/ISO3166> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/ISO639-2
<http://purl.org/dc/terms/ISO639-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/ISO639-2> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/ISO639-3
<http://purl.org/dc/terms/ISO639-3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/ISO639-3> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/Jurisdiction
<http://purl.org/dc/terms/Jurisdiction> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/Jurisdiction> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/LCC
<http://purl.org/dc/terms/LCC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/LCC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/dcam/VocabularyEncodingScheme> .
<http://purl.org/dc/terms/LCC> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://purl.org/dc/terms/LCC> <http://www.w3.org/2000/01/rdf-schema#comment> "The set of conceptual resources specified by the Library of Congress Classification."@en .
<http://purl.org/dc/terms/LCC> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/dc/terms/> .
<http://purl.org/dc/terms/LCC> <http://www.w3.org/2000/01/rdf-schema#label> "LCC"@en .
<http://purl.org/dc/terms/LCC> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html> .
#
# http://purl.org/dc/terms/LCSH
<http://purl.org/dc/terms/LCSH> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/LCSH> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/dcam/VocabularyEncodingScheme> .
<http://purl.org/dc/terms/LCSH> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://purl.org/dc/terms/LCSH> <http://www.w3.org/2000/01/rdf-schema#comment> "The set of labeled concepts specified by the Library of Congress Subject Headings."@en .
<http://purl.org/dc/terms/LCSH> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/dc/terms/> .
<http://purl.org/dc/terms/LCSH> <http://www.w3.org/2000/01/rdf-schema#label> "LCSH"@en .
#
# http://purl.org/dc/terms/LicenseDocument
<http://purl.org/dc/terms/LicenseDocument> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/LicenseDocument> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/LinguisticSystem
<http://purl.org/dc/terms/LinguisticSystem> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/LinguisticSystem> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/Location
<http://purl.org/dc/terms/Location> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/Location> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/LocationPeriodOrJurisdiction
<http://purl.org/dc/terms/LocationPeriodOrJurisdiction> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/LocationPeriodOrJurisdiction> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/MESH
<http://purl.org/dc/terms/MESH> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/MESH> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/dcam/VocabularyEncodingScheme> .
<http://purl.org/dc/terms/MESH> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://purl.org/dc/terms/MESH> <http://www.w3.org/2000/01/rdf-schema#comment> "The set of labeled concepts specified by the Medical Subject Headings."@en .
<http://purl.org/dc/terms/MESH> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/dc/terms/> .
<http://purl.org/dc/terms/MESH> <http://www.w3.org/2000/01/rdf-schema#label> "MeSH"@en .
<http://purl.org/dc/terms/MESH> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.nlm.nih.gov/mesh/meshhome.html> .
#
# http://purl.org/dc/terms/MediaType
<http://purl.org/dc/terms/MediaType> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/MediaType> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/MediaTypeOrExtent
<http://purl.org/dc/terms/MediaTypeOrExtent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/MediaTypeOrExtent> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/MethodOfAccrual
<http://purl.org/dc/terms/MethodOfAccrual> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/MethodOfAccrual> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/MethodOfInstruction
<http://purl.org/dc/terms/MethodOfInstruction> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/MethodOfInstruction> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/NLM
<http://purl.org/dc/terms/NLM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/NLM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/dcam/VocabularyEncodingScheme> .
<http://purl.org/dc/terms/NLM> <http://purl.org/dc/terms/issued> "2005-06-13"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://purl.org/dc/terms/NLM> <http://www.w3.org/2000/01/rdf-schema#comment> "The set of conceptual resources specified by the National Library of Medicine Classification."@en .
<http://purl.org/dc/terms/NLM> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/dc/terms/> .
<http://purl.org/dc/terms/NLM> <http://www.w3.org/2000/01/rdf-schema#label> "NLM"@en .
<http://purl.org/dc/terms/NLM> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://wwwcf.nlm.nih.gov/class/> .
#
# http://purl.org/dc/terms/Period
<http://purl.org/dc/terms/Period> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/Period> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/PeriodOfTime
<http://purl.org/dc/terms/PeriodOfTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/PeriodOfTime> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/PhysicalMedium
<http://purl.org/dc/terms/PhysicalMedium> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/PhysicalMedium> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/PhysicalResource
<http://purl.org/dc/terms/PhysicalResource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/PhysicalResource> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/Point
<http://purl.org/dc/terms/Point> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/Point> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/Policy
<http://purl.org/dc/terms/Policy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/Policy> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/ProvenanceStatement
<http://purl.org/dc/terms/ProvenanceStatement> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/ProvenanceStatement> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/RFC1766
<http://purl.org/dc/terms/RFC1766> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/RFC1766> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/RFC3066
<http://purl.org/dc/terms/RFC3066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/RFC3066> <http://purl.org/dc/terms/issued> "2002-07-13"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/RFC4646
<http://purl.org/dc/terms/RFC4646> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/RFC4646> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/RFC5646
<http://purl.org/dc/terms/RFC5646> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/RFC5646> <http://purl.org/dc/terms/issued> "2010-10-11"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/RightsStatement
<http://purl.org/dc/terms/RightsStatement> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/RightsStatement> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/SizeOrDuration
<http://purl.org/dc/terms/SizeOrDuration> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/SizeOrDuration> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/Standard
<http://purl.org/dc/terms/Standard> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/Standard> <http://purl.org/dc/terms/issued> "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> .
#
# http://purl.org/dc/terms/TGN
<http://purl.org/dc/terms/TGN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/dc/terms/TGN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/dcam/VocabularyEncodingScheme> .
<http://purl.org/dc/terms/TGN> <http://purl.org/dc/terms/issued> "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://purl.org/dc/terms/TGN> <http://www.w3.org/2000/01/rdf-schema#comment> "The set of places specified by the Getty Thesaurus of Geographic Names."@en .
<http://purl.org/dc/terms/TGN> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/dc/terms/> .
<http://purl.org/dc/terms/TGN> <http://www.w3.org/2000/01/rdf-schema#label> "TGN"@en .
<http://purl.org/dc/terms/TGN> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.getty.edu/research/tools/vocabulary/tgn/index.html> .