-
Notifications
You must be signed in to change notification settings - Fork 0
/
acdh-schema.owl
3678 lines (2836 loc) · 245 KB
/
acdh-schema.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="https://vocabs.acdh.oeaw.ac.at/acdh#"
xml:base="https://vocabs.acdh.oeaw.ac.at/acdh"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dct="http://purl.org/dc/terms/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:acdh="https://vocabs.acdh.oeaw.ac.at/schema#"
xmlns:foaf="http://xmlns.com/foaf/spec/#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#">
<owl:Ontology rdf:about="https://vocabs.acdh.oeaw.ac.at/schema">
<rdfs:comment xml:lang="en">Dies ist die Ontologie für ARCHE.
In den Definitionen der Eigenschaften, meint "Ressource A" das Subject und "Ressource B" das Objekt.
When Definitionen aus anderen Schemata (z. B. DataCite) wiederverwendet werden, wird die Referenz in Klammern angegeben: (DataCite: ContactPerson). When die ursprüngliche Definition leicht angepasst wurde, ist die Referenz mit "cf." markiert.</rdfs:comment>
<rdfs:comment xml:lang="en">This is the ontology for ARCHE.
In definitions of properties, "resource A" refers to the subject resource of the property and "resource B" to the object resource.
When reusing definitions from other vocabularies (esp. DataCite), the reference is given in brackets: (DataCite: ContactPerson). When the source definition was changed slightly the reference is marked with "cf."</rdfs:comment>
<rdfs:label>ARCHE Schema</rdfs:label>
<owl:versionInfo xml:lang="en">Version 1.0 released on 2017-11-03.</owl:versionInfo>
<owl:versionInfo xml:lang="de">Version 1.0. veröffentlicht am 2017-11-03.</owl:versionInfo>
<owl:versionInfo xml:lang="en">Version 1.1 released on 2018-01-15.
Changed achd:language to acdh:hasLanguage.
Removed acdh:hasIssuedDate.
Introduced link to controlled vocabularies for datatype properties via annotation property acdh:vocabs.
Transformed some object properties into datatype properties (hasAccessRestriction, hasCategory, hasLifeCycleStatus) to link with controlled vocabulary.</owl:versionInfo>
<owl:versionInfo xml:lang="de">Version 1.1 veröffentlicht am 2018-01-15.
Name von achd:language auf acdh:hasLanguage geändert.
achd:hasIssuedDate wurde entfernt.
Link auf kontrollierte Vokabulare für datatype properties mittels der annotation property acdh:vocabs eingefügt.
Einige object properties (hasAccessRestriction, hasCategory, hasLifeCycleStatus) wurden in datatype properties umgewandelt, um sie auf kontrollierte Vokabulare zu verlinken.</owl:versionInfo>
<owl:versionInfo xml:lang="en">Version 1.2 released on 2018-06-11.
Removed hasCopyrightedDate, hasValidEndDate, hasValidStartDate, cites, compiles, isAppliedMethod, isCitedBy, isCompiledBy, isDerivedFrom, isFormat, isIdenticalTo, isLicense, isOriginalFormOf, isReferencedBy, isRelatedDiscipline, isReviewedBy, isSchema, isSubject, isSupplementTo, isSupplementedBy, isTransferMethod, isVariantFormOf, references, and reviews.
Introduced hasRestrictionRole and hasTemporalCoverageIdentifier.
Transformed further object properties into datatype properties (hasSchema, hasTransferMethod, hasSubject, hasRelatedDiscipline, hasLicense, hasFormat, hasAppliedMethod).
Renamed several properties starting with is... to is...Of to indicate direction of relation. Also renamed hasEndpoint to hasLandingPage.
Introduced Helper classes to avoid anonymous class unions. Added domains and ranges to all properties accordingly.
Introduced annotation property acdh:ordering to indicate how properties should be ordered when displayed in a form.
Introduced annotation property acdh:recommendedClass to indicate in which class a property is recommended, but not mandatory.</owl:versionInfo>
<owl:versionInfo xml:lang="de">Version 1.2 veröffentlicht am 2018-06-11.
Weitere object properties wurden entfernt: hasCopyrightedDate, hasValidEndDate, hasValidStartDate, cites, compiles, isAppliedMethod, isCitedBy, isCompiledBy, isDerivedFrom, isFormat, isIdenticalTo, isLicense, isOriginalFormOf, isReferencedBy, isRelatedDiscipline, isReviewedBy, isSchema, isSubject, isSupplementTo, isSupplementedBy, isTransferMethod, isVariantFormOf, references und reviews.
Neu sind: hasRestrictionRole und hasTemporalCoverageIdentifier.
Weitere object properties wurden in datatype properties umgewandelt (hasSchema, hasTransferMethod, hasSubject, hasRelatedDiscipline, hasLicense, hasFormat, hasAppliedMethod).
Umbenennung von properties, die mit is... anfangen in is...Of, um die richtung der Relation deutlicher anzuzeigen. Außerdem wurde hasEndpoint in hasLandingPage umbenannt.
Helper Klassen wurden eingeführt, um anonyme Vereinigungen von Klassen zu vermeiden. Domains und ranges wurden für alle properties gesetzt.
Die annotation property acdh:ordering wurde eingeführt, um anzuzeigen in welcher Reihenfolge properties in einem Formular angezeigt werden sollten.
Die annotation annotation property acdh:recommendedClass wurde eingeführt, um anzuzeigen in welcher Klasse eine property empfohlen, aber nicht verpflichtend ist.</owl:versionInfo>
<owl:versionInfo xml:lang="en">Version 1.3 released on 2019-09-12.
Added missing range to acdh:hasAppliedMethod
Added link to controlled vocabulary for acdh:hasRelatedDiscipline
Added link to controlled vocabulary for acdh:hasLanguage
Introduced new property acdh:hasOaiSet
Increased set of mandatory properties
Added and corrected English and German descriptions for all properties.</owl:versionInfo>
<owl:versionInfo xml:lang="de">Version 1.3 veröffentlicht am 2019-09-12.
Fehlende range-Angabe an acdh:hasAppliedMethod hinzugefügt
Link auf kontrolliertes Vokabular hinzugefügt für acdh:hasRelatedDiscipline
Link auf kontrolliertes Vokabular hinzugefügt für acdh:hasLanguage
Neues Attribut hinzugefügt: acdh:hasOaiSet
Set von verpflichtenden Attributen erhöht.
Englische und Deutsche Beschreibungen für alle Attribute hinzugefügt und korrigiert.</owl:versionInfo>
<owl:versionInfo xml:lang="en">Version 1.4 released on 2019-12-05.
hasLastName no longer required for class Person, but hasTitle is.</owl:versionInfo>
<owl:versionInfo xml:lang="de">Version 1.4 veröffentlicht am 2019-12-05.
hasLastName ist nicht mehr verpflichtend für die Klasse Person, aber hasTitle ist es.</owl:versionInfo>
<owl:versionInfo xml:lang="en">Version 1.5 released on 2020-02-29.
New property acdh:hasOaiSet with range xsd:string. Terms should come from vocabulary indicated in acdh:vocabs
Introduced annotation property acdh:langTag with range xsd:boolean. It is set to true for properties where a language tag is mandatory.</owl:versionInfo>
<owl:versionInfo xml:lang="de">Version 1.5 veröffentlicht am 2019-02-29.
Neues attribut acdh:hasOaiSet mit range xsd:string eingeführt. Begriffe sollen aus dem mit acdh:vocabs angegebenen Vokabular verwendet werden.
Die annotation property acdh:langTag wurde eingeführt. Sie hat den range xsd:boolean. Sie wurde mit dem Wert 'true' für alle attribute gesetzt, in denen Sprachmarker verpflichtend sind.</owl:versionInfo>
<owl:versionInfo xml:lang="en">Version 1.6 released on 2020-02-29.
Introduced vocabulary for acdh:hasLicense</owl:versionInfo>
<owl:versionInfo xml:lang="de">Version 1.6 veröffentlicht am 2019-02-29.
Vokabular für acdh:hasLicense eingefügt.</owl:versionInfo>
<owl:versionInfo xml:lang="en">Version 1.7 released on 2020-05-08.
acdh:vocabs annotation property values adjusted to point to endpoints providing actual vocabulary data (instead of a WWW GUI). This is necessary for tools to make use of the acdh:vocabs annotation property.</owl:versionInfo>
<owl:versionInfo xml:lang="en">Version 1.8 released on 2020-07-07.
Change type of hasLanguage to xsd:anyURI.
Introduced helper class CollectionOrImageorResource.
Introducted hasDigitisingAgent, hasLicenseSummary, hasAccessRestrictionSummary.</owl:versionInfo>
<owl:versionInfo xml:lang="en">Version 1.9 released on 2020-07-16.
Added annotation properties acdh:automatedFill and acdh:defaultValue.
Introduced helper class ImageorResource.
Introduced hasCreatedDateOriginal.</owl:versionInfo>
<owl:versionInfo xml:lang="en">Version 2.0 released on 2021-02-15.
An overhauled version of the ontology with many small and some bigger changes, including updates of class and property definitions and translations.
Changed Datatype Properties to Object Properties with range skos:Concept (acdh:hasAccessRestriction, acdh:hasCategory, acdh:hasLanguage, acdh:hasLicense, acdh:hasLifeCycleStatus, acdh:hasRelatedDiscipline, acdh:hasOAISet).
Introduced class acdh:TopCollection.
Removed class acdh:Image, acdh:ImageOrResource, and acdh:CollectionOrImageorResource.
Introduced technical properties.
Introduced acdh:hasIssuedDate with domain acdh:Publication.
Introduced acdh:hasCreatedStartDateOriginal and acdh:hasCreatedEndDateOriginal.
Introduced acdh:hasVersionInfo.
Introduced acdh:hasMetadataPid.
Removed acdh:hasLandingPage, acdh:hasCreatedDate, and acdh:hasCreatedDateOriginal from the ontology.
Removed inverse properties (acdh:isActorOf, acdh:isAuthorOf, acdh:isContactOf, acdh:isContributorOf, acdh:isCoverageOf, acdh:isCreatorOf, acdh:isCuratorOf, acdh:isDepositorOf, acdh:isEditorOf, acdh:isFunderOf, acdh:isHostingOf, acdh:isLicensorOf, acdh:isDigitisingAgentOf, acdh:isMetadataCreatorOf, acdh:isOwnerOf, acdh:isPrincipalInvestigatorOf, acdh:isRightsHolderOf, acdh:isSpatialCoverageOf, acdh:hasMember, acdh:hasPart, acdh:hasSource, acdh:hasTitleImage, acdh:hasMetadata, acdh:isDocumentedBy, acdh:isContinuedBy, acdh:hasDerivedPublication).
Changed cardinality for acdh:hasLicense for acdh:Collection to 0-1.
Changed domain for acdh:hasCompleteness and acdh:hasNumberOfItems (to exclude acdh:Resource).
Extended domain of acdh:hasTableOfContents to acdh:Resources.
Extended domain of acdh:hasAvailableDate and hasAccessRestriction to owl:Thing.
Introduced annotation acdh:inverse indicating the label of inverse relation of a property.
Introduced annotation acdh:automatedfill to acdh:hasLocationPath.</owl:versionInfo>
<owl:versionInfo xml:lang="de">Version 2.0 veröffentlicht am 2021-02-15.
Eine gründlich überarbeitete Version der Ontologie mit vielen kleinen und eineigen größeren Anpassungen, inklusive Aktualisierung der Beschreibungen und Übersetzungen von Klassen und Eigenschaften.
Einige Datatype Properties wurden in Object Properties mit range skos:Concept umgewandelt (acdh:hasAccessRestriction, acdh:hasCategory, acdh:hasLanguage, acdh:hasLicense, acdh:hasLifeCycleStatus, acdh:hasRelatedDiscipline, acdh:hasOAISet).
Klase acdh:TopCollection eingefügt.
Klassen acdh:Image, acdh:ImageOrResource, und acdh:CollectionOrImageorResource enfernt.
Technische Eigenschaften eingefügt.
acdh:hasIssuedDate mit domain acdh:Publication eingefügt.
acdh:hasCreatedStartDateOriginal und acdh:hasCreatedEndDateOriginal eingefügt.
acdh:hasVersionInfo eingefügt.
acdh:hasMetadataPid eingefügt.
acdh:hasLandingPage, acdh:hasCreatedDate, und acdh:hasCreatedDateOriginal entfernt.
Inverse Eigenschaften wurden entfernt (acdh:isActorOf, acdh:isAuthorOf, acdh:isContactOf, acdh:isContributorOf, acdh:isCoverageOf, acdh:isCreatorOf, acdh:isCuratorOf, acdh:isDepositorOf, acdh:isEditorOf, acdh:isFunderOf, acdh:isHostingOf, acdh:isLicensorOf, acdh:isDigitisingAgentOf, acdh:isMetadataCreatorOf, acdh:isOwnerOf, acdh:isPrincipalInvestigatorOf, acdh:isRightsHolderOf, acdh:isSpatialCoverageOf, acdh:hasMember, acdh:hasPart, acdh:hasSource, acdh:hasTitleImage, acdh:hasMetadata, acdh:isDocumentedBy, acdh:isContinuedBy, acdh:hasDerivedPublication).
Kardinalität von acdh:hasLicense für acdh:Collection zu 0-1 geändert.
Domain für acdh:hasCompleteness und acdh:hasNumberOfItems geändert (um acdh:Resource auszunehmen).
Domain von acdh:hasTableOfContents zu acdh:Resources geändert.
Domain von acdh:hasAvailableDate und hasAccessRestriction auf owl:Thing ausgeweitet.
Annotation acdh:inverse eingefügt, welche die Beschriftung der inversen Relation einer Eigenschaft angibt.
Annotation acdh:automatedfill für acdh:hasLocationPath eingefügt.</owl:versionInfo>
<owl:versionInfo xml:lang="en">Version 3.0 released on 2022-01-31.
Introduced acdh:hasTag with domain owl:Thing.
Renamed acdh:isDerivedPublication to acdh:isDerivedPublicationOf
Changed domain for acdh:hasFilename (to include acdh:Collection and acdh:TopCollection).
Changed cardinality for acdh:isTitleImageOf for acdh:Resource to 0-n to allow multiple uses of images.
Changed cardinality for acdh:hasCategory for acdh:BinaryContent to 0-n to allow multiple assignement of categories.</owl:versionInfo>
<owl:versionInfo xml:lang="de">Version 3.0 veröffentlicht am 2022-01-31.
acdh:hasTag mit domain owl:Thing eingefügt.
Umbenennung von acdh:isDerivedPublication zu acdh:isDerivedPublicationOf
Domain für acdh:hasFilename geändert (um acdh:Collection und acdh:TopCollection zu inkludieren).
Kardinalität von acdh:isTitleImageOf für acdh:Resource geändert zu 0-n, um die mehrfache Nutzung von Bildern zu erlauben.
Kardinalität von acdh:hasCategory für acdh:BinaryContent gändert zu 0-n, um mehrere Kategorien zu erlauben.</owl:versionInfo>
<owl:versionInfo xml:lang="en">Version 4.0 released on 2023-12-22.
Renamed to ARCHE Schema (was ACDH Schema before)
Introduced annotation property acdh:exampleValue to allow for the inclusion of example values.
Introduced acdh:hasNextItem with domain acdh:RepoObject.
Introduced acdh:hasIiifManifest with domain acdh:BinaryContent.
Introduced acdh:hasRightsInfomation with domain acdh:RepoObject.
Expanded description for acdh:hasOaiSet to include visibility in OpenAIRE.
Dropped acdh:hasLocationPath as it wasn't technically required anymore.
Added acdh:automatedFill 'true' to acdh:disseminationServices.
Added acdh:automatedFill 'true' to acdh:technical.
Changed range for acdh:hasLatitude to float.
Changed range for acdh:hasLongitude to float.
Changed range for acdh:hasRawBinarySize to positiveInteger.</owl:versionInfo>
<owl:versionInfo xml:lang="de">Version 4.0 veröffentlicht am 2023-12-22.
Umbenannt zu ARCHE Schema (war vorher ACDH Schema)
Annotation property acdh:exampleValue zur Eingabe von Beispielwerten eingefügt.
acdh:hasNextItem mit domain acdh:RepoObject eingefügt.
acdh:hasIiifManifest mit domain acdh:BinaryContent eingefügt.
acdh:hasRightsInfomation mit domain acdh:RepoObject.
Beschreibung von acdh:hasOaiSet erweitert, um die Sichtbarkeit in OpenAIRE zu berücksichtigen.
acdh:hasLocationPath entfernt, da diese Eigenschaft technisch nicht mehr benötigt wird.
acdh:automatedFill 'true' für acdh:disseminationServices eingefügt.
acdh:automatedFill 'true' für acdh:technical eingefügt.
Range für acdh:hasLatitude zu float geändert.
Range für acdh:hasLongitude zu float geändert.
Range für acdh:hasRawBinarySize zu positiveInteger geändert.</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
<rdfs:label>rdfs:label</rdfs:label>
</rdf:Description>
<!-- http://www.w3.org/2002/07/owl#inverseOf -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#inverseOf"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel"/>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#automatedFill -->
<owl:AnnotationProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#automatedFill">
<rdfs:comment xml:lang="de">Der Wert "true" bedeutet, dass die Eigenschaft automatisch durch eine Repositoriumssoftware verwaltet wird und nicht manuell ausgefüllt werden muss.</rdfs:comment>
<rdfs:comment xml:lang="en">Value of "true" indicates a property is automatically managed by a repository software and must not be provided manually.</rdfs:comment>
<rdfs:label>automated fill</rdfs:label>
<skos:altLabel xml:lang="de">Eigenschaft, die von der Repositoriumssoftware verwaltet wird</skos:altLabel>
<skos:altLabel xml:lang="en">Property managed by the repository software</skos:altLabel>
</owl:AnnotationProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#defaultValue -->
<owl:AnnotationProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#defaultValue">
<rdfs:comment xml:lang="de">Gibt den Standardwert einer Eigenschaft an. Der Standardwert wird verwendet, wenn diese Eigenschaft in einer Klasse verwendet wird, aber kein Wert angegeben wurde.</rdfs:comment>
<rdfs:comment xml:lang="en">Indicates a default property value. The default value is assigned when a class matches property's domain but no property value has been provided.</rdfs:comment>
<rdfs:label>default value</rdfs:label>
<skos:altLabel xml:lang="en">Default property value</skos:altLabel>
<skos:altLabel xml:lang="de">Standardwert</skos:altLabel>
</owl:AnnotationProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#exampleValue -->
<owl:AnnotationProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#exampleValue">
<rdfs:comment xml:lang="de">Gibt beispielhafte Werte für diese Eigenschaft an.</rdfs:comment>
<rdfs:comment xml:lang="en">Indicates example values for this property.</rdfs:comment>
<rdfs:label>example value</rdfs:label>
<skos:altLabel xml:lang="de">Beispielwert</skos:altLabel>
<skos:altLabel xml:lang="en">Example value</skos:altLabel>
</owl:AnnotationProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#inverse -->
<owl:AnnotationProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#inverse">
<rdfs:comment xml:lang="de">Gibt die Bezeichnung an, die verwendet werden soll, wenn die inverse Relation einer Eigenschaft angezeigt wird, z.B. um die Anzeige der inversen Relation 'setzt fort' als 'wird fortgesetzt durch' zu ermöglichen. Das Vorhandensein dieser Annotation bedeutet, dass solche inversen Relationen angezeigt werden sollen und, wenn eine GUI die Datenbearbeitung gestattet, dem Nutzer die Eingabe von Daten für beide Fälle ermöglicht. Im Hintergrund wird die als Subjekt des inversen Eigenschaft-Tripels bereitgestellte Ressource als ein Objekt des ursprünglichen Eigenschafts-Tripels gespeichert.</rdfs:comment>
<rdfs:comment xml:lang="en">Indicates a property label which should be used when displaying the inverse relation of the property, e.g. to allow to display the inverse of 'continues' as 'is continued by'. The presence of this annotation property means that such "inverse relations" should be displayed and if a GUI allows data modification, it should allow the user to input data for both. In the background the resource provided as a subject of the inverse property triple will be stored as an object of the original property triple.</rdfs:comment>
<rdfs:label xml:lang="en">inverse</rdfs:label>
<skos:altLabel xml:lang="de">Bezeichnung der inversen Eigenschaft</skos:altLabel>
<skos:altLabel xml:lang="en">Label of inverse property</skos:altLabel>
</owl:AnnotationProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#ordering -->
<owl:AnnotationProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#ordering">
<rdfs:comment xml:lang="en">A number indicating property display order in a GUI. Properties with lower ordering value are displayed first.</rdfs:comment>
<rdfs:comment xml:lang="de">Eine Zahl, die angibt, in welcher Reihenfolge die Eigenschaft in einer GUI angezeigt werden soll. Eigenschaften mit niedrigeren Werten werden zuerst angezeigt.</rdfs:comment>
<rdfs:label>ordering</rdfs:label>
<skos:altLabel xml:lang="de">Anzeigereihenfolge der Eigenschaft</skos:altLabel>
<skos:altLabel xml:lang="en">Property display order</skos:altLabel>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
</owl:AnnotationProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#recommendedClass -->
<owl:AnnotationProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#recommendedClass">
<rdfs:comment xml:lang="en">Used to indicate in which class a property is recommended, but not mandatory.
Insert full IRI of class</rdfs:comment>
<rdfs:comment xml:lang="de">Wird verwendet, um anzugeben, in welcher Klasse eine Eigenschaft empfohlen, aber nicht zwingend erforderlich ist.
Den vollständigen IRI der Klasse eingeben.</rdfs:comment>
<rdfs:label>recommended class</rdfs:label>
<skos:altLabel xml:lang="de">Empfohlen in Klasse</skos:altLabel>
<skos:altLabel xml:lang="en">Recommended in class</skos:altLabel>
<rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:AnnotationProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#vocabs -->
<owl:AnnotationProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#vocabs">
<rdfs:comment xml:lang="en">An URL of a SKOS vocabulary providing allowed property values list. The URL must point to the vocabulary in a machine-readable format (RDF-XML, RDF-turtle or RDF-ntriples).</rdfs:comment>
<rdfs:comment xml:lang="de">Eine URL eines SKOS-Vokabulars, das eine Liste erlaubter Werte zur Verfügung stellt. Die URL muss auf ein Vokabular in einem maschinenlesbares Format verweisen (RDF-XML, RDF-turtle oder RDF-ntriples).</rdfs:comment>
<rdfs:label>vocabs</rdfs:label>
<skos:altLabel xml:lang="de">URL eines SKOS-Vokabulars mit erlaubten Werten</skos:altLabel>
<skos:altLabel xml:lang="en">URL of a SKOS vocabulary providing allowed values list</skos:altLabel>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#anyURI"/>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2001/XMLSchema#date -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://vocabs.acdh.oeaw.ac.at/schema#continues -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#continues">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#relation"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ContainerOrResource"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ContainerOrResource"/>
<rdfs:comment xml:lang="de">Gibt an, dass (A) eine Fortsetzung des Werks (B) ist.</rdfs:comment>
<rdfs:comment xml:lang="en">Indicates (A) is a continuation of the work (B).</rdfs:comment>
<rdfs:label xml:lang="en">continues</rdfs:label>
<skos:altLabel xml:lang="en">Continues</skos:altLabel>
<skos:altLabel xml:lang="de">Setzt fort</skos:altLabel>
<acdh:inverse xml:lang="en">is continued by</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">143</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#documents -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#documents">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#relation"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#CollectionOrResourceOrPublication"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#CollectionOrResource"/>
<rdfs:comment xml:lang="de">Gibt an, dass (A) die Dokumentation zu (B) ist.</rdfs:comment>
<rdfs:comment xml:lang="en">Indicates (A) is documentation about (B).</rdfs:comment>
<rdfs:label xml:lang="en">documents</rdfs:label>
<skos:altLabel xml:lang="en">Documents</skos:altLabel>
<skos:altLabel xml:lang="de">Dokumentiert</skos:altLabel>
<acdh:inverse xml:lang="en">is documented by</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">144</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasAccessRestriction -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasAccessRestriction">
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#BinaryContent"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:comment xml:lang="en">Denotes if restricted access applies to the Resource (A). Choose from list.</rdfs:comment>
<rdfs:comment xml:lang="de">Gibt an, ob der Zugriff auf die Ressource (A) eingeschränkt ist. Wählen Sie aus der Liste aus.</rdfs:comment>
<rdfs:label xml:lang="en">has access restriction</rdfs:label>
<skos:altLabel xml:lang="en">Access Restriction</skos:altLabel>
<skos:altLabel xml:lang="de">Zugriffsbeschränkung</skos:altLabel>
<acdh:defaultValue>https://vocabs.acdh.oeaw.ac.at/archeaccessrestrictions/public</acdh:defaultValue>
<acdh:exampleValue xml:lang="en">public</acdh:exampleValue>
<acdh:exampleValue xml:lang="de">öffentlich</acdh:exampleValue>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">116</acdh:ordering>
<acdh:vocabs>https://vocabs.acdh.oeaw.ac.at/rest/v1/arche_access_restrictions/data</acdh:vocabs>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasActor -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasActor">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasCoverage"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ContainerOrResource"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="en">Any Person or Organisation (B) which the given Project, Collection or Resource (A) mentions or is about.</rdfs:comment>
<rdfs:comment xml:lang="de">Jede Person oder Organisation (B), die in der vorliegenden Ressource, der Sammlung oder dem Projekt (A) erwähnt wird oder mit der sie sich befasst.</rdfs:comment>
<rdfs:label xml:lang="en">has actor</rdfs:label>
<skos:altLabel xml:lang="en">Has Actor</skos:altLabel>
<skos:altLabel xml:lang="de">Hat Akteur</skos:altLabel>
<acdh:inverse xml:lang="en">is actor of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">92</acdh:ordering>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Collection"/>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Project"/>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasAuthor -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasAuthor">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasCreator"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#CollectionOrReMeOrPublication"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="en">Author of the resource who will appear in its citation. Especially meant for written resources. All other kinds of creators should be included with hasCreator.</rdfs:comment>
<rdfs:comment xml:lang="de">Autor der Ressource, welcher in der Quellenangabe aufscheinen wird. Speziell für schriftliche Ressourcen gedacht. Alle anderen Arten von Urhebern sollten mithilfe von hasCreator angegeben werden.</rdfs:comment>
<rdfs:label xml:lang="en">has author</rdfs:label>
<skos:altLabel xml:lang="en">Author(s)</skos:altLabel>
<skos:altLabel xml:lang="de">Autor(en)</skos:altLabel>
<acdh:inverse xml:lang="en">is author of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">73</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasCategory -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasCategory">
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#BinaryContent"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:comment xml:lang="de">Art der Ressource, z.B. Bild. Wählen Sie aus der Liste aus. Kann mithilfe der Eigenschaften hasDescription, hasFormat, hasExtent usw. verfeinert werden.</rdfs:comment>
<rdfs:comment xml:lang="en">Type of Resource, e.g. image. Choose from list. Can be refined with hasDescription, hasFormat, hasExtent, etc.</rdfs:comment>
<rdfs:label xml:lang="en">has category</rdfs:label>
<skos:altLabel xml:lang="en">Category</skos:altLabel>
<skos:altLabel xml:lang="de">Kategorie</skos:altLabel>
<acdh:exampleValue xml:lang="de">Bild</acdh:exampleValue>
<acdh:exampleValue xml:lang="en">Image</acdh:exampleValue>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">47</acdh:ordering>
<acdh:vocabs>https://vocabs.acdh.oeaw.ac.at/rest/v1/arche_category/data</acdh:vocabs>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasContact -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasContact">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ContainerOrResource"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="de">Person oder Organisation (B), die für Informationen über eine Ressource, Sammlung oder ein Projekt (A) kontaktiert werden kann.
Person mit Kenntnissen über den Datenzugriff, die Fehlerbehebung oder andere fachspezifische Probleme im Zusammenhang mit der Ressource. (vgl. DataCite: ContactPerson)</rdfs:comment>
<rdfs:comment xml:lang="en">Person or Organisation (B) that can be contacted regarding information about a Resource, a Collection or a Project (A).
Person with knowledge of how to access, troubleshoot or otherwise field issues related to the resource. (cf. DataCite: ContactPerson)</rdfs:comment>
<rdfs:label xml:lang="en">has contact</rdfs:label>
<skos:altLabel xml:lang="en">Contact(s)</skos:altLabel>
<skos:altLabel xml:lang="de">Kontakt(e)</skos:altLabel>
<acdh:exampleValue>Austrian Centre for Digital Humanities and Cultural Heritage</acdh:exampleValue>
<acdh:inverse xml:lang="en">is contact of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">71</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasContributor -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Main"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="de">Person oder Organisation (B), die aktiv an der Erstellung, Pflege oder Bearbeitung einer Ressource, Sammlung oder Projekts (A) beteiligt war. Jede Person oder Institution, die einen wesentlichen Beitrag zur Entwicklung und/oder Erhaltung der Ressource leistet, deren Beitrag aber nicht einer anderen bereits definierten Rolle entspricht. (vgl. DataCite: Other)
Dies ist eine generische Eigenschaft. Verwenden Sie nach Möglichkeit eine der spezifischeren untergeordneten Eigenschaften.</rdfs:comment>
<rdfs:comment xml:lang="en">Person or Organisation (B) who was actively involved in creating, curating or editing a Resource, a Collection or a Project (A). Any person or institution making a significant contribution to the development and/or maintenance of the resource, but whose contribution does not “fit” to another already defined role. (cf. DataCite: Other)
This is a generic property. Use one of the more specific subproperties where possible.</rdfs:comment>
<rdfs:label xml:lang="en">has contributor</rdfs:label>
<skos:altLabel xml:lang="en">Contributor(s)</skos:altLabel>
<skos:altLabel xml:lang="de">Mitarbeiter oder Beitragende</skos:altLabel>
<acdh:exampleValue xml:lang="de">Erika Musterfrau</acdh:exampleValue>
<acdh:exampleValue xml:lang="en">Jane Doe</acdh:exampleValue>
<acdh:exampleValue xml:lang="en">John Doe</acdh:exampleValue>
<acdh:exampleValue xml:lang="de">Max Mustermann</acdh:exampleValue>
<acdh:inverse xml:lang="en">is contributor of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">75</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasCoverage -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasCoverage">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ContainerOrResource"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#AgentOrPlace"/>
<rdfs:comment xml:lang="de">Allgemeine Angabe, welche Dimensionen (Gegenstand, Ort, Zeit) (B) in der Ressource (ihrem Inhalt) (A) abgedeckt/erwähnt werden. Verwenden Sie nach Möglichkeit die spezifischeren untergeordneten Eigenschaften. Z.B. die Zeitspanne '1874 - 1883' für eine Reihe von Bildern, die den Bau des Parlaments in Wien darstellen, den Akteur 'Mozart' für eine Edition über Mozart oder den Ort 'Wien' für eine Sammlung von Stadtplänen von Wien.</rdfs:comment>
<rdfs:comment xml:lang="en">Generic indication of what is covered/mentioned (B) in the resource (its content) (A) along various dimensions (subject, space, time). Use the more specific sub-properties where possible. E.g. the time span '1874-1883' for a set of images depicting the construction of the parliament in Vienna, the actor 'Mozart' for an edition about Mozart or the place 'Vienna' for a collection of city maps of Vienna.</rdfs:comment>
<rdfs:label xml:lang="en">has coverage</rdfs:label>
<owl:inverseOf></owl:inverseOf>
<skos:altLabel xml:lang="en">Coverage</skos:altLabel>
<skos:altLabel xml:lang="de">Deckt ab</skos:altLabel>
<acdh:exampleValue>1874-1883</acdh:exampleValue>
<acdh:exampleValue xml:lang="de">Mozart</acdh:exampleValue>
<acdh:exampleValue xml:lang="en">Mozart</acdh:exampleValue>
<acdh:exampleValue xml:lang="en">Vienna</acdh:exampleValue>
<acdh:exampleValue xml:lang="de">Wien</acdh:exampleValue>
<acdh:inverse xml:lang="en">is coverage of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">91</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasCreator -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasCreator">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#RepoObject"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="en">Person (B) responsible for the (content) creation of resource (A). Will be included in the citation.</rdfs:comment>
<rdfs:comment xml:lang="de">Person (B), die für die Erstellung (Inhalt) einer Ressource (A) verantwortlich ist. Scheint in der Quellenangabe auf.</rdfs:comment>
<rdfs:label xml:lang="en">has creator</rdfs:label>
<skos:altLabel xml:lang="en">Creator(s)</skos:altLabel>
<skos:altLabel xml:lang="de">Urheber</skos:altLabel>
<acdh:inverse xml:lang="en">is creator of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">72</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasCurator -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasCurator">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#RepoObject"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="en">Person (B) tasked with reviewing, enhancing, cleaning or standardising data and the associated metadata submitted for storage, use and maintenance within a data centre or repository. (cf. DataCite: DataCurator)</rdfs:comment>
<rdfs:comment xml:lang="de">Person (B), die mit der Überprüfung, Verbesserung, Bereinigung oder Standardisierung von Daten und den zugehörigen Metadaten beauftragt ist, die zur Speicherung, Verwendung und Wartung in einem Rechenzentrum oder Repositorium eingereicht wurden. (vgl. DataCite: DataCurator)</rdfs:comment>
<rdfs:label xml:lang="en">has curator</rdfs:label>
<skos:altLabel xml:lang="en">Data Curator(s)</skos:altLabel>
<skos:altLabel xml:lang="de">Datenkurator(en)</skos:altLabel>
<acdh:inverse xml:lang="en">is curator of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">178</acdh:ordering>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Collection"/>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Metadata"/>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Resource"/>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasDepositor -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasDepositor">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#RepoObject"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="de">Person oder Organisation (B), die für die Übermittlung einer Ressource (A) an das Repositorium verantwortlich ist.</rdfs:comment>
<rdfs:comment xml:lang="en">Person or organisation (B) responsible for submitting a resource (A) to the repository.</rdfs:comment>
<rdfs:label xml:lang="en">has depositor</rdfs:label>
<skos:altLabel xml:lang="de">Datengeber</skos:altLabel>
<skos:altLabel xml:lang="en">Depositor(s)</skos:altLabel>
<acdh:exampleValue xml:lang="en">See hasContributor for Person example and hasContact for Organisation.</acdh:exampleValue>
<acdh:exampleValue xml:lang="de">Siehe hasContributor für ein Beispiel zu Personen und hasContact für ein Beispiel zu Organisationen.</acdh:exampleValue>
<acdh:inverse xml:lang="en">is depositor of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">170</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasDigitisingAgent -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasDigitisingAgent">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#CollectionOrResource"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="de">Person oder Organisation (B), die für die Erstellung der digitalen Repräsentation einer Sammlung oder einer Ressource (A) von einem analogen Objekt verantwortlich ist. Dazu zählen z.B. Personen, die für das Scannen von analogen 2D-Ressourcen, das 3D-Scannen von Objekten und die Eingabe von Daten aus einer vorhandenen analogen Ressource in eine strukturierte digitale Repräsentation (z.B. Tabelle, Datenbank, XML) verantwortlich sind.</rdfs:comment>
<rdfs:comment xml:lang="en">Person or Organisation (B) responsible for creating the digital representation of a Collection or a Resource (A) of an analogue object. This for example includes persons responsible for scanning 2D analogue resources, 3D scanning of objects and entering data into a structured digital representation (e.g. spreadsheet, database, XML) from an existing analogue resource.</rdfs:comment>
<rdfs:label xml:lang="en">has digitising agent</rdfs:label>
<skos:altLabel xml:lang="de">Digitalisierungsakteur(e)</skos:altLabel>
<skos:altLabel xml:lang="en">Digitising Agent(s)</skos:altLabel>
<acdh:inverse xml:lang="en">is digitising agent of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">76</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasEditor -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasEditor">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#CollectionOrReMeOrPublication"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="en">A person who oversees the details related to the publication format of the resource. (cf. DataCite: Editor)</rdfs:comment>
<rdfs:comment xml:lang="de">Eine Person, die sich mit den Details des Publikationsformats der Ressource befasst. (vgl. DataCite: Editor)</rdfs:comment>
<rdfs:label xml:lang="en">has editor</rdfs:label>
<skos:altLabel xml:lang="en">Editor(s)</skos:altLabel>
<skos:altLabel xml:lang="de">Herausgeber</skos:altLabel>
<acdh:inverse xml:lang="en">is editor of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">74</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasFunder -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasFunder">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ContainerOrReMe"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="de">Person oder Organisation (B), die ein Projekt (A) finanziert hat. Person oder Organisation, die einen Vertrag abgeschlossen hat oder unter deren Schirmherrschaft ein Werk geschrieben, gedruckt, veröffentlicht, entwickelt usw. wurde. (vgl. DataCite: Sponsor)</rdfs:comment>
<rdfs:comment xml:lang="en">Person or Organisation (B) which provided funding for a project (A). Person or organisation that issued a contract or under the auspices of which a work has been written, printed, published, developed, etc. (cf. DataCite: Sponsor)</rdfs:comment>
<rdfs:label xml:lang="en">has funder</rdfs:label>
<skos:altLabel xml:lang="en">Funder(s)</skos:altLabel>
<skos:altLabel xml:lang="de">Geldgeber</skos:altLabel>
<acdh:inverse xml:lang="en">is funder of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">79</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasHosting -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasHosting">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#RepoObject"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="en">Institution responsible for preservation and hosting of a resource. (cf. DataCite: HostingInstitution) Typically, the organisation allowing the resource to be available on the internet through the provision of its hardware, software and operating support.</rdfs:comment>
<rdfs:comment xml:lang="de">Institution, die für die Bewahrung und das Hosting einer Ressource verantwortlich ist. (vgl. DataCite: HostingInstitution) Typischerweise die Organisation, die es ermöglicht, dass die Ressource im Internet durch die Bereitstellung ihrer Hardware-, Software- und Betriebsunterstützung verfügbar ist.</rdfs:comment>
<rdfs:label xml:lang="en">has hosting</rdfs:label>
<skos:altLabel xml:lang="en">Hosted by</skos:altLabel>
<skos:altLabel xml:lang="de">Wird erhalten/bereitgestellt von</skos:altLabel>
<acdh:defaultValue>https://id.acdh.oeaw.ac.at/arche</acdh:defaultValue>
<acdh:inverse xml:lang="en">is hosting of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">179</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasIdentifier -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasIdentifier">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<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:comment xml:lang="de">Eindeutiger Identifikator, der von ARCHE vergeben und in ARCHE-Systemen verwendet wird, sowie Identifikatoren mit einer stabilen URL oder URI, die von anderen Parteien zugewiesen wurden, z.B. DOI, Geonamen-ID oder URN.
Eingabe als URI.
Handles sind mithilfe hasPid und alle anderen Identifikatoren ohne URL oder URI, wie lokal zugewiesene Identifikatoren, Projekt- oder Inventarnummern mit hasNonLinkedIdentifier anzugeben.</rdfs:comment>
<rdfs:comment xml:lang="en">Unique identifier given by ARCHE and used in ARCHE systems, as well as identifiers with a stable URL or URI assigned by other parties, e.g. a DOI, a geonames ID or an URN.
Input as URI.
Handles belong into hasPid and all other identifiers without URL or URI, like local assigned ones, project numbers or inventory numbers into hasNonLinkedIdentifier.</rdfs:comment>
<rdfs:label xml:lang="en">has identifier</rdfs:label>
<skos:altLabel xml:lang="en">Identifier(s)</skos:altLabel>
<skos:altLabel xml:lang="de">Identifikator(en)</skos:altLabel>
<acdh:exampleValue>https://doi.org/10.1109/5.771073</acdh:exampleValue>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasLanguage -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasLanguage">
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ProjectOrPublicationOrRepoObject"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:comment xml:lang="en">Language used in the entity. Encoded with 3-letter code according to ISO-639-3 (e.g. deu, eng, arz).</rdfs:comment>
<rdfs:comment xml:lang="de">Sprache, welche in der Entität verwendet wird. Kodiert als 3-Buchstaben-Code nach dem Standard ISO-639-3 (z.B. deu, eng, arz).</rdfs:comment>
<rdfs:label xml:lang="en">has language</rdfs:label>
<skos:altLabel xml:lang="en">Language</skos:altLabel>
<skos:altLabel xml:lang="de">Sprache</skos:altLabel>
<acdh:exampleValue>deu</acdh:exampleValue>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">41</acdh:ordering>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Collection"/>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Metadata"/>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Project"/>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Publication"/>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Resource"/>
<acdh:vocabs>https://vocabs.acdh.oeaw.ac.at/rest/v1/iso639_3/data</acdh:vocabs>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasLicense -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasLicense">
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#RepoObject"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:comment xml:lang="en">Denotes the license attached to an object.</rdfs:comment>
<rdfs:comment xml:lang="de">Lizenzangabe für ein Objekt.</rdfs:comment>
<rdfs:label xml:lang="en">has license</rdfs:label>
<skos:altLabel xml:lang="en">License</skos:altLabel>
<skos:altLabel xml:lang="de">Lizenz</skos:altLabel>
<acdh:exampleValue>CC-BY 4.0</acdh:exampleValue>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">113</acdh:ordering>
<acdh:vocabs>https://vocabs.acdh.oeaw.ac.at/rest/v1/arche_licenses/data</acdh:vocabs>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasLicensor -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasLicensor">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#RepoObject"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="de">Person oder Organisation (B), die für die Auswahl einer Lizenz für das Objekt (A) verantwortlich ist.</rdfs:comment>
<rdfs:comment xml:lang="en">Person or Organisation (B) responsible for choosing a license for the object (A).</rdfs:comment>
<rdfs:label xml:lang="en">has licensor</rdfs:label>
<skos:altLabel xml:lang="en">Licensor(s)</skos:altLabel>
<skos:altLabel xml:lang="de">Lizenzgeber</skos:altLabel>
<acdh:exampleValue xml:lang="en">See hasContributor for Person example and hasContact for Organisation.</acdh:exampleValue>
<acdh:exampleValue xml:lang="de">Siehe hasContributor für ein Beispiel zu Personen und hasContact für ein Beispiel zu Organisationen.</acdh:exampleValue>
<acdh:inverse xml:lang="en">is licensor of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">112</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasLifeCycleStatus -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasLifeCycleStatus">
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Container"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:comment xml:lang="de">Angabe, ob sich das Projekt oder die Sammlung (A) noch im Aufbau befindet oder bereits abgeschlossen ist. Eine ausführliche Statusbeschreibung kann mithilfe hasCompleteness angegeben werden.</rdfs:comment>
<rdfs:comment xml:lang="en">Indication if the Project or Collection (A) is still in the making or completed. A verbose status description can be added with acdh:hasCompleteness.</rdfs:comment>
<rdfs:label xml:lang="en">has life cycle status</rdfs:label>
<skos:altLabel xml:lang="de">Lebenszyklusstatus</skos:altLabel>
<skos:altLabel xml:lang="en">Life Cycle Status</skos:altLabel>
<acdh:exampleValue xml:lang="de">abgeschlossen</acdh:exampleValue>
<acdh:exampleValue xml:lang="en">completed</acdh:exampleValue>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">42</acdh:ordering>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Collection"/>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Project"/>
<acdh:vocabs>https://vocabs.acdh.oeaw.ac.at/rest/v1/arche_lifecycle_status/data</acdh:vocabs>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasMetadataCreator -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasMetadataCreator">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Main"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="de">Person oder Organisation (B), die für die Erstellung von Metadaten verantwortlich ist, die eine Entität (A) gemäß dem ARCHE-Schema beschreiben. Zusätzliche strukturierte und maschinenlesbare Metadaten in einem Format wie TEI, CMDI, LIDO usw. können als eine Entität der Klasse Metadaten hinzugefügt werden.</rdfs:comment>
<rdfs:comment xml:lang="en">Person or Organisation (B) responsible for creating metadata describing an entity according to the ARCHE schema. Additional structured and machine readable metadata in a format like a TEI, CMDI, LIDO etc. can be added as an entity of the Class Metadata.</rdfs:comment>
<rdfs:label xml:lang="en">has metadata creator</rdfs:label>
<skos:altLabel xml:lang="en">Metadata Creator(s)</skos:altLabel>
<skos:altLabel xml:lang="de">Metadatenersteller</skos:altLabel>
<acdh:exampleValue xml:lang="en">See hasContributor for Person example and hasContact for Organisation.</acdh:exampleValue>
<acdh:exampleValue xml:lang="de">Siehe hasContributor für ein Beispiel zu Personen und hasContact für ein Beispiel zu Organisationen.</acdh:exampleValue>
<acdh:inverse xml:lang="en">is metadata creator of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">80</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasNextItem -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasNextItem">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#relation"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#RepoObject"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#RepoObject"/>
<rdfs:comment xml:lang="de">Gibt das nächste Element (B) an, das auf das aktuelle Objekt (A) folgt. Mit dieser Eigenschaft kann die Reihenfolge von Ressourcen oder Sammlungen innerhalb einer enthaltenen Sammlung festgelegt werden. Wird kein Wert angegeben, wird die Eigenschaft automatisch anhand der aufsteigenden alphabetischen Sortierung der Dateinamen gefüllt.</rdfs:comment>
<rdfs:comment xml:lang="en">Indicates the next item (B) following the current object (A). With this property, the order of Resources or Collections within a containing (Top)Collection can be established. The (Top)Collection should also have the hasNextItem property pointing to its first child. Collections may have two hasNextItem properties - one pointing to the next Collection within the same parent and the other pointing to its first child.</rdfs:comment>
<rdfs:label xml:lang="en">has next item</rdfs:label>
<skos:altLabel xml:lang="en">Next item</skos:altLabel>
<skos:altLabel xml:lang="de">Nächstes Element</skos:altLabel>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">152</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasOaiSet -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasOaiSet">
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ProjectOrRepoObject"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:comment xml:lang="en">OAI-PMH set a Project, Collection, Resource or Metadata belongs to. Choose from list. By default, the value 'https://vocabs.acdh.oeaw.ac.at/archeoaisets/openaire_data' is set for the parent collection (TopCollection) to be visible in OpenAIRE.</rdfs:comment>
<rdfs:comment xml:lang="de">OAI-PMH-Set, in das ein Projekt, eine Sammlung, Ressource, oder Metadaten gehört. Aus der Liste wählen. Standardmäßig wird der Wert 'https://vocabs.acdh.oeaw.ac.at/archeoaisets/openaire_data' für die übergeordnete Sammlung (TopCollection) gesetzt, um bei OpenAIRE sichtbar zu sein.</rdfs:comment>
<rdfs:label xml:lang="en">has oai set</rdfs:label>
<skos:altLabel xml:lang="de">OAI-PMH Set</skos:altLabel>
<skos:altLabel xml:lang="en">OAI-PMH set</skos:altLabel>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">153</acdh:ordering>
<acdh:vocabs>https://vocabs.acdh.oeaw.ac.at/rest/v1/arche_oaiphmsets/data</acdh:vocabs>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasOwner -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasOwner">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#RepoObject"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="de">Person oder Organisation (B), der eine bestimmte Sammlung oder Ressource (A) gehört.</rdfs:comment>
<rdfs:comment xml:lang="en">Person or Organisation (B) who owns a given Collection or Resource (A).</rdfs:comment>
<rdfs:label xml:lang="en">has owner</rdfs:label>
<skos:altLabel xml:lang="de">Besitzer</skos:altLabel>
<skos:altLabel xml:lang="en">Owner(s)</skos:altLabel>
<acdh:exampleValue xml:lang="en">See hasContributor for Person example and hasContact for Organisation.</acdh:exampleValue>
<acdh:exampleValue xml:lang="de">Siehe hasContributor für ein Beispiel zu Personen und hasContact für ein Beispiel zu Organisationen.</acdh:exampleValue>
<acdh:inverse xml:lang="en">is owner of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">110</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasPrincipalInvestigator -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasPrincipalInvestigator">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ContainerOrResource"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="en">Person officially designated as head of project team or subproject team instrumental in the work necessary to development of the resource. (cf. DataCite: ProjectLeader)</rdfs:comment>
<rdfs:comment xml:lang="de">Person, die das Projekt- oder Teilprojektteam offiziell geleitet hat und maßgeblich an den erforderlichen Arbeiten für die Entwicklung der Ressource beteiligt war. (vgl. DataCite: ProjectLeader)</rdfs:comment>
<rdfs:label xml:lang="en">has principal investigator</rdfs:label>
<skos:altLabel xml:lang="de">Primärforscher</skos:altLabel>
<skos:altLabel xml:lang="en">Principal Investigator(s)</skos:altLabel>
<acdh:inverse xml:lang="en">is principal investigator of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">70</acdh:ordering>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Collection"/>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Project"/>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Resource"/>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasRelatedCollection -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasRelatedCollection">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#relation"/>
<owl:inverseOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasRelatedProject"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Project"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Collection"/>
<rdfs:comment xml:lang="de">Angabe einer Sammlung (B), die im Zusammenhang mit dem Projekt (A) steht.</rdfs:comment>
<rdfs:comment xml:lang="en">Indication of a Collection (B) associated to a Project (A).</rdfs:comment>
<rdfs:label xml:lang="en">has related collection</rdfs:label>
<skos:altLabel xml:lang="en">Related Collection(s)</skos:altLabel>
<skos:altLabel xml:lang="de">Zugehörige Sammlung(en)</skos:altLabel>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">141</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasRelatedDiscipline -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasRelatedDiscipline">
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ContainerOrResource"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:comment xml:lang="de">Forschungsdisziplin des Projekts, der Sammlung oder Ressource. Wählen Sie aus der Liste aus. Kann als Suchbegriff verwendet werden.</rdfs:comment>
<rdfs:comment xml:lang="en">Research discipline of Project, Collection or Resource. Choose from list. Can be used for search.</rdfs:comment>
<rdfs:label xml:lang="en">has related discipline</rdfs:label>
<skos:altLabel xml:lang="de">Fachdisziplin</skos:altLabel>
<skos:altLabel xml:lang="en">Research Discipline</skos:altLabel>
<acdh:exampleValue xml:lang="de">Archäologie</acdh:exampleValue>
<acdh:exampleValue xml:lang="de">Sprach- und Literaturwissenschaften</acdh:exampleValue>
<acdh:exampleValue xml:lang="en">archaeology</acdh:exampleValue>
<acdh:exampleValue xml:lang="en">linguistics and literature</acdh:exampleValue>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">90</acdh:ordering>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Collection"/>
<acdh:vocabs>https://vocabs.acdh.oeaw.ac.at/rest/v1/oefos/data</acdh:vocabs>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasRelatedProject -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasRelatedProject">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#relation"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Collection"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Project"/>
<rdfs:comment xml:lang="de">Angabe eines Projekts (B), das im Zusammenhang mit der Sammlung (A) steht.</rdfs:comment>
<rdfs:comment xml:lang="en">Indication of a Project (B) associated with this Collection (A).</rdfs:comment>
<rdfs:label xml:lang="en">has related project</rdfs:label>
<skos:altLabel xml:lang="en">Related Project(s)</skos:altLabel>
<skos:altLabel xml:lang="de">Zugehörige(s) Projekt(e)</skos:altLabel>
<acdh:exampleValue xml:lang="de">Titel des Projektes</acdh:exampleValue>
<acdh:exampleValue xml:lang="en">Title of Project</acdh:exampleValue>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">140</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasRightsHolder -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasRightsHolder">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasContributor"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#RepoObject"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:comment xml:lang="de">Person oder Organisation (B), welche die Eigentumsrechte besitzt oder verwaltet, einschließlich der Rechte am geistigen Eigentum der Ressource (A). (vgl. DataCite: RightsHolder)</rdfs:comment>
<rdfs:comment xml:lang="en">Person or Organisation (B) owning or managing property rights, including intellectual property rights over the resource (A). (cf. DataCite: RightsHolder)</rdfs:comment>
<rdfs:label xml:lang="en">has rights holder</rdfs:label>
<skos:altLabel xml:lang="de">Rechteinhaber</skos:altLabel>
<skos:altLabel xml:lang="en">Rights Holder(s)</skos:altLabel>
<acdh:exampleValue xml:lang="en">See hasContributor for Person example and hasContact for Organisation.</acdh:exampleValue>
<acdh:exampleValue xml:lang="de">Siehe hasContributor für ein Beispiel zu Personen und hasContact für ein Beispiel zu Organisationen.</acdh:exampleValue>
<acdh:inverse xml:lang="en">is rights holder of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">111</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#hasSpatialCoverage -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#hasSpatialCoverage">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#hasCoverage"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ContainerOrResource"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Place"/>
<rdfs:comment xml:lang="en">Geographical location, area, region (B) a Project, Collection or Resource (A) is dealing with, is about; e.g. archaeological data from excavations in 'Pannonia' or a collection of digitised newspapers from 'Austria'.</rdfs:comment>
<rdfs:comment xml:lang="de">Geographische Lage, Gebiet, Region (B), mit der sich ein Projekt, eine Sammlung oder Ressource (A) beschäftigt bzw. die sie abdeckt; z.B. archäologische Daten von Ausgrabungen in 'Pannonien' oder eine Sammlung digitalisierter Zeitungen aus 'Österreich'.</rdfs:comment>
<rdfs:label xml:lang="en">has spatial coverage</rdfs:label>
<skos:altLabel xml:lang="de">Geografische Abdeckung</skos:altLabel>
<skos:altLabel xml:lang="en">Spatial Coverage</skos:altLabel>
<acdh:exampleValue>Pannonia</acdh:exampleValue>
<acdh:exampleValue>Pannonien</acdh:exampleValue>
<acdh:inverse xml:lang="en">is spatial coverage of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">93</acdh:ordering>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Collection"/>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Project"/>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#isDerivedPublicationOf -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#isDerivedPublicationOf">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#relation"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Publication"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ContainerOrReMe"/>
<rdfs:comment xml:lang="en">A Publication (A) derived from a Project, Collection or a Resource (B).</rdfs:comment>
<rdfs:comment xml:lang="de">Eine Publikation (A), die aus einem Projekt, einer Sammlung oder Ressource (B) hervorgegangen ist.</rdfs:comment>
<rdfs:label xml:lang="en">is derived publication</rdfs:label>
<skos:altLabel xml:lang="de">Abgeleitete Publikation(en) von</skos:altLabel>
<skos:altLabel xml:lang="en">Derived Publication(s) of</skos:altLabel>
<acdh:inverse xml:lang="en">has derived publication</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">145</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#isMemberOf -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#isMemberOf">
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Agent"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Organisation"/>
<rdfs:comment xml:lang="en">Used to link a Person to an Organisation or an Organisation (e.g. department) to another Organisation (institution).</rdfs:comment>
<rdfs:comment xml:lang="de">Wird verwendet, um eine Person mit einer Organisation oder eine Organisation (z.B. Abteilung) mit einer anderen Organisation (Institution) zu verknüpfen.</rdfs:comment>
<rdfs:label xml:lang="en">is member of</rdfs:label>
<skos:altLabel xml:lang="en">Is Member Of</skos:altLabel>
<skos:altLabel xml:lang="de">Ist Mitglied von</skos:altLabel>
<acdh:exampleValue>ACDH-CH</acdh:exampleValue>
<acdh:inverse xml:lang="en">has member</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">35</acdh:ordering>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Person"/>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#isMetadataFor -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#isMetadataFor">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#relation"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Metadata"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#ContainerOrResource"/>
<rdfs:comment xml:lang="de">Gibt an, dass die Metadatenressource (A) zusätzliche Metadaten für eine andere Ressource, Sammlung oder Projekt (B) enthält.</rdfs:comment>
<rdfs:comment xml:lang="en">Indicates the metadata resource (A) contains additional metadata for another Resource, Collection or Project (B).</rdfs:comment>
<rdfs:label xml:lang="en">is metadata for</rdfs:label>
<skos:altLabel xml:lang="de">Enthält Metadaten für</skos:altLabel>
<skos:altLabel xml:lang="en">Metadata for</skos:altLabel>
<acdh:inverse xml:lang="en">has metadata</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">146</acdh:ordering>
<acdh:recommendedClass rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#Metadata"/>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#isNewVersionOf -->
<owl:ObjectProperty rdf:about="https://vocabs.acdh.oeaw.ac.at/schema#isNewVersionOf">
<rdfs:subPropertyOf rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#relation"/>
<rdfs:domain rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#PublicationOrRepoObject"/>
<rdfs:range rdf:resource="https://vocabs.acdh.oeaw.ac.at/schema#PublicationOrRepoObject"/>
<rdfs:comment xml:lang="de">Gibt an, dass eine Ressource (A) eine neue Version einer anderen Ressource (B) ist und die neue Version geändert oder aktualisiert wurde. Wichtig: Nur ein Elternelement pro Ressource ist erlaubt, also kann Ressource (B) nicht sowohl Ressource (A) als auch eine andere Ressource (C) als neuere Version haben. Aber Ressource (A) kann eine neuere Version von Ressource (B) und Ressource (C) sein.</rdfs:comment>
<rdfs:comment xml:lang="en">Indicates a resource (A) is a new version of another resource (B), where the new version has been modified or updated. Important: Only one parent per resource is allowed, i.e. resource (B) cannot have resource (A) and another resource (C) as newer versions. But resource (A) can be a newer version of resource (B) and resource (C).</rdfs:comment>
<rdfs:label xml:lang="en">is new version of</rdfs:label>
<skos:altLabel xml:lang="de">Ist neue Version von</skos:altLabel>
<skos:altLabel xml:lang="en">New Version of</skos:altLabel>
<acdh:inverse xml:lang="en">is previous version of</acdh:inverse>
<acdh:ordering rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">149</acdh:ordering>
</owl:ObjectProperty>
<!-- https://vocabs.acdh.oeaw.ac.at/schema#isObjectMetadataFor -->