-
Notifications
You must be signed in to change notification settings - Fork 0
/
datadragon.owl
1426 lines (818 loc) · 54.8 KB
/
datadragon.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="http://archaeology.link/ontology#"
xml:base="http://archaeology.link/ontology"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wd="http://www.wikidata.org/entity/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:wdt="http://www.wikidata.org/prop/direct/"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:wikibase="http://wikiba.se/ontology#">
<owl:Ontology rdf:about="http://archaeology.link/ontology#">
<dc:contributor>Florian Thiery</dc:contributor>
<dc:creator>Florian Thiery</dc:creator>
<dc:description>This ontology contains classes to descibe Data Dragons as Repository for Linked Data.</dc:description>
<dc:publisher>CAA SIG Data-Dragon, RGZM</dc:publisher>
<dc:rights>CC BY 4.0</dc:rights>
<dc:subject>Data Dragons</dc:subject>
<rdfs:comment>This ontology contains classes to descibe Data Dragons as Repository for Linked Data.</rdfs:comment>
<rdfs:label>The Data Dragon Ontology</rdfs:label>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">1.0</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://archaeology.link/ontology#desc -->
<owl:AnnotationProperty rdf:about="http://archaeology.link/ontology#desc">
<rdfs:label xml:lang="en">description</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://archaeology.link/ontology#prefDesc"/>
</owl:AnnotationProperty>
<!-- http://archaeology.link/ontology#label -->
<owl:AnnotationProperty rdf:about="http://archaeology.link/ontology#label">
<rdfs:label xml:lang="en">label</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#altLabel"/>
</owl:AnnotationProperty>
<!-- http://archaeology.link/ontology#prefDesc -->
<owl:AnnotationProperty rdf:about="http://archaeology.link/ontology#prefDesc">
<rdfs:label xml:lang="en">preferred description</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#scopeNote"/>
</owl:AnnotationProperty>
<!-- http://archaeology.link/ontology#prefLabel -->
<owl:AnnotationProperty rdf:about="http://archaeology.link/ontology#prefLabel">
<rdfs:label xml:lang="en">preferred label</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#prefLabel"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/contributor"/>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
<!-- http://purl.org/dc/elements/1.1/publisher -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/publisher"/>
<!-- http://purl.org/dc/elements/1.1/rights -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/rights"/>
<!-- http://purl.org/dc/elements/1.1/subject -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/subject"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel">
<rdfs:label xml:lang="en">alternative label</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#definition">
<rdfs:label xml:lang="en">definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#prefLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel">
<rdfs:label xml:lang="en">preferred label</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#scopeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#scopeNote">
<rdfs:label xml:lang="en">scope note</rdfs:label>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2000/01/rdf-schema#Resource -->
<rdfs:Datatype rdf:about="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<!-- http://www.w3.org/2002/07/owl#Thing -->
<rdfs:Datatype rdf:about="http://www.w3.org/2002/07/owl#Thing"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://archaeology.link/hasPointGeometry -->
<owl:ObjectProperty rdf:about="http://archaeology.link/hasPointGeometry">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasGeometry"/>
<rdfs:label xml:lang="en">has point geometry</rdfs:label>
<skos:definition xml:lang="en">c.f. https://www.ogc.org/standards/geosparql, 1.0, OGC GeoSPARQL - A Geographic Query Language for RDF Data, 11-052r4, Annex B, B.1</skos:definition>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#PlaceOfInterest -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#PlaceOfInterest">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasGeometry"/>
<rdfs:label xml:lang="en">place of interest (POI)</rdfs:label>
<skos:definition xml:lang="en">c.f. https://www.ogc.org/standards/geosparql, 1.0, OGC GeoSPARQL - A Geographic Query Language for RDF Data, 11-052r4, Annex B, B.1</skos:definition>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#centroid -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#centroid">
<rdfs:subPropertyOf rdf:resource="http://archaeology.link/hasPointGeometry"/>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#clusteredArea -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#clusteredArea">
<rdfs:subPropertyOf rdf:resource="http://archaeology.link/ontology#hasExactGeometry"/>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#exactMatch -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#exactMatch">
<rdfs:subPropertyOf rdf:resource="http://www.wikidata.org/prop/direct/P2888"/>
<skos:definition xml:lang="en">exact match</skos:definition>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasBroaderItem -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasBroaderItem">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#broader"/>
<rdfs:label xml:lang="en">has broader item</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasEPSG -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasEPSG">
<rdfs:label xml:lang="en">has EPSG code</rdfs:label>
<skos:definition xml:lang="en">a geometry in a EPSG code</skos:definition>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasExactGeometry -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasExactGeometry">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasGeometry"/>
<rdfs:label xml:lang="en">has exact geometry</rdfs:label>
<skos:definition xml:lang="en">c.f. https://www.ogc.org/standards/geosparql, 1.0, OGC GeoSPARQL - A Geographic Query Language for RDF Data, 11-052r4, Annex B, B.1</skos:definition>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasLegalType -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasLegalType">
<rdfs:domain rdf:resource="http://archaeology.link/ontology#DataDragonLair"/>
<rdfs:range rdf:resource="http://archaeology.link/ontology#RepositoryLegalType"/>
<rdfs:comment>legal type of a data repository</rdfs:comment>
<rdfs:label>has legal type</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasNarrowerItem -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasNarrowerItem">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#narrower"/>
<rdfs:label xml:lang="en">has narrower item</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasQuality -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasQuality">
<rdfs:domain rdf:resource="http://archaeology.link/ontology#DataDragonLair"/>
<rdfs:range rdf:resource="http://archaeology.link/ontology#RepositoryQuality"/>
<rdfs:comment>fuzzy quality of a data repository</rdfs:comment>
<rdfs:label>has quality</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasType -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasType">
<rdfs:domain rdf:resource="http://archaeology.link/ontology#DataDragonLair"/>
<rdfs:range rdf:resource="http://archaeology.link/ontology#RepositoryType"/>
<rdfs:comment>type of a data repository</rdfs:comment>
<rdfs:label>has type</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#inLair -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#inLair">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#inScheme"/>
<rdfs:label xml:lang="en">is in dragon lair</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#lairGroup -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#lairGroup">
<rdfs:domain rdf:resource="http://archaeology.link/ontology#DataDragonLair"/>
<rdfs:range rdf:resource="http://archaeology.link/ontology#RepositoryGroup"/>
<rdfs:comment>data repository belongs to group X</rdfs:comment>
<rdfs:label>lair group</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#lairState -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#lairState">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="http://archaeology.link/ontology#DataDragonLair"/>
<rdfs:range rdf:resource="http://archaeology.link/ontology#RepositoryState"/>
<rdfs:comment>status of a data repository (data dragon lair)</rdfs:comment>
<rdfs:label>lair state</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#language -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#language">
<rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:range rdf:resource="http://archaeology.link/ontology#RepositoryLanguage"/>
<rdfs:comment>main language of a thing</rdfs:comment>
<rdfs:label>language</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#locatedAt -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#locatedAt">
<rdfs:subPropertyOf rdf:resource="http://archaeology.link/hasPointGeometry"/>
</owl:ObjectProperty>
<!-- http://www.opengis.net/ont/geosparql#hasGeometry -->
<owl:ObjectProperty rdf:about="http://www.opengis.net/ont/geosparql#hasGeometry">
<rdfs:subPropertyOf rdf:resource="http://www.opengis.net/ont/geosparql#hasGeometry"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/2002/07/owl#sameAs -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2002/07/owl#sameAs">
<rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#broadMatch -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#broadMatch">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#broader"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#mappingRelation"/>
<rdfs:label xml:lang="en">has broader match</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#broader -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#broader">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#broaderTransitive"/>
<rdfs:label xml:lang="en">has broader</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#broaderTransitive -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#broaderTransitive">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#semanticRelation"/>
<rdfs:label xml:lang="en">has broader transitive</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#closeMatch -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#closeMatch">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#mappingRelation"/>
<rdfs:label xml:lang="en">has close match</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#exactMatch -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#exactMatch">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#sameAs"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#closeMatch"/>
<rdfs:label xml:lang="en">has exact match</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#inScheme -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#inScheme">
<rdfs:label xml:lang="en">is in scheme</rdfs:label>
<skos:definition xml:lang="en">Relates a resource (for example a concept) to a concept scheme in which it is included.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#mappingRelation -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#mappingRelation">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#semanticRelation"/>
<rdfs:label xml:lang="en">is in mapping relation with</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#narrowMatch -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#narrowMatch">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#mappingRelation"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#narrower"/>
<rdfs:label xml:lang="en">has narrower match</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#narrower -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#narrower">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#narrowerTransitive"/>
<rdfs:label xml:lang="en">has narrower</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#narrowerTransitive -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#narrowerTransitive">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#semanticRelation"/>
<rdfs:label xml:lang="en">has narrower transitive</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#related -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#related">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#semanticRelation"/>
<rdfs:label xml:lang="en">has related</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#relatedMatch -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#relatedMatch">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#mappingRelation"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#related"/>
<rdfs:label xml:lang="en">has related match</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#semanticRelation -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#semanticRelation">
<rdfs:label xml:lang="en">is in semantic relation with</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#actedOnBehalfOf -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#actedOnBehalfOf">
<rdfs:label xml:lang="en">acted on behalf of</rdfs:label>
<skos:definition xml:lang="en">Delegation is the assignment of authority and responsibility to an agent (by itself or by another agent) to carry out a specific activity as a delegate or representative, while the agent it acts on behalf of retains some responsibility for the outcome of the delegated work.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#used -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#used">
<rdfs:label xml:lang="en">used</rdfs:label>
<skos:definition xml:lang="en">Usage is the beginning of utilizing an entity by an activity. Before usage, the activity had not begun to utilize this entity and could not have been affected by the entity.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasAssociatedWith -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasAssociatedWith">
<rdfs:label xml:lang="en">was associated with</rdfs:label>
<skos:definition xml:lang="en">An activity association is an assignment of responsibility to an agent for an activity, indicating that the agent had a role in the activity. It further allows for a plan to be specified, which is the plan intended by the agent to achieve some goals in the context of this activity.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasAttributedTo -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasAttributedTo">
<rdfs:label xml:lang="en">was attributed to</rdfs:label>
<skos:definition xml:lang="en">Attribution is the ascribing of an entity to an agent.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasDerivedFrom -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasDerivedFrom">
<rdfs:label xml:lang="en">was derived from</rdfs:label>
<skos:definition xml:lang="en">A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasGeneratedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasGeneratedBy">
<rdfs:label xml:lang="en">was ganerated by</rdfs:label>
<skos:definition xml:lang="en">Generation is the completion of production of a new entity by an activity. This entity did not exist before generation and becomes available for usage after this generation.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasInformedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasInformedBy">
<rdfs:label xml:lang="en">was informed by</rdfs:label>
<skos:definition xml:lang="en">Communication is the exchange of some unspecified entity by two activities, one activity using some entity generated by the other.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.wikidata.org/prop/direct/P2888 -->
<owl:ObjectProperty rdf:about="http://www.wikidata.org/prop/direct/P2888">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#exactMatch"/>
<rdfs:label xml:lang="en">exact match</rdfs:label>
<skos:definition xml:lang="en">(URLs only) used to link two items, indicating a high degree of confidence that the concepts can be used interchangeably</skos:definition>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://archaeology.link/ontology#apiendpoint -->
<owl:DatatypeProperty rdf:about="http://archaeology.link/ontology#apiendpoint">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:comment>URL of the API entrypoint</rdfs:comment>
<rdfs:label>API endpoint</rdfs:label>
</owl:DatatypeProperty>
<!-- http://archaeology.link/ontology#author -->
<owl:DatatypeProperty rdf:about="http://archaeology.link/ontology#author">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment>author or inventor or right holder</rdfs:comment>
<rdfs:label>author</rdfs:label>
</owl:DatatypeProperty>
<!-- http://archaeology.link/ontology#dateOfEntry -->
<owl:DatatypeProperty rdf:about="http://archaeology.link/ontology#dateOfEntry">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment>the date of database entry</rdfs:comment>
<rdfs:label>date of entry</rdfs:label>
</owl:DatatypeProperty>
<!-- http://archaeology.link/ontology#dateOfModification -->
<owl:DatatypeProperty rdf:about="http://archaeology.link/ontology#dateOfModification">
<rdfs:comment>the date of a modification</rdfs:comment>
<rdfs:label>date of modification</rdfs:label>
</owl:DatatypeProperty>
<!-- http://archaeology.link/ontology#description -->
<owl:DatatypeProperty rdf:about="http://archaeology.link/ontology#description">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment>a short description</rdfs:comment>
<rdfs:label>description</rdfs:label>
</owl:DatatypeProperty>
<!-- http://archaeology.link/ontology#link -->
<owl:DatatypeProperty rdf:about="http://archaeology.link/ontology#link">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:comment>a link for further information</rdfs:comment>
<rdfs:label>link</rdfs:label>
</owl:DatatypeProperty>
<!-- http://archaeology.link/ontology#name -->
<owl:DatatypeProperty rdf:about="http://archaeology.link/ontology#name">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment>a name</rdfs:comment>
<rdfs:label>name</rdfs:label>
</owl:DatatypeProperty>
<!-- http://archaeology.link/ontology#prefix -->
<owl:DatatypeProperty rdf:about="http://archaeology.link/ontology#prefix">
<rdfs:comment>prefix</rdfs:comment>
<rdfs:label>prefix</rdfs:label>
</owl:DatatypeProperty>
<!-- http://archaeology.link/ontology#sparqlendpoint -->
<owl:DatatypeProperty rdf:about="http://archaeology.link/ontology#sparqlendpoint">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:comment>URL of the SPARQL endpoint</rdfs:comment>
<rdfs:label>SPARQL endpoint</rdfs:label>
</owl:DatatypeProperty>
<!-- http://archaeology.link/ontology#wikidataid -->
<owl:DatatypeProperty rdf:about="http://archaeology.link/ontology#wikidataid">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</owl:DatatypeProperty>
<!-- http://www.opengis.net/ont/geosparql#asGeoJSON -->
<owl:DatatypeProperty rdf:about="http://www.opengis.net/ont/geosparql#asGeoJSON">
<rdfs:label xml:lang="en">as GeoJSON</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.opengis.net/ont/geosparql#asWKT -->
<owl:DatatypeProperty rdf:about="http://www.opengis.net/ont/geosparql#asWKT">
<rdfs:label xml:lang="en">as Well-Known-Text</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2002/07/owl#sameAs -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2002/07/owl#sameAs"/>
<!-- http://www.w3.org/ns/prov#endedAtTime -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#endedAtTime">
<rdfs:label xml:lang="en">ended at time</rdfs:label>
<skos:definition xml:lang="en">End is when an activity is deemed to have been ended by an entity, known as trigger. The activity no longer exists after its end. Any usage, generation, or invalidation involving an activity precedes the activity's end. An end may refer to a trigger entity that terminated the activity, or to an activity, known as ender that generated the trigger.</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/ns/prov#startedAtTime -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#startedAtTime">
<rdfs:label xml:lang="en">started at time</rdfs:label>
<skos:definition xml:lang="en">Start is when an activity is deemed to have been started by an entity, known as trigger. The activity did not exist before its start. Any usage, generation, or invalidation involving an activity follows the activity's start. A start may refer to a trigger entity that set off the activity, or to an activity, known as starter, that generated the trigger.</skos:definition>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://academic-meta-tool.xyz/vocab#Concept -->
<owl:Class rdf:about="http://academic-meta-tool.xyz/vocab#Concept">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
</owl:Class>
<!-- http://academic-meta-tool.xyz/vocab#Role -->
<owl:Class rdf:about="http://academic-meta-tool.xyz/vocab#Role">
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdfs:label xml:lang="en">Role</rdfs:label>
<skos:definition xml:lang="en">A vague edge which is part of a triple.</skos:definition>
</owl:Class>
<!-- http://archaeology.link/ontology#AMT_Entity -->
<owl:Class rdf:about="http://archaeology.link/ontology#AMT_Entity">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity"/>
<rdfs:label xml:lang="en">Academic Meta Tool Entity</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#Actor -->
<owl:Class rdf:about="http://archaeology.link/ontology#Actor">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E39_Actor"/>
<rdfs:label xml:lang="en">Actor</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#ActorEntity -->
<owl:Class rdf:about="http://archaeology.link/ontology#ActorEntity">
<rdfs:subClassOf rdf:resource="http://archaeology.link/ontology#Actor"/>
<rdfs:label xml:lang="en">Actor Entity</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#DataDragonCollection -->
<owl:Class rdf:about="http://archaeology.link/ontology#DataDragonCollection">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Collection"/>
<rdfs:label xml:lang="en">Data Dragon Collection</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#DataDragonItem -->
<owl:Class rdf:about="http://archaeology.link/ontology#DataDragonItem">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:label xml:lang="en">Data Dragon Item</rdfs:label>
<skos:definition xml:lang="en">A repository item of a Data Dragon Lair.</skos:definition>
</owl:Class>
<!-- http://archaeology.link/ontology#DataDragonLair -->
<owl:Class rdf:about="http://archaeology.link/ontology#DataDragonLair">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme"/>
<rdfs:label>Data Dragon Lair</rdfs:label>
<skos:definition xml:lang="en">A repository that stores Linked Open Data.</skos:definition>
</owl:Class>
<!-- http://archaeology.link/ontology#DataDragonPlace -->
<owl:Class rdf:about="http://archaeology.link/ontology#DataDragonPlace">
<rdfs:subClassOf rdf:resource="http://archaeology.link/ontology#GeographicLocation"/>
<rdfs:label xml:lang="en">Data Dragon Place</rdfs:label>
<skos:definition xml:lang="en">A repository geospatial item of a Data Dragon Lair.</skos:definition>
</owl:Class>
<!-- http://archaeology.link/ontology#GeographicLocation -->
<owl:Class rdf:about="http://archaeology.link/ontology#GeographicLocation">
<rdfs:subClassOf rdf:resource="http://archaeology.link/ontology#Place"/>
<rdfs:label xml:lang="en">Geographic Location</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#Place -->
<owl:Class rdf:about="http://archaeology.link/ontology#Place">
<rdfs:subClassOf rdf:resource="https://pleiades.stoa.org/places/vocab#Place"/>
<skos:definition xml:lang="en">Data Dragon Place</skos:definition>
</owl:Class>
<!-- http://archaeology.link/ontology#RepositoryGroup -->
<owl:Class rdf:about="http://archaeology.link/ontology#RepositoryGroup">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E55_Type"/>
<rdfs:comment>some kind of grouping for repositories</rdfs:comment>
<rdfs:label>Repository Group</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#RepositoryLanguage -->
<owl:Class rdf:about="http://archaeology.link/ontology#RepositoryLanguage">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E55_Type"/>
<rdfs:comment>main language of a repository</rdfs:comment>
<rdfs:label>Repository Language</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#RepositoryLegalType -->
<owl:Class rdf:about="http://archaeology.link/ontology#RepositoryLegalType">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E55_Type"/>
<rdfs:comment>legal type of a repository</rdfs:comment>
<rdfs:label>Repository Legal Type</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#RepositoryLevel -->
<owl:Class rdf:about="http://archaeology.link/ontology#RepositoryLevel">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E55_Type"/>
<rdfs:label xml:lang="en">Repository Level</rdfs:label>
<skos:definition xml:lang="en">level of the repository</skos:definition>
</owl:Class>
<!-- http://archaeology.link/ontology#RepositoryQuality -->
<owl:Class rdf:about="http://archaeology.link/ontology#RepositoryQuality">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E55_Type"/>
<rdfs:comment>quality of a repository</rdfs:comment>
<rdfs:label>Repository Quality</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#RepositoryState -->
<owl:Class rdf:about="http://archaeology.link/ontology#RepositoryState">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E55_Type"/>
<rdfs:comment>status of a repository</rdfs:comment>
<rdfs:label>Repository Status</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#RepositoryType -->
<owl:Class rdf:about="http://archaeology.link/ontology#RepositoryType">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E55_Type"/>
<rdfs:comment>type of a repository</rdfs:comment>
<rdfs:label>Repository Type</rdfs:label>
</owl:Class>
<!-- http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity -->
<owl:Class rdf:about="http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:label xml:lang="en">CRM Entity</rdfs:label>
<skos:definition xml:lang="en">This class comprises all things in the universe of discourse of the CIDOC Conceptual Reference Model. It is an abstract concept providing for three general properties:
1. Identification by name or appellation, and in particular by a preferred identifier
2. Classification by type, allowing further refinement of the specific subclass an instance belongs to
3. Attachment of free text for the expression of anything not captured by formal properties
With the exception of E59 Primitive Value, all other classes within the CRM are directly or indirectly specialisations of E1 CRM Entity.</skos:definition>
</owl:Class>
<!-- http://www.cidoc-crm.org/cidoc-crm/E39_Actor -->
<owl:Class rdf:about="http://www.cidoc-crm.org/cidoc-crm/E39_Actor">
<rdfs:subClassOf rdf:resource="http://archaeology.link/ontology#DataDragonItem"/>
<rdfs:label xml:lang="en">Actor</rdfs:label>
<skos:definition xml:lang="en">This class comprises people, either individually or in groups, who have the potential to perform intentional actions of kinds for which someone may be held responsible. The CRM does not attempt to model the inadvertent actions of such actors. Individual people should be documented as instances of E21 Person, whereas groups should be documented as instances of either E74 Group or its subclass E40 Legal Body.</skos:definition>
</owl:Class>
<!-- http://www.cidoc-crm.org/cidoc-crm/E53_Place -->
<owl:Class rdf:about="http://www.cidoc-crm.org/cidoc-crm/E53_Place">
<rdfs:subClassOf rdf:resource="http://archaeology.link/ontology#DataDragonItem"/>
<rdfs:label xml:lang="en">Place</rdfs:label>
<skos:definition xml:lang="en">This class comprises extents in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter.
The instances of E53 Place are usually determined by reference to the position of “immobile” objects such as buildings, cities, mountains, rivers, or dedicated geodetic marks. A Place can be determined by combining a frame of reference and a location with respect to this frame. It may be identified by one or more instances of E44 Place Appellation.
It is sometimes argued that instances of E53 Place are best identified by global coordinates or absolute reference systems. However, relative references are often more relevant in the context of cultural documentation and tend to be more precise. In particular, we are often interested in position in relation to large, mobile objects, such as ships. For example, the Place at which Nelson died is known with reference to a large mobile object – H.M.S Victory. A resolution of this Place in terms of absolute coordinates would require knowledge of the movements of the vessel and the precise time of death, either of which may be revised, and the result would lack historical and cultural relevance.
Any object can serve as a frame of reference for E53 Place determination. The model foresees the notion of a "section" of an E19 Physical Object as a valid E53 Place determination.</skos:definition>
</owl:Class>
<!-- http://www.cidoc-crm.org/cidoc-crm/E55_Type -->
<owl:Class rdf:about="http://www.cidoc-crm.org/cidoc-crm/E55_Type">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:label xml:lang="en">Type</rdfs:label>
<skos:definition xml:lang="en">This class comprises concepts denoted by terms from thesauri and controlled vocabularies used to characterize and classify instances of CRM classes. Instances of E55 Type represent concepts in contrast to instances of E41 Appellation which are used to name instances of CRM classes. E55 Type is the CRM’s interface to domain specific ontologies and thesauri. These can be represented in the CRM as subclasses of E55 Type, forming hierarchies of terms, i.e. instances of E55 Type linked via P127 has broader term (has narrower term). Such hierarchies may be extended with additional properties.</skos:definition>
</owl:Class>
<!-- http://www.cidoc-crm.org/cidoc-crm/E5_Event -->
<owl:Class rdf:about="http://www.cidoc-crm.org/cidoc-crm/E5_Event">
<rdfs:subClassOf rdf:resource="http://archaeology.link/ontology#DataDragonItem"/>
<rdfs:label xml:lang="en">Event</rdfs:label>
</owl:Class>
<!-- http://www.opengis.net/ont/geosparql#Feature -->
<owl:Class rdf:about="http://www.opengis.net/ont/geosparql#Feature">
<rdfs:subClassOf rdf:resource="http://www.opengis.net/ont/geosparql#SpatialObject"/>
<rdfs:label xml:lang="en">Feature</rdfs:label>
</owl:Class>
<!-- http://www.opengis.net/ont/geosparql#Geometry -->
<owl:Class rdf:about="http://www.opengis.net/ont/geosparql#Geometry">
<rdfs:subClassOf rdf:resource="http://www.opengis.net/ont/geosparql#SpatialObject"/>
<rdfs:label xml:lang="en">Geometry</rdfs:label>
</owl:Class>
<!-- http://www.opengis.net/ont/geosparql#SpatialObject -->
<owl:Class rdf:about="http://www.opengis.net/ont/geosparql#SpatialObject">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E53_Place"/>
<rdfs:label xml:lang="en">Spatial Object</rdfs:label>
</owl:Class>
<!-- http://www.opengis.net/ont/sf#MultiLineString -->
<owl:Class rdf:about="http://www.opengis.net/ont/sf#MultiLineString">
<rdfs:subClassOf rdf:resource="http://www.opengis.net/ont/geosparql#SpatialObject"/>
<rdfs:label xml:lang="en">Multi Line</rdfs:label>
</owl:Class>
<!-- http://www.opengis.net/ont/sf#MultiPoint -->
<owl:Class rdf:about="http://www.opengis.net/ont/sf#MultiPoint">
<rdfs:subClassOf rdf:resource="http://www.opengis.net/ont/geosparql#SpatialObject"/>
<rdfs:label xml:lang="en">Multi Point</rdfs:label>
</owl:Class>
<!-- http://www.opengis.net/ont/sf#MultiPolygon -->
<owl:Class rdf:about="http://www.opengis.net/ont/sf#MultiPolygon">
<rdfs:subClassOf rdf:resource="http://www.opengis.net/ont/geosparql#SpatialObject"/>
<rdfs:label xml:lang="en">Multi Polygon</rdfs:label>
</owl:Class>
<!-- http://www.opengis.net/ont/sf#Point -->
<owl:Class rdf:about="http://www.opengis.net/ont/sf#Point">
<rdfs:subClassOf rdf:resource="http://www.opengis.net/ont/geosparql#SpatialObject"/>
<rdfs:label xml:lang="en">Point</rdfs:label>
</owl:Class>