-
Notifications
You must be signed in to change notification settings - Fork 30
/
base.trig
3035 lines (2816 loc) · 240 KB
/
base.trig
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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix grddl: <http://www.w3.org/2003/g/data-view#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dcam: <http://purl.org/dc/dcam/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix sdo: <http://schema.org/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
graph <https://purl.org/whyis/base_vocabulary> {
rdfs:Class
rdfs:label "Class" ;
rdfs:comment "The class of classes." .
rdfs:subClassOf a rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "sub-class of" ;
rdfs:comment "The subject is a subclass of a class." ;
.
rdfs:subPropertyOf a rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "sub-property of" ;
rdfs:comment "The subject is a subproperty of a property." ;
.
rdfs:comment a rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "comment" ;
rdfs:comment "A description of the subject resource." ;
.
rdfs:label a rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "label" ;
rdfs:comment "A human-readable name for the subject." ;
.
rdfs:domain a rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "domain" ;
rdfs:comment "A domain of the subject property." ;
.
rdfs:range a rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "range" ;
rdfs:comment "A range of the subject property." ;
.
rdfs:seeAlso a rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "seeAlso" ;
rdfs:comment "Further information about the subject resource." ;
.
rdfs:isDefinedBy a rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:subPropertyOf rdfs:seeAlso ;
rdfs:label "isDefinedBy" ;
rdfs:comment "The defininition of the subject resource." ;
.
owl:AllDifferent a rdfs:Class ;
rdfs:label "AllDifferent" ;
rdfs:comment "The class of collections of pairwise different individuals." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdfs:Resource .
owl:AllDisjointClasses a rdfs:Class ;
rdfs:label "AllDisjointClasses" ;
rdfs:comment "The class of collections of pairwise disjoint classes." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdfs:Resource .
owl:AllDisjointProperties a rdfs:Class ;
rdfs:label "AllDisjointProperties" ;
rdfs:comment "The class of collections of pairwise disjoint properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdfs:Resource .
owl:Annotation a rdfs:Class ;
rdfs:label "Annotation" ;
rdfs:comment "The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdfs:Resource .
owl:AnnotationProperty a rdfs:Class ;
rdfs:label "AnnotationProperty" ;
rdfs:comment "The class of annotation properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdf:Property .
owl:AsymmetricProperty a rdfs:Class ;
rdfs:label "AsymmetricProperty" ;
rdfs:comment "The class of asymmetric properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf owl:ObjectProperty .
owl:Axiom a rdfs:Class ;
rdfs:label "Axiom" ;
rdfs:comment "The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdfs:Resource .
owl:Class a rdfs:Class ;
rdfs:label "Class" ;
rdfs:comment "The class of OWL classes." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdfs:Class .
owl:DataRange a rdfs:Class ;
rdfs:label "DataRange" ;
rdfs:comment "The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdfs:Datatype .
owl:DatatypeProperty a rdfs:Class ;
rdfs:label "DatatypeProperty" ;
rdfs:comment "The class of data properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdf:Property .
owl:DeprecatedClass a rdfs:Class ;
rdfs:label "DeprecatedClass" ;
rdfs:comment "The class of deprecated classes." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdfs:Class .
owl:DeprecatedProperty a rdfs:Class ;
rdfs:label "DeprecatedProperty" ;
rdfs:comment "The class of deprecated properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdf:Property .
owl:FunctionalProperty a rdfs:Class ;
rdfs:label "FunctionalProperty" ;
rdfs:comment "The class of functional properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdf:Property .
owl:InverseFunctionalProperty a rdfs:Class ;
rdfs:label "InverseFunctionalProperty" ;
rdfs:comment "The class of inverse-functional properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf owl:ObjectProperty .
owl:IrreflexiveProperty a rdfs:Class ;
rdfs:label "IrreflexiveProperty" ;
rdfs:comment "The class of irreflexive properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf owl:ObjectProperty .
owl:NamedIndividual a rdfs:Class ;
rdfs:label "NamedIndividual" ;
rdfs:comment "The class of named individuals." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf owl:Thing .
owl:NegativePropertyAssertion a rdfs:Class ;
rdfs:label "NegativePropertyAssertion" ;
rdfs:comment "The class of negative property assertions." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdfs:Resource .
owl:Nothing a owl:Class ;
rdfs:label "Nothing" ;
rdfs:comment "This is the empty class." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf owl:Thing .
owl:ObjectProperty a rdfs:Class ;
rdfs:label "ObjectProperty" ;
rdfs:comment "The class of object properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdf:Property .
owl:Ontology a rdfs:Class ;
rdfs:label "Ontology" ;
rdfs:comment "The class of ontologies." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdfs:Resource .
owl:OntologyProperty a rdfs:Class ;
rdfs:label "OntologyProperty" ;
rdfs:comment "The class of ontology properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf rdf:Property .
owl:ReflexiveProperty a rdfs:Class ;
rdfs:label "ReflexiveProperty" ;
rdfs:comment "The class of reflexive properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf owl:ObjectProperty .
owl:Restriction a rdfs:Class ;
rdfs:label "Restriction" ;
rdfs:comment "The class of property restrictions." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf owl:Class .
owl:SymmetricProperty a rdfs:Class ;
rdfs:label "SymmetricProperty" ;
rdfs:comment "The class of symmetric properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf owl:ObjectProperty .
owl:TransitiveProperty a rdfs:Class ;
rdfs:label "TransitiveProperty" ;
rdfs:comment "The class of transitive properties." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:subClassOf owl:ObjectProperty .
owl:Thing a owl:Class ;
rdfs:label "Thing" ;
rdfs:comment "The class of OWL individuals." ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> .
owl:allValuesFrom a rdf:Property ;
rdfs:label "allValuesFrom" ;
rdfs:comment "The property that determines the class that a universal property restriction refers to." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Class .
owl:annotatedProperty a rdf:Property ;
rdfs:label "annotatedProperty" ;
rdfs:comment "The property that determines the predicate of an annotated axiom or annotated annotation." ;
rdfs:domain rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Resource .
owl:annotatedSource a rdf:Property ;
rdfs:label "annotatedSource" ;
rdfs:comment "The property that determines the subject of an annotated axiom or annotated annotation." ;
rdfs:domain rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Resource .
owl:annotatedTarget a rdf:Property ;
rdfs:label "annotatedTarget" ;
rdfs:comment "The property that determines the object of an annotated axiom or annotated annotation." ;
rdfs:domain rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Resource .
owl:assertionProperty a rdf:Property ;
rdfs:label "assertionProperty" ;
rdfs:comment "The property that determines the predicate of a negative property assertion." ;
rdfs:domain owl:NegativePropertyAssertion ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:Property .
owl:backwardCompatibleWith a owl:AnnotationProperty, owl:OntologyProperty ;
rdfs:label "backwardCompatibleWith" ;
rdfs:comment "The annotation property that indicates that a given ontology is backward compatible with another ontology." ;
rdfs:domain owl:Ontology ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Ontology .
owl:bottomDataProperty a owl:DatatypeProperty ;
rdfs:label "bottomDataProperty" ;
rdfs:comment "The data property that does not relate any individual to any data value." ;
rdfs:domain owl:Thing ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Literal .
owl:bottomObjectProperty a owl:ObjectProperty ;
rdfs:label "bottomObjectProperty" ;
rdfs:comment "The object property that does not relate any two individuals." ;
rdfs:domain owl:Thing ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Thing .
owl:cardinality a rdf:Property ;
rdfs:label "cardinality" ;
rdfs:comment "The property that determines the cardinality of an exact cardinality restriction." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range xsd:nonNegativeInteger .
owl:complementOf a rdf:Property ;
rdfs:label "complementOf" ;
rdfs:comment "The property that determines that a given class is the complement of another class." ;
rdfs:domain owl:Class ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Class .
owl:datatypeComplementOf a rdf:Property ;
rdfs:label "datatypeComplementOf" ;
rdfs:comment "The property that determines that a given data range is the complement of another data range with respect to the data domain." ;
rdfs:domain rdfs:Datatype ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Datatype .
owl:deprecated a owl:AnnotationProperty ;
rdfs:label "deprecated" ;
rdfs:comment "The annotation property that indicates that a given entity has been deprecated." ;
rdfs:domain rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Resource .
owl:differentFrom a rdf:Property ;
rdfs:label "differentFrom" ;
rdfs:comment "The property that determines that two given individuals are different." ;
rdfs:domain owl:Thing ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Thing .
owl:disjointUnionOf a rdf:Property ;
rdfs:label "disjointUnionOf" ;
rdfs:comment "The property that determines that a given class is equivalent to the disjoint union of a collection of other classes." ;
rdfs:domain owl:Class ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:List .
owl:disjointWith a rdf:Property ;
rdfs:label "disjointWith" ;
rdfs:comment "The property that determines that two given classes are disjoint." ;
rdfs:domain owl:Class ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Class .
owl:distinctMembers a rdf:Property ;
rdfs:label "distinctMembers" ;
rdfs:comment "The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom." ;
rdfs:domain owl:AllDifferent ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:List .
owl:equivalentClass a rdf:Property ;
rdfs:label "equivalentClass" ;
rdfs:comment "The property that determines that two given classes are equivalent, and that is used to specify datatype definitions." ;
rdfs:domain rdfs:Class ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Class .
owl:equivalentProperty a rdf:Property ;
rdfs:label "equivalentProperty" ;
rdfs:comment "The property that determines that two given properties are equivalent." ;
rdfs:domain rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:Property .
owl:hasKey a rdf:Property ;
rdfs:label "hasKey" ;
rdfs:comment "The property that determines the collection of properties that jointly build a key." ;
rdfs:domain owl:Class ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:List .
owl:hasSelf a rdf:Property ;
rdfs:label "hasSelf" ;
rdfs:comment "The property that determines the property that a self restriction refers to." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Resource .
owl:hasValue a rdf:Property ;
rdfs:label "hasValue" ;
rdfs:comment "The property that determines the individual that a has-value restriction refers to." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Resource .
owl:imports a owl:OntologyProperty ;
rdfs:label "imports" ;
rdfs:comment "The property that is used for importing other ontologies into a given ontology." ;
rdfs:domain owl:Ontology ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Ontology .
owl:incompatibleWith a owl:AnnotationProperty, owl:OntologyProperty ;
rdfs:label "incompatibleWith" ;
rdfs:comment "The annotation property that indicates that a given ontology is incompatible with another ontology." ;
rdfs:domain owl:Ontology ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Ontology .
owl:intersectionOf a rdf:Property ;
rdfs:label "intersectionOf" ;
rdfs:comment "The property that determines the collection of classes or data ranges that build an intersection." ;
rdfs:domain rdfs:Class ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:List .
owl:inverseOf a rdf:Property ;
rdfs:label "inverseOf" ;
rdfs:comment "The property that determines that two given properties are inverse." ;
rdfs:domain owl:ObjectProperty ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:ObjectProperty .
owl:maxCardinality a rdf:Property ;
rdfs:label "maxCardinality" ;
rdfs:comment "The property that determines the cardinality of a maximum cardinality restriction." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range xsd:nonNegativeInteger .
owl:maxQualifiedCardinality a rdf:Property ;
rdfs:label "maxQualifiedCardinality" ;
rdfs:comment "The property that determines the cardinality of a maximum qualified cardinality restriction." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range xsd:nonNegativeInteger .
owl:members a rdf:Property ;
rdfs:label "members" ;
rdfs:comment "The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom." ;
rdfs:domain rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:List .
owl:minCardinality a rdf:Property ;
rdfs:label "minCardinality" ;
rdfs:comment "The property that determines the cardinality of a minimum cardinality restriction." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range xsd:nonNegativeInteger .
owl:minQualifiedCardinality a rdf:Property ;
rdfs:label "minQualifiedCardinality" ;
rdfs:comment "The property that determines the cardinality of a minimum qualified cardinality restriction." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range xsd:nonNegativeInteger .
owl:onClass a rdf:Property ;
rdfs:label "onClass" ;
rdfs:comment "The property that determines the class that a qualified object cardinality restriction refers to." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Class .
owl:onDataRange a rdf:Property ;
rdfs:label "onDataRange" ;
rdfs:comment "The property that determines the data range that a qualified data cardinality restriction refers to." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Datatype .
owl:onDatatype a rdf:Property ;
rdfs:label "onDatatype" ;
rdfs:comment "The property that determines the datatype that a datatype restriction refers to." ;
rdfs:domain rdfs:Datatype ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Datatype .
owl:oneOf a rdf:Property ;
rdfs:label "oneOf" ;
rdfs:comment "The property that determines the collection of individuals or data values that build an enumeration." ;
rdfs:domain rdfs:Class ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:List .
owl:onProperties a rdf:Property ;
rdfs:label "onProperties" ;
rdfs:comment "The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:List .
owl:onProperty a rdf:Property ;
rdfs:label "onProperty" ;
rdfs:comment "The property that determines the property that a property restriction refers to." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:Property .
owl:priorVersion a owl:AnnotationProperty, owl:OntologyProperty ;
rdfs:label "priorVersion" ;
rdfs:comment "The annotation property that indicates the predecessor ontology of a given ontology." ;
rdfs:domain owl:Ontology ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Ontology .
owl:propertyChainAxiom a rdf:Property ;
rdfs:label "propertyChainAxiom" ;
rdfs:comment "The property that determines the n-tuple of properties that build a sub property chain of a given property." ;
rdfs:domain owl:ObjectProperty ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:List .
owl:propertyDisjointWith a rdf:Property ;
rdfs:label "propertyDisjointWith" ;
rdfs:comment "The property that determines that two given properties are disjoint." ;
rdfs:domain rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:Property .
owl:qualifiedCardinality a rdf:Property ;
rdfs:label "qualifiedCardinality" ;
rdfs:comment "The property that determines the cardinality of an exact qualified cardinality restriction." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range xsd:nonNegativeInteger .
owl:sameAs a rdf:Property ;
rdfs:label "sameAs" ;
rdfs:comment "The property that determines that two given individuals are equal." ;
rdfs:domain owl:Thing ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Thing .
owl:someValuesFrom a rdf:Property ;
rdfs:label "someValuesFrom" ;
rdfs:comment "The property that determines the class that an existential property restriction refers to." ;
rdfs:domain owl:Restriction ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Class .
owl:sourceIndividual a rdf:Property ;
rdfs:label "sourceIndividual" ;
rdfs:comment "The property that determines the subject of a negative property assertion." ;
rdfs:domain owl:NegativePropertyAssertion ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Thing .
owl:targetIndividual a rdf:Property ;
rdfs:label "targetIndividual" ;
rdfs:comment "The property that determines the object of a negative object property assertion." ;
rdfs:domain owl:NegativePropertyAssertion ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Thing .
owl:targetValue a rdf:Property ;
rdfs:label "targetValue" ;
rdfs:comment "The property that determines the value of a negative data property assertion." ;
rdfs:domain owl:NegativePropertyAssertion ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Literal .
owl:topDataProperty a owl:DatatypeProperty ;
rdfs:label "topDataProperty" ;
rdfs:comment "The data property that relates every individual to every data value." ;
rdfs:domain owl:Thing ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Literal .
owl:topObjectProperty a owl:ObjectProperty ;
rdfs:label "topObjectProperty" ;
rdfs:comment "The object property that relates every two individuals." ;
rdfs:domain owl:Thing ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Thing .
owl:unionOf a rdf:Property ;
rdfs:label "unionOf" ;
rdfs:comment "The property that determines the collection of classes or data ranges that build a union." ;
rdfs:domain rdfs:Class ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:List .
owl:versionInfo a owl:AnnotationProperty ;
rdfs:label "versionInfo" ;
rdfs:comment "The annotation property that provides version information for an ontology or another OWL construct." ;
rdfs:domain rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdfs:Resource .
owl:versionIRI a owl:OntologyProperty ;
rdfs:label "versionIRI" ;
rdfs:comment "The property that identifies the version IRI of an ontology." ;
rdfs:domain owl:Ontology ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range owl:Ontology .
owl:withRestrictions a rdf:Property ;
rdfs:label "withRestrictions" ;
rdfs:comment "The property that determines the collection of facet-value pairs that define a datatype restriction." ;
rdfs:domain rdfs:Datatype ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
rdfs:range rdf:List .
dcterms:Agent
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a dcterms:AgentClass, rdfs:Class ;
rdfs:comment "A resource that acts or has the power to act."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Agent"@en .
dcterms:AgentClass
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A group of agents."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Agent Class"@en ;
rdfs:subClassOf rdfs:Class .
dcterms:BibliographicResource
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A book, article, or other documentary resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Bibliographic Resource"@en .
dcterms:Box
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Datatype ;
rdfs:comment "The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "DCMI Box"@en ;
rdfs:seeAlso <https://www.dublincore.org/specifications/dublin-core/dcmi-box/> .
dcterms:DCMIType
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a dcam:VocabularyEncodingScheme ;
rdfs:comment "The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "DCMI Type Vocabulary"@en ;
rdfs:seeAlso <http://purl.org/dc/dcmitype/> .
dcterms:DDC
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a dcam:VocabularyEncodingScheme ;
rdfs:comment "The set of conceptual resources specified by the Dewey Decimal Classification."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "DDC"@en ;
rdfs:seeAlso <http://www.oclc.org/dewey/> .
dcterms:FileFormat
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A digital resource format."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "File Format"@en ;
rdfs:subClassOf dcterms:MediaType .
dcterms:Frequency
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A rate at which something recurs."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Frequency"@en .
dcterms:IMT
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a dcam:VocabularyEncodingScheme ;
rdfs:comment "The set of media types specified by the Internet Assigned Numbers Authority."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "IMT"@en ;
rdfs:seeAlso <http://www.iana.org/assignments/media-types/> .
dcterms:ISO3166
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Datatype ;
rdfs:comment "The set of codes listed in ISO 3166-1 for the representation of names of countries."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "ISO 3166"@en ;
rdfs:seeAlso <https://www.iso.org/obp/ui/#search> .
dcterms:ISO639-2
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Datatype ;
rdfs:comment "The three-letter alphabetic codes listed in ISO639-2 for the representation of names of languages."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "ISO 639-2"@en ;
rdfs:seeAlso <http://lcweb.loc.gov/standards/iso639-2/langhome.html> .
dcterms:ISO639-3
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Datatype ;
rdfs:comment "The set of three-letter codes listed in ISO 639-3 for the representation of names of languages."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "ISO 639-3"@en ;
rdfs:seeAlso <http://www.sil.org/iso639-3/> .
dcterms:Jurisdiction
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "The extent or range of judicial, law enforcement, or other authority."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Jurisdiction"@en ;
rdfs:subClassOf dcterms:LocationPeriodOrJurisdiction .
dcterms:LCC
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a dcam:VocabularyEncodingScheme ;
rdfs:comment "The set of conceptual resources specified by the Library of Congress Classification."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "LCC"@en ;
rdfs:seeAlso <http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html> .
dcterms:LCSH
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a dcam:VocabularyEncodingScheme ;
rdfs:comment "The set of labeled concepts specified by the Library of Congress Subject Headings."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "LCSH"@en .
dcterms:LicenseDocument
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A legal document giving official permission to do something with a resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "License Document"@en ;
rdfs:subClassOf dcterms:RightsStatement .
dcterms:LinguisticSystem
dcterms:description "Written, spoken, sign, and computer languages are linguistic systems."@en ;
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A system of signs, symbols, sounds, gestures, or rules used in communication."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Linguistic System"@en .
dcterms:Location
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A spatial region or named place."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Location"@en ;
rdfs:subClassOf dcterms:LocationPeriodOrJurisdiction .
dcterms:LocationPeriodOrJurisdiction
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A location, period of time, or jurisdiction."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Location, Period, or Jurisdiction"@en .
dcterms:MESH
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a dcam:VocabularyEncodingScheme ;
rdfs:comment "The set of labeled concepts specified by the Medical Subject Headings."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "MeSH"@en ;
rdfs:seeAlso <http://www.nlm.nih.gov/mesh/meshhome.html> .
dcterms:MediaType
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A file format or physical medium."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Media Type"@en ;
rdfs:subClassOf dcterms:MediaTypeOrExtent .
dcterms:MediaTypeOrExtent
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A media type or extent."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Media Type or Extent"@en .
dcterms:MethodOfAccrual
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A method by which resources are added to a collection."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Method of Accrual"@en .
dcterms:MethodOfInstruction
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A process that is used to engender knowledge, attitudes, and skills."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Method of Instruction"@en .
dcterms:NLM
dcterms:issued "2005-06-13"^^<http://www.w3.org/2001/XMLSchema#date> ;
a dcam:VocabularyEncodingScheme ;
rdfs:comment "The set of conceptual resources specified by the National Library of Medicine Classification."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "NLM"@en ;
rdfs:seeAlso <http://wwwcf.nlm.nih.gov/class/> .
dcterms:Period
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Datatype ;
rdfs:comment "The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "DCMI Period"@en ;
rdfs:seeAlso <https://www.dublincore.org/specifications/dublin-core/dcmi-period/> .
dcterms:PeriodOfTime
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "An interval of time that is named or defined by its start and end dates."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Period of Time"@en ;
rdfs:subClassOf dcterms:LocationPeriodOrJurisdiction .
dcterms:PhysicalMedium
dcterms:description "Examples include paper, canvas, or DVD."@en ;
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A physical material or carrier."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Physical Medium"@en ;
rdfs:subClassOf dcterms:MediaType .
dcterms:PhysicalResource
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A material thing."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Physical Resource"@en .
dcterms:Point
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Datatype ;
rdfs:comment "The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "DCMI Point"@en ;
rdfs:seeAlso <https://www.dublincore.org/specifications/dublin-core/dcmi-point/> .
dcterms:Policy
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Policy"@en .
dcterms:ProvenanceStatement
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "Any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Provenance Statement"@en .
dcterms:RFC1766
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Datatype ;
rdfs:comment "The set of tags, constructed according to RFC 1766, for the identification of languages."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "RFC 1766"@en ;
rdfs:seeAlso <http://www.ietf.org/rfc/rfc1766.txt> .
dcterms:RFC3066
dcterms:description "RFC 3066 has been obsoleted by RFC 4646."@en ;
dcterms:issued "2002-07-13"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Datatype ;
rdfs:comment "The set of tags constructed according to RFC 3066 for the identification of languages."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "RFC 3066"@en ;
rdfs:seeAlso <http://www.ietf.org/rfc/rfc3066.txt> .
dcterms:RFC4646
dcterms:description "RFC 4646 obsoletes RFC 3066."@en ;
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Datatype ;
rdfs:comment "The set of tags constructed according to RFC 4646 for the identification of languages."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "RFC 4646"@en ;
rdfs:seeAlso <http://www.ietf.org/rfc/rfc4646.txt> .
dcterms:RFC5646
dcterms:description "RFC 5646 obsoletes RFC 4646."@en ;
dcterms:issued "2010-10-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Datatype ;
rdfs:comment "The set of tags constructed according to RFC 5646 for the identification of languages."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "RFC 5646"@en ;
rdfs:seeAlso <http://www.ietf.org/rfc/rfc5646.txt> .
dcterms:RightsStatement
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A statement about the intellectual property rights (IPR) held in or over a resource, a legal document giving official permission to do something with a resource, or a statement about access rights."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Rights Statement"@en .
dcterms:SizeOrDuration
dcterms:description "Examples include a number of pages, a specification of length, width, and breadth, or a period in hours, minutes, and seconds."@en ;
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A dimension or extent, or a time taken to play or execute."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Size or Duration"@en ;
rdfs:subClassOf dcterms:MediaTypeOrExtent .
dcterms:Standard
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "A reference point against which other things can be evaluated or compared."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Standard"@en .
dcterms:TGN
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a dcam:VocabularyEncodingScheme ;
rdfs:comment "The set of places specified by the Getty Thesaurus of Geographic Names."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "TGN"@en ;
rdfs:seeAlso <http://www.getty.edu/research/tools/vocabulary/tgn/index.html> .
dcterms:UDC
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a dcam:VocabularyEncodingScheme ;
rdfs:comment "The set of conceptual resources specified by the Universal Decimal Classification."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "UDC"@en ;
rdfs:seeAlso <http://www.udcc.org/> .
dcterms:URI
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Datatype ;
rdfs:comment "The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as specified by the Internet Engineering Task Force."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "URI"@en ;
rdfs:seeAlso <http://www.ietf.org/rfc/rfc3986.txt> .
dcterms:W3CDTF
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Datatype ;
rdfs:comment "The set of dates and times constructed according to the W3C Date and Time Formats Specification."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "W3C-DTF"@en ;
rdfs:seeAlso <http://www.w3.org/TR/NOTE-datetime> .
dcterms:abstract
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdf:Property ;
rdfs:comment "A summary of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Abstract"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/description>, dcterms:description .
dcterms:accessRights
dcam:rangeIncludes dcterms:RightsStatement ;
dcterms:description "Access Rights may include information regarding access or restrictions based on privacy, security, or other policies."@en ;
dcterms:issued "2003-02-15"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdf:Property ;
rdfs:comment "Information about who access the resource or an indication of its security status."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Access Rights"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/rights>, dcterms:rights .
dcterms:accrualMethod
dcam:rangeIncludes dcterms:MethodOfAccrual ;
dcterms:description "Recommended practice is to use a value from the Collection Description Accrual Method Vocabulary [[DCMI-ACCRUALMETHOD](https://dublincore.org/groups/collections/accrual-method/)]."@en ;
dcterms:issued "2005-06-13"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdf:Property ;
rdfs:comment "The method by which items are added to a collection."@en ;
rdfs:domain <http://purl.org/dc/dcmitype/Collection> ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Accrual Method"@en .
dcterms:accrualPeriodicity
dcam:rangeIncludes dcterms:Frequency ;
dcterms:description "Recommended practice is to use a value from the Collection Description Frequency Vocabulary [[DCMI-COLLFREQ](https://dublincore.org/groups/collections/frequency/)]."@en ;
dcterms:issued "2005-06-13"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdf:Property ;
rdfs:comment "The frequency with which items are added to a collection."@en ;
rdfs:domain <http://purl.org/dc/dcmitype/Collection> ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Accrual Periodicity"@en .
dcterms:accrualPolicy
dcam:rangeIncludes dcterms:Policy ;
dcterms:description "Recommended practice is to use a value from the Collection Description Accrual Policy Vocabulary [[DCMI-ACCRUALPOLICY](https://dublincore.org/groups/collections/accrual-policy/)]."@en ;
dcterms:issued "2005-06-13"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdf:Property ;
rdfs:comment "The policy governing the addition of items to a collection."@en ;
rdfs:domain <http://purl.org/dc/dcmitype/Collection> ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Accrual Policy"@en .
dcterms:alternative
dcterms:description "The distinction between titles and alternative titles is application-specific."@en ;
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdf:Property ;
rdfs:comment "An alternative name for the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Alternative Title"@en ;
rdfs:range rdfs:Literal ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/title>, dcterms:title .
dcterms:audience
dcam:rangeIncludes dcterms:AgentClass ;
dcterms:description "Recommended practice is to use this property with non-literal values from a vocabulary of audience types."@en ;
dcterms:issued "2001-05-21"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdf:Property ;
rdfs:comment "A class of agents for whom the resource is intended or useful."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Audience"@en .
dcterms:available
dcterms:description "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty."@en ;
dcterms:issued "2000-07-11"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdf:Property ;
rdfs:comment "Date that the resource became or will become available."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Date Available"@en ;
rdfs:range rdfs:Literal ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/date>, dcterms:date .
dcterms:bibliographicCitation
dcterms:description "Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible."@en ;