-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathceratyont.owl
1369 lines (799 loc) · 55.4 KB
/
ceratyont.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:crm="http://www.cidoc-crm.org/cidoc-crm/"
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:foaf="http://xmlns.com/foaf/0.1/"
xmlns:lado="http://archaeology.link/ontology#"
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#">
<owl:versionIRI rdf:resource="http://archaeology.link/ontology#/0.1"/>
<dc:contributor>Allard Mees</dc:contributor>
<dc:creator>Florian Thiery</dc:creator>
<dc:description xml:lang="en">This ontology contains classes and properties to descibe ceramic typologies.</dc:description>
<dc:publisher>RGZM</dc:publisher>
<dc:rights>CC BY 4.0</dc:rights>
<dc:subject>Samian Ware</dc:subject>
<rdfs:comment xml:lang="en">This ontology contains classes and properties to descibe ceramic typologies.</rdfs:comment>
<rdfs:label xml:lang="en">The Ceramic Typologies Ontology</rdfs:label>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">0.1</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- 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#note -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#note"/>
<!-- 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"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity"/>
<rdfs:range rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity"/>
<rdfs:label xml:lang="en">exact match</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#generalisedAs -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#generalisedAs">
<rdfs:subPropertyOf rdf:resource="http://archaeology.link/ontology#hasBroaderItem"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="http://archaeology.link/ontology#Potform"/>
<rdfs:range rdf:resource="http://archaeology.link/ontology#GenericPotform"/>
<rdfs:comment xml:lang="en">Potform -[generalised as]-> Generic Potform</rdfs:comment>
<rdfs:label xml:lang="en">generalised as</rdfs:label>
</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"/>
<owl:inverseOf rdf:resource="http://archaeology.link/ontology#hasNarrowerItem"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label xml:lang="en">has broader item</rdfs:label>
</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#hasMemberItem -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasMemberItem">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#member"/>
<owl:inverseOf rdf:resource="http://archaeology.link/ontology#isMemeberOf"/>
<rdfs:label xml:lang="en">has member item</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"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label xml:lang="en">has narrower item</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasPublisher -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasPublisher">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#member"/>
<owl:inverseOf rdf:resource="http://archaeology.link/ontology#published"/>
<rdfs:domain rdf:resource="http://archaeology.link/ontology#Potform"/>
<rdfs:range rdf:resource="http://archaeology.link/ontology#Publisher"/>
<rdfs:label xml:lang="en">has publisher</rdfs:label>
<skos:definition xml:lang="en">this thing was created by a Person.</skos:definition>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasRelatedItem -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasRelatedItem">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#related"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label xml:lang="en">has related item</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasSameFlute -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasSameFlute">
<rdfs:subPropertyOf rdf:resource="http://archaeology.link/ontology#hasRelatedItem"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label xml:lang="en">has same flute</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasSameFootring -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasSameFootring">
<rdfs:subPropertyOf rdf:resource="http://archaeology.link/ontology#hasRelatedItem"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label xml:lang="en">has same footring</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasSameGroove -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasSameGroove">
<rdfs:subPropertyOf rdf:resource="http://archaeology.link/ontology#hasRelatedItem"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label xml:lang="en">has same groove</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasSameRim -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasSameRim">
<rdfs:subPropertyOf rdf:resource="http://archaeology.link/ontology#hasRelatedItem"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label xml:lang="en">has same rim</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasSameRoulette -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasSameRoulette">
<rdfs:subPropertyOf rdf:resource="http://archaeology.link/ontology#hasRelatedItem"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label xml:lang="en">has same roulette</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasSameWall -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasSameWall">
<rdfs:subPropertyOf rdf:resource="http://archaeology.link/ontology#hasRelatedItem"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label xml:lang="en">has same wall</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#hasType -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#hasType">
<rdfs:subPropertyOf rdf:resource="http://archaeology.link/ontology#hasBroaderItem"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:range rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E55_Type"/>
<rdfs:label xml:lang="en">Potform -[has type]-> Tradition</rdfs:label>
<rdfs:label xml:lang="en">has type</rdfs:label>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#isMemeberOf -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#isMemeberOf">
<rdfs:label xml:lang="en">is member item of</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://archaeology.link/ontology#partiallyCoincidentWith -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#partiallyCoincidentWith">
<rdfs:subPropertyOf rdf:resource="http://www.wikidata.org/prop/direct/P1382"/>
<owl:inverseOf rdf:resource="http://archaeology.link/ontology#partiallyNotCoincidentWith"/>
<rdfs:domain rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:label xml:lang="en">partially coincident with</rdfs:label>
<skos:definition xml:lang="en">object that is partially part of, but not fully part of (exact match) a concept</skos:definition>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#partiallyNotCoincidentWith -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#partiallyNotCoincidentWith">
<rdfs:subPropertyOf rdf:resource="http://www.wikidata.org/prop/direct/P1382"/>
<rdfs:domain rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:label xml:lang="en">partially not coincident with</rdfs:label>
<skos:definition xml:lang="en">object that is not partially part of, but not fully part of (exact match) a concept</skos:definition>
</owl:ObjectProperty>
<!-- http://archaeology.link/ontology#published -->
<owl:ObjectProperty rdf:about="http://archaeology.link/ontology#published">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#member"/>
<rdfs:label xml:lang="en">published</rdfs:label>
<rdfs:label xml:lang="en">this thing was created by a Person.</rdfs:label>
</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">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<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"/>
<owl:inverseOf rdf:resource="http://www.w3.org/2004/02/skos/core#narrowMatch"/>
<rdfs:label xml:lang="en">has broader match</rdfs:label>
<skos:definition xml:lang="en">skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.</skos:definition>
</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"/>
<owl:inverseOf rdf:resource="http://www.w3.org/2004/02/skos/core#narrower"/>
<rdfs:label xml:lang="en">has broader</rdfs:label>
<skos:definition xml:lang="en">Relates a concept to a concept that is more general in meaning.</skos:definition>
</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"/>
<owl:inverseOf rdf:resource="http://www.w3.org/2004/02/skos/core#narrowerTransitive"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label xml:lang="en">has broader transitive</rdfs:label>
<skos:definition xml:lang="en">skos:broaderTransitive is a transitive superproperty of skos:broader.</skos:definition>
</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"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label xml:lang="en">has close match</rdfs:label>
<skos:definition xml:lang="en">skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of "compound errors" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.</skos:definition>
</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"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label xml:lang="en">has exact match</rdfs:label>
<skos:definition xml:lang="en">skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.</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>
<skos:definition xml:lang="en">Relates two concepts coming, by convention, from different schemes, and that have comparable meanings</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#member -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#member">
<rdfs:domain rdf:resource="http://www.w3.org/2004/02/skos/core#Collection"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://academic-meta-tool.xyz/vocab#Concept"/>
<rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#Collection"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:label xml:lang="en">has member</rdfs:label>
<skos:definition xml:lang="en">Relates a collection to one of its members.</skos:definition>
</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>
<skos:definition xml:lang="en">skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.</skos:definition>
</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>
<skos:definition xml:lang="en">Relates a concept to a concept that is more specific in meaning.</skos:definition>
</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"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label xml:lang="en">has narrower transitive</rdfs:label>
<skos:definition xml:lang="en">skos:narrowerTransitive is a transitive superproperty of skos:narrower.</skos:definition>
</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"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label xml:lang="en">has related</rdfs:label>
<skos:definition xml:lang="en">Relates a concept to a concept with which there is an associative semantic relationship.</skos:definition>
</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>
<skos:definition xml:lang="en">skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.</skos:definition>
</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:domain rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:label xml:lang="en">is in semantic relation with</rdfs:label>
<skos:definition xml:lang="en">Links a concept to a concept related by meaning.</skos:definition>
</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/P1382 -->
<owl:ObjectProperty rdf:about="http://www.wikidata.org/prop/direct/P1382">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#relatedMatch"/>
<rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:label xml:lang="en">partially coincident with</rdfs:label>
<rdfs:label xml:lang="de">teilweise übereinstimmend mit</rdfs:label>
<skos:definition xml:lang="de">Objekt, das teilweise, aber nicht vollständig Teil von (P361) einem Gegenstand ist</skos:definition>
<skos:definition xml:lang="en">object that is partially part of, but not fully part of (P361), the subject</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:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<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://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/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#Gaulish -->
<owl:Class rdf:about="http://archaeology.link/ontology#Gaulish">
<rdfs:subClassOf rdf:resource="http://archaeology.link/ontology#Tradition"/>
<rdfs:label xml:lang="en">Gaulish Tradition</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#GenericPotform -->
<owl:Class rdf:about="http://archaeology.link/ontology#GenericPotform">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E55_Type"/>
<rdfs:label xml:lang="en">Generic Potform</rdfs:label>
</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#Italian -->
<owl:Class rdf:about="http://archaeology.link/ontology#Italian">
<rdfs:subClassOf rdf:resource="http://archaeology.link/ontology#Tradition"/>
<rdfs:label xml:lang="en">Italian Tradition</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#Potform -->
<owl:Class rdf:about="http://archaeology.link/ontology#Potform">
<rdfs:subClassOf rdf:resource="http://archaeology.link/ontology#GenericPotform"/>
<rdfs:label xml:lang="en">Potform</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#Publisher -->
<owl:Class rdf:about="http://archaeology.link/ontology#Publisher">
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<rdfs:label xml:lang="en">Publisher</rdfs:label>
<skos:definition xml:lang="en">Creator of a thing.</skos:definition>
</owl:Class>
<!-- http://archaeology.link/ontology#Service -->
<owl:Class rdf:about="http://archaeology.link/ontology#Service">
<owl:equivalentClass rdf:resource="http://archaeology.link/ontology#Service_Collection"/>
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E55_Type"/>
<rdfs:label xml:lang="en">Service</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#Service_Collection -->
<owl:Class rdf:about="http://archaeology.link/ontology#Service_Collection">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Collection"/>
<rdfs:label xml:lang="en">Service Collection</rdfs:label>
</owl:Class>
<!-- http://archaeology.link/ontology#Tradition -->
<owl:Class rdf:about="http://archaeology.link/ontology#Tradition">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E55_Type"/>
<rdfs:label xml:lang="en">Tradition</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://www.w3.org/2004/02/skos/core#Concept"/>
<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://www.w3.org/2004/02/skos/core#Concept"/>
<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://www.w3.org/2004/02/skos/core#Concept"/>
<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>
<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#Property -->
<owl:Class rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property">
<rdfs:subClassOf rdf:resource="http://archaeology.link/ontology#AMT_Entity"/>
<rdfs:label xml:lang="en">Property</rdfs:label>
</owl:Class>
<!-- http://www.w3.org/2000/01/rdf-schema#Class -->
<owl:Class rdf:about="http://www.w3.org/2000/01/rdf-schema#Class">
<rdfs:subClassOf rdf:resource="http://archaeology.link/ontology#AMT_Entity"/>
<rdfs:label xml:lang="en">Class</rdfs:label>
</owl:Class>
<!-- http://www.w3.org/2004/02/skos/core#Collection -->
<owl:Class rdf:about="http://www.w3.org/2004/02/skos/core#Collection">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity"/>
<rdfs:label xml:lang="en">Collection</rdfs:label>
<skos:definition xml:lang="en">A meaningful collection of concepts.</skos:definition>
</owl:Class>