-
Notifications
You must be signed in to change notification settings - Fork 7
/
bibframe.rdf
6085 lines (6085 loc) · 212 KB
/
bibframe.rdf
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" encoding="utf-8"?>
<rdf:RDF xml:base="http://id.loc.gov/ontologies/bibframe/" xmlns:bf="http://id.loc.gov/ontologies/bibframe/" xmlns:bflc="http://id.loc.gov/ontologies/bflc/" xmlns:cc="http://creativecommons.org/ns#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#">
<owl:Ontology rdf:about="">
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string">
2.3.0
</owl:versionInfo>
<owl:versionIRI rdf:resource="http://id.loc.gov/ontologies/bibframe-2-3-0/"/>
<owl:priorVersion rdf:resource="http://id.loc.gov/ontologies/bibframe-2-2-0/"/>
<rdfs:label>
BIBFRAME vocabulary
</rdfs:label>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">
2023-11-30T12:00:00.000-05:00
</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">
2023-12-01T10:02:48.878844-05:00
</dcterms:modified>
<dcterms:description xml:lang="en">
The Bibframe vocabulary consists of RDF classes and properties used for the description of items cataloged principally by libraries, but may also be used to describe items cataloged by museums and archives. Classes include the three core classes - Work, Instance, and Item - in addition to many more classes to support description. Properties describe characteristics of the resource being described as well as relationships among resources. For example: one Work might be a "translation of" another Work; an Instance may be an "instance of" a particular Bibframe Work. Other properties describe attributes of Works and Instances. For example: the Bibframe property "subject" expresses an important attribute of a Work (what the Work is about), and the property "extent" (e.g. number of pages) expresses an attribute of an Instance.
</dcterms:description>
<dcterms:creator rdfs:resource="http://id.loc.gov/vocabulary/organizations/dlc"/>
<dcterms:publisher rdfs:resource="http://id.loc.gov/vocabulary/organizations/dlcmrc"/>
<dcterms:rights rdf:resource="https://creativecommons.org/publicdomain/zero/1.0/"/>
<cc:license rdf:resource="https://creativecommons.org/publicdomain/zero/1.0/"/>
</owl:Ontology>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/DescriptionLevel">
<rdfs:label>
Description level
</rdfs:label>
<skos:definition>
Designation of the descriptive content of the metadata.
</skos:definition>
<dcterms:modified>
2022-10-03 (New [GH43])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Work">
<rdfs:label>
Work
</rdfs:label>
<skos:definition>
Resource reflecting a conceptual essence of a cataloging resource.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Instance">
<rdfs:label>
Instance
</rdfs:label>
<skos:definition>
Resource reflecting an individual, material embodiment of a Work.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Item">
<rdfs:label>
Item
</rdfs:label>
<skos:definition>
Single example of an Instance.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Hub">
<rdfs:label>
Hub
</rdfs:label>
<skos:definition>
An abstract resource that functions as a bridge between two Works.
</skos:definition>
<dcterms:modified>
2021-06-09 (New [GH75])
</dcterms:modified>
<dcterms:modified>
2023-11-30 (moved to Basic Model Class [GH108])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Text">
<rdfs:label>
Text
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Resource intended to be perceived visually and understood through the use of language in written or spoken form.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Cartography">
<rdfs:label>
Cartography
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Resource that shows spatial information, including maps, atlases, globes, digital, and other cartographic resources.
</skos:definition>
<dcterms:modified>
2016-04-25 (fixed typo in definition)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Audio">
<rdfs:label>
Audio
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Resources expressed in an audible form, including music or other sounds.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/NotatedMusic">
<rdfs:label>
Notated music
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Graphic, non-realized representations of musical works intended to be perceived visually.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/NotatedMovement">
<rdfs:label>
Notated movement
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Graphic, non-realized representations of movement intended to be perceived visually, e.g. dance.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Dataset">
<rdfs:label>
Dataset
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Data encoded in a defined structure. Includes numeric data, environmental data,etc., used by applications software to calculate averages, correlations, etc., or to produce models, etc., but not normally displayed in its raw form.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/StillImage">
<rdfs:label>
Still image
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Resource expressed through line, shape, shading, etc., intended to be perceived visually as a still image or images in two dimensions. Includes two-dimensional images and slides and transparencies.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MovingImage">
<rdfs:label>
Moving image
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Images intended to be perceived as moving, including motion pictures (using liveaction and/or animation), video recordings of performances, events,etc.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2016-04-26 (fixed typo in definition)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Object">
<rdfs:label>
Three-dimensional object
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Resource in a form intended to be perceived visually in three-dimensions. Includes man-made objects such as models, sculptures, clothing, and toys, as well as naturally occurring objects such as specimens mounted for viewing.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Multimedia">
<rdfs:label>
Software or multimedia
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Electronic resource which is a computer program or consists of multiple media types that are software driven, such as videogames.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2022-10-03 (revised definition [GH92])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MixedMaterial">
<rdfs:label>
Mixed material
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Resource comprised of multiple types which is not driven by software. For instance, an archival collection of text, photographs and sound recordings.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2022-10-03 (revised definition [GH92])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Print">
<rdfs:label>
Printed
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Instance"/>
<skos:definition>
Resource that is printed.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Manuscript">
<rdfs:label>
Manuscript
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Resource which is written in handwriting or typescript. These are generally unique resources.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2022-10-03 (changed subClassOf [GH92])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Archival">
<rdfs:label>
Archival controlled
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Instance"/>
<skos:definition>
Resources organically created, accumulated, and/or used by a person, family, or organization in the course of conduct of affairs and preserved because of their continuing value.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Tactile">
<rdfs:label>
Tactile material
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Instance"/>
<skos:definition>
Resource that is intended to be perceived by touch.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Collection">
<rdfs:label>
Collection
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Aggregation of resources, generally gathered together artificially.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2022-10-03 (changed subClassOf [GH92])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Electronic">
<rdfs:label>
Electronic
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Instance"/>
<skos:definition>
Resource that is intended for manipulation by a computer, accessed either directly or remotely.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Arrangement">
<rdfs:label>
Arrangement
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Resource that represents an arrangement of another resource.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2021-06-09 (Redefined [GH77])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MusicAudio">
<rdfs:label>
Music audio
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Audio"/>
<skos:definition>
Music resource expressed in an audible form.
</skos:definition>
<dcterms:modified>
2022-10-03 (New [GH91])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/NonMusicAudio">
<rdfs:label>
Non-music audio
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Audio"/>
<skos:definition>
Resource expressed in an audible form, including spoken word and other non-musical sounds.
</skos:definition>
<dcterms:modified>
2022-10-03 (New [GH91])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Integrating">
<rdfs:label>
Integrating resource
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Resource that is added to or changed by updates that do not remain discrete but are integrated into the whole.
</skos:definition>
<dcterms:modified>
2022-10-03 (New [GH91])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Kit">
<rdfs:label>
Kit
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/MixedMaterial"/>
<skos:definition>
Resource that contains a mixture of various components issued as a unit and intended primarily for instructional purposes.
</skos:definition>
<dcterms:modified>
2022-10-03 (New [GH91])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Monograph">
<rdfs:label>
Monograph
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Resource that is issued as a single physical unit or intangible single logical unit.
</skos:definition>
<dcterms:modified>
2022-10-03 (New [GH91])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Serial">
<rdfs:label>
Serial
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Resource that is issued in successive parts, usually numbered, that has no predetermined conclusion.
</skos:definition>
<dcterms:modified>
2022-10-03 (New [GH91])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Series">
<rdfs:label>
Series
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Work"/>
<skos:definition>
Resource with a collective title that applies to a group of separate resources, each of which also has its own title.
</skos:definition>
<dcterms:modified>
2022-10-03 (New [GH91])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Microform">
<rdfs:label>
Microform
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Instance"/>
<skos:definition>
Resource that contains microimages, either transparent or opaque, that may be reproductions of existing textual or graphic materials or may be original publications.
</skos:definition>
<dcterms:modified>
2023-11-30 (New [GH101])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Note">
<rdfs:label>
Note
</rdfs:label>
<skos:definition>
Information, usually in textual form, on attributes of a resource or some aspect of a resource.
</skos:definition>
<skos:editorialNote>
Any entry from the Note Types vocabulary at ID may be used; all have been defined as a bf:Note
</skos:editorialNote>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2021-06-09 (Added editorial note [GH35])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Identifier">
<rdfs:label>
Identifier
</rdfs:label>
<skos:definition>
Token or name that is associated with a resource, such as a URI or an ISBN.
</skos:definition>
<skos:editorialNote>
Any entry from the Standard Identifiers vocabulary at ID may be used; all have been defined as a bf:Identifier
</skos:editorialNote>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2021-06-09 (Added editorial note [GH44])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Unit">
<rdfs:label>
Unit
</rdfs:label>
<skos:definition>
Units in which a value is expressed.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Role">
<rdfs:label>
Role
</rdfs:label>
<skos:definition>
Function played or provided by a contributor, e.g., author, illustrator, etc.
</skos:definition>
<dcterms:modified>
2017-02-03 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Source">
<rdfs:label>
Source
</rdfs:label>
<skos:definition>
Resource from which value or label came or was derived.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Status">
<rdfs:label>
Status
</rdfs:label>
<skos:definition>
Designation of the validity or position of something, e.g., whether something is incorrect or available.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Agent">
<rdfs:label>
Agent
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
<skos:definition>
Entity having a role in a resource, such as a person or organization.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2016-05-13 (New subclass)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Person">
<rdfs:label>
Person
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Agent"/>
<skos:definition>
Individual or identity established by an individual (either alone or in collaboration with one or more other individuals).
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Family">
<rdfs:label>
Family
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Agent"/>
<skos:definition>
Two or more persons related by birth, marriage, adoption, civil union, or similar legal status, or who otherwise present themselves as a family.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Organization">
<rdfs:label>
Organization
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Agent"/>
<skos:definition>
Corporation or group of persons and/or organizations that acts, or may act, as a unit.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Jurisdiction">
<rdfs:label>
Jurisdiction
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Agent"/>
<skos:definition>
Legal or political unit administering a geographic area.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Meeting">
<rdfs:label>
Meeting
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Agent"/>
<skos:definition>
Gathering of individuals or representatives of various bodies for the purpose of discussing and/or acting on topics of common interest.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Topic">
<rdfs:label>
Topic
</rdfs:label>
<skos:definition>
Concept or area of knowledge.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Temporal">
<rdfs:label>
Temporal concept
</rdfs:label>
<skos:definition>
Chronological period.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Place">
<rdfs:label>
Place
</rdfs:label>
<skos:definition>
Geographic location.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Event">
<rdfs:label>
Event entity
</rdfs:label>
<skos:definition>
Something that happens at a certain time and location, such as a performance, speech, or athletic event.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2021-06-09 (Broaden definition [GH12])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Contribution">
<rdfs:label>
Contribution
</rdfs:label>
<skos:definition>
Agent and role with respect to the resource being described.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/PrimaryContribution">
<rdfs:label>
Primary contribution
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Contribution"/>
<skos:definition>
Contribution for which the agent is the name chosen as the name part of the name and title access point.
</skos:definition>
<dcterms:modified>
2023-11-30 (New [GH104])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Content">
<rdfs:label>
Content type
</rdfs:label>
<skos:definition>
Categorization reflecting the fundamental form of communication in which the content is expressed and the human sense through which it is intended to be perceived.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Media">
<rdfs:label>
Media type
</rdfs:label>
<skos:definition>
Categorization reflecting the general type of intermediation device required to view, play, run, etc., the content of a resource.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Carrier">
<rdfs:label>
Carrier type
</rdfs:label>
<skos:definition>
Categorization reflecting the format of the storage medium and housing of a carrier.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/GenreForm">
<rdfs:label>
Genre/form
</rdfs:label>
<skos:definition>
Form category or genre to which a resource belongs.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2021-06-09 (Broaden definition [GH17])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Title">
<rdfs:label>
Title entity
</rdfs:label>
<skos:definition>
Title information relating to a resource: work title, preferred title, instance title, transcribed title, translated title, variant form of title, etc.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2017-02-03 (Definition changed)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/VariantTitle">
<rdfs:label>
Title variation
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Title"/>
<skos:definition>
Title associated with the resource that is different from the Work or Instance title.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/KeyTitle">
<rdfs:label>
Key title
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/VariantTitle"/>
<skos:definition>
Unique title for a continuing resource that is assigned by the ISSN International Center in conjunction with an ISSN.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/AbbreviatedTitle">
<rdfs:label>
Abbreviated title
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/VariantTitle"/>
<skos:definition>
Title as abbreviated for citation, indexing, and/or identification.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ParallelTitle">
<rdfs:label>
Parallel title proper
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/VariantTitle"/>
<skos:definition>
Title in another language and/or script.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/CollectiveTitle">
<rdfs:label>
Collective title
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/VariantTitle"/>
<skos:definition>
Title for a compilation of resources.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/TransliteratedTitle">
<rdfs:label>
Transliterated title
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/VariantTitle"/>
<skos:definition>
Title transliterated from one script to another.
</skos:definition>
<dcterms:modified>
2023-11-30 (New [GH104])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Language">
<rdfs:label>
Language entity
</rdfs:label>
<skos:definition>
Language entity.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MusicMedium">
<rdfs:label>
Music medium information
</rdfs:label>
<skos:definition>
Summary statement of the medium for a musical work.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MusicInstrument">
<rdfs:label>
Musical instrument
</rdfs:label>
<skos:definition>
Instrument for which a musical work is appropriate.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Ensemble">
<rdfs:label>
Ensemble
</rdfs:label>
<skos:definition>
Ensemble
</skos:definition>
<dcterms:modified>
2021-06-09 (New [GH56])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MusicEnsemble">
<rdfs:label>
Music ensemble
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Ensemble"/>
<skos:definition>
Ensemble for which a musical work is appropriate.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2021-06-09 (Changed subclass to Ensemble [GH56])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MusicVoice">
<rdfs:label>
Music voice
</rdfs:label>
<skos:definition>
Voice for which a musical work is appropriate.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/GeographicCoverage">
<rdfs:label>
Geographic coverage
</rdfs:label>
<skos:definition>
Geographic coverage of the content of the resource.
</skos:definition>
<dcterms:modified>
2017-02-06 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/IntendedAudience">
<rdfs:label>
Intended audience information
</rdfs:label>
<skos:definition>
Information that identifies the specific intended or target audience or intellectual level for which the content described is considered appropriate. Also used to record interest and motivation levels and special learner characteristics.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/CollectionArrangement">
<rdfs:label>
Organization of materials information
</rdfs:label>
<skos:definition>
Information about the organization and arrangement of a collection of items. For instance, for computer files, organization and arrangement information may be the file structure and sort sequence of a file; for visual materials, this information may be how a collection is arranged.
</skos:definition>
<dcterms:modified>
2021-06-09 (New [GH77])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Dissertation">
<rdfs:label>
Dissertation information
</rdfs:label>
<skos:definition>
Information about a work presented as part of the formal requirements for an academic degree.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Summary">
<rdfs:label>
Summary
</rdfs:label>
<skos:definition>
Description of the content of a resource, such as an abstract, summary, etc..
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Capture">
<rdfs:label>
Capture of content
</rdfs:label>
<skos:definition>
Information about place and date associated with the capture (i.e., recording, filming, etc.) of the content of a resource.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Notation">
<rdfs:label>
Notation
</rdfs:label>
<skos:definition>
Information on the alphabet, script, or symbol system used to convey the content of the resource, including specialized scripts, typefaces, tactile notation, movement notation, and musical notation.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ContentAccessibility">
<rdfs:label>
Content accessibility information
</rdfs:label>
<skos:definition>
Information that assists those with a sensory impairment for greater understanding of content, e.g., captions.
</skos:definition>
<dcterms:modified>
2017-02-07 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Script">
<rdfs:label>
Script
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Notation"/>
<skos:definition>
Information on the script, or symbol system used to convey the content of a text resource.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2021-06-09 (Modified label [GH67])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MusicNotation">
<rdfs:label>
Music notation
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Notation"/>
<skos:definition>
Information on the symbol system used to convey the content of a music resource.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2021-06-09 (Modified label [GH67])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/TactileNotation">
<rdfs:label>
Tactile notation
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Notation"/>
<skos:definition>
Information on the symbol system used to convey the content of a tactile resource.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2021-06-09 (Modified label [GH67])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MovementNotation">
<rdfs:label>
Movement notation
</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Notation"/>
<skos:definition>
Information on the symbol system used to convey the content of a movement resource.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
<dcterms:modified>
2021-06-09 (Modified label [GH67])
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Illustration">
<rdfs:label>
Illustrative content
</rdfs:label>
<skos:definition>
Information about content intended to illustrate a resource.
</skos:definition>
<dcterms:modified>
2016-04-21 (New)
</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/SupplementaryContent">