forked from lcnetdev/bibframe-ontology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbibframe.rdf
2624 lines (2624 loc) · 180 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
<rdf:RDF xml:base="http://id.loc.gov/ontologies/bibframe/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:bf="http://id.loc.gov/ontologies/bibframe/" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:dcterms="http://purl.org/dc/terms/">
<owl:Ontology rdf:about="">
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2017-03-03T17:01:09.312-05:00</owl:versionInfo>
<rdfs:label>BIBFRAME vocabulary</rdfs:label>
<dcterms:modified>2017-03-03T17:01:09.312-05:00</dcterms:modified>
</owl:Ontology>
<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/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 that is a computer program (i.e., digitally encoded instructions intended to be processed and performed by a computer) or which consists of multiple media types that are software driven, such as videogames.</skos:definition>
<dcterms:modified>2016-04-21 (New)</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 are not driven by software. This may include materials in two or more forms that are related by virtue of their having been accumulated by or about a person or body., archival fonds.</skos:definition>
<dcterms:modified>2016-04-21 (New)</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/Instance"/>
<skos:definition>Resource that is written in handwriting or typescript. These are generally unique resources.</skos:definition>
<dcterms:modified>2016-04-21 (New)</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>
<skos:definition>Aggregation of resources, generally gathered together artificially.</skos:definition>
<dcterms:modified>2016-04-21 (New)</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/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>
<dcterms:modified>2016-04-21 (New)</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>
<dcterms:modified>2016-04-21 (New)</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"/>
<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, that is documented by a resource.</skos:definition>
<dcterms:modified>2016-04-21 (New)</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/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>Characteristics of works with similar plots, themes, settings, etc. (e.g., westerns, thrillers), or with a particular format of purpose (e.g., animation, short), or a combination (e.g., horror film where horror is the genre and film is the form).</skos:definition>
<dcterms:modified>2016-04-21 (New)</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/WorkTitle">
<rdfs:label>Work title</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Title"/>
<skos:definition>Title or form of title chosen to identify the work, such as a preferred title, preferred title with additions, uniform title, etc.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
<dcterms:modified>2017-02-03 (removed)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/InstanceTitle">
<rdfs:label>Instance title</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Title"/>
<skos:definition>Title chosen as the name of an Instance, sometimes called "title proper" and often transcribed from the instance.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
<dcterms:modified>2017-02-03 (removed)</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/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/MusicEnsemble">
<rdfs:label>Music ensemble</rdfs:label>
<skos:definition>Ensemble 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/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/Arrangement">
<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>2016-04-21 (New)</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 used</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>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MusicNotation">
<rdfs:label>Music notation used</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>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/TactileNotation">
<rdfs:label>Tactile notation used</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>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MovementNotation">
<rdfs:label>Movement notation used</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>
</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">
<rdfs:label>Supplementary material</rdfs:label>
<skos:definition>Index, bibliography, appendix, etc. intended to supplement the primary 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/ColorContent">
<rdfs:label>Color content</rdfs:label>
<skos:definition>Color characteristics of a resource, e.g., black and white, multicolored, etc.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/SoundContent">
<rdfs:label>Sound content</rdfs:label>
<skos:definition>Indication of whether the production of sound is an integral part of the resource.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/AspectRatio">
<rdfs:label>Aspect ratio</rdfs:label>
<skos:definition>Proportional relationship between an image's width and its height.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MusicFormat">
<rdfs:label>Notated music format</rdfs:label>
<skos:definition>Layout for content of a resource that is presented in the form of musical notation.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Scale">
<rdfs:label>Scale</rdfs:label>
<skos:definition>Ratio of the dimensions of a form contained or embodied in a resource to the dimensions of the entity it represents, e.g., for images or cartographic resources.</skos:definition>
<dcterms:modified>2017-02-03 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Cartographic">
<rdfs:label>Cartographic information</rdfs:label>
<skos:definition>Content that represents the whole or part of the earth, any celestial body, or imaginary place at any scale.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Projection">
<rdfs:label>Projection</rdfs:label>
<skos:definition>Method or system used to represent the surface of the earth or of a celestial sphere on a plane.</skos:definition>
<dcterms:modified>2017-02-03 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Classification">
<rdfs:label>Classification entity</rdfs:label>
<skos:definition>System of coding and organizing materials according to their subject.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ClassificationDdc">
<rdfs:label>DDC Classification</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Classification"/>
<skos:definition>Dewey Decimal Classification number used for subject access.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ClassificationLcc">
<rdfs:label>LCC Classification</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Classification"/>
<skos:definition>Library of Congress Classification number used for subject access.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ClassificationUdc">
<rdfs:label>UDC Classification</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Classification"/>
<skos:definition>Universal Decimal Classification number used for subject access.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ClassificationNlm">
<rdfs:label>NLM classification</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Classification"/>
<skos:definition>National Library of Medicine Classification number used for subject access</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Frequency">
<rdfs:label>Frequency</rdfs:label>
<skos:definition>Information about intervals at which the parts of a serially produced resource or the updates to an integrating resource are issued.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Issuance">
<rdfs:label>Mode of issuance</rdfs:label>
<skos:definition>Information about whether a resource is issued in one or more parts, the way it is updated, and its intended termination.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ProvisionActivity">
<rdfs:label>Provider entity</rdfs:label>
<skos:definition>Information about the agent or place relating to the publication, printing, distribution, issue, release, or production 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/Distribution">
<rdfs:label>Distributor</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/ProvisionActivity"/>
<skos:definition>Information relating to distribution 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/Manufacture">
<rdfs:label>Manufacturer</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/ProvisionActivity"/>
<skos:definition>Information relating to manufacture 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/Publication">
<rdfs:label>Publisher</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/ProvisionActivity"/>
<skos:definition>Information relating to publication 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/Production">
<rdfs:label>Producer</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/ProvisionActivity"/>
<skos:definition>Information relating to production 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/AcquisitionSource">
<rdfs:label>Acquisition source</rdfs:label>
<skos:definition>Information about an organization, person, etc., from which a resource may be obtained.</skos:definition>
<dcterms:modified>2017-02-06 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/CopyrightRegistration">
<rdfs:label>Copyright registration</rdfs:label>
<skos:definition>Copyright or Legal Deposit registration information</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
<dcterms:modified>2016-05-04 (Class name corrected)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/CoverArt">
<rdfs:label>Cover art</rdfs:label>
<skos:definition>Cover illustration 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/Review">
<rdfs:label>Review</rdfs:label>
<skos:definition>Review 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/TableOfContents">
<rdfs:label>Table of contents</rdfs:label>
<skos:definition>Table of contents 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/Extent">
<rdfs:label>Extent</rdfs:label>
<skos:definition>Number and type of units and/or subunits making up a resource.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/BaseMaterial">
<rdfs:label>Base material</rdfs:label>
<skos:definition>Underlying physical material 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/AppliedMaterial">
<rdfs:label>Applied material</rdfs:label>
<skos:definition>Physical or chemical substance applied to a base material 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/Emulsion">
<rdfs:label>Emulsion</rdfs:label>
<skos:definition>Suspension of light-sensitive chemicals used as a coating on a microfilm or microfiche, e.g., silver halide.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Mount">
<rdfs:label>Mount</rdfs:label>
<skos:definition>Physical material used for the support or backing to which the base material of a resource has been attached.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ProductionMethod">
<rdfs:label>Production method</rdfs:label>
<skos:definition>Process used to produce a resource</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Generation">
<rdfs:label>Generation</rdfs:label>
<skos:definition>Relationship between an original carrier and the carrier of a reproduction made from the original.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Layout">
<rdfs:label>Layout</rdfs:label>
<skos:definition>Arrangement of text, images, tactile notation, etc., in a resource.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/BookFormat">
<rdfs:label>Book format</rdfs:label>
<skos:definition>Result of folding a printed sheet to form a gathering of leaves.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/FontSize">
<rdfs:label>Font size</rdfs:label>
<skos:definition>Size of the type used to represent the characters and symbols in a resource.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Polarity">
<rdfs:label>Polarity</rdfs:label>
<skos:definition>Relationship of the colors and tones in an image to the colors and tones of the object reproduced.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ReductionRatio">
<rdfs:label>Reduction ratio</rdfs:label>
<skos:definition>Size of a micro-image in relation to the original from which it was produced.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/SoundCharacteristic">
<rdfs:label>Sound characteristic</rdfs:label>
<skos:definition>Technical specification relating to the encoding of sound in a resource.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/RecordingMethod">
<rdfs:label>Type of recording</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/SoundCharacteristic"/>
<skos:definition>Method used to encode audio content for playback, e.g., analog, digital.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/RecordingMedium">
<rdfs:label>Recording medium</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/SoundCharacteristic"/>
<skos:definition>Type of medium used to record sound on an audio carrier, e.g., magnetic, optical.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/PlayingSpeed">
<rdfs:label>Playing speed</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/SoundCharacteristic"/>
<skos:definition>Speed at which an audio carrier must be operated to produce the sound intended, e.g., 78 rpm, 19 cm/s.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/GrooveCharacteristic">
<rdfs:label>Groove characteristic</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/SoundCharacteristic"/>
<skos:definition>Groove width of an analog disc or the groove pitch of an analog cylinder, e.g., coarse groove, microgroove</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
<dcterms:modified>2016-04-26 (fixed typo in definition)</dcterms:modified>
<dcterms:modified>2017-02-03 (Fixed name of property)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/TrackConfig">
<rdfs:label>Track configuration</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/SoundCharacteristic"/>
<skos:definition>Configuration of the audio track on a sound-track film, e.g., center track, edge track.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/TapeConfig">
<rdfs:label>Tape configuration</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/SoundCharacteristic"/>
<skos:definition>Number of tracks on an audiotape, e.g., 12 track.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/PlaybackChannels">
<rdfs:label>Configuration of playback channels</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/SoundCharacteristic"/>
<skos:definition>Configuration/number of sound channels used to make a recording, such as one channel for a monophonic recording, e.g., mono, stereo, quadraphonic, surround.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/PlaybackCharacteristic">
<rdfs:label>Special playback characteristics</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/SoundCharacteristic"/>
<skos:definition>Equalization system, noise reduction system, etc., used in making an audio recording, e.g., CCIR standard, CX encoded, Dolby.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ProjectionCharacteristic">
<rdfs:label>Projection characteristic</rdfs:label>
<skos:definition>Technical specification relating to the projection of a motion picture film.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/PresentationFormat">
<rdfs:label>Presentation format</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/ProjectionCharacteristic"/>
<skos:definition>Format used in the production of a projected image, e.g., Cinerama, IMAX.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ProjectionSpeed">
<rdfs:label>Projection speed</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/ProjectionCharacteristic"/>
<skos:definition>Speed at which a projected carrier must be operated to produce the moving image intended, e.g., 20 fps.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/VideoCharacteristic">
<rdfs:label>Video characteristic</rdfs:label>
<skos:definition>Technical specification relating to the encoding of video images in a resource.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/VideoFormat">
<rdfs:label>Video format</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/VideoCharacteristic"/>
<skos:definition>Standard, etc., used to encode the analog video content of a resource, e.g., Beta, 8mm.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/BroadcastStandard">
<rdfs:label>Broadcast standard</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/VideoCharacteristic"/>
<skos:definition>System used to format a video resource for television broadcast, e.g., HDTV, PAL.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic">
<rdfs:label>Digital characteristic</rdfs:label>
<skos:definition>Technical specification relating to the digital encoding of text, image, audio, video, and other types of data in a resource.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/FileType">
<rdfs:label>File type</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic"/>
<skos:definition>General type of data content encoded in a computer file, e.g., text file, audio file.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/EncodingFormat">
<rdfs:label>Encoding format</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic"/>
<skos:definition>Schema, standard, etc., used to encode the digital content of a resource, e.g., MP3, XML, JPEG.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/FileSize">
<rdfs:label>File size</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic"/>
<skos:definition>Number of bytes in a digital file, e.g., 162 KB.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Resolution">
<rdfs:label>Resolution</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic"/>
<skos:definition>Clarity or fineness of detail in a digital image, expressed by the measurement of the image in pixels, etc., e.g., 3.1 megapixels.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/RegionalEncoding">
<rdfs:label>Regional encoding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic"/>
<skos:definition>Identification of the region of the world for which a videodisc has been encoded, e.g., region 4.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/EncodedBitrate">
<rdfs:label>Encoded bitrate</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic"/>
<skos:definition>Speed at which streaming audio, video, etc., is designed to play, e.g., 32 kbps.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/CartographicDataType">
<rdfs:label>Digital cartographic data type</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic"/>
<skos:definition>Data type for encoding of geospatial information in a cartographic resource, e.g., raster, vector, point.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/CartographicObjectType">
<rdfs:label>Digital cartographic object type</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic"/>
<skos:definition>Object type for encoding of geospatial information in a cartographic resource, e.g., point, line, polygon.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ObjectCount">
<rdfs:label>Digital cartographic object count</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic"/>
<skos:definition>Number of objects in encoded geospatial information in a cartographic resource.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/SystemRequirement">
<rdfs:label>System Requirement</rdfs:label>
<skos:definition>Equipment or system requirements beyond what is normal and obvious for the type of carrier or type of file, such as make and model of equipment or hardware, operating system, amount of memory, programming language, other necessary software, any plug-ins or peripherals required to play, view, or run the resource, etc.</skos:definition>
<dcterms:modified>2017-02-06 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/EnumerationAndChronology">
<rdfs:label>Enumeration and chronology</rdfs:label>
<skos:definition>Numbering or other enumeration and dates associated with issues or items held.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Enumeration">
<rdfs:label>Enumeration</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/EnumerationAndChronology"/>
<skos:definition>Numbering or other enumeration associated with issues or items held.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Chronology">
<rdfs:label>Chronology</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/EnumerationAndChronology"/>
<skos:definition>Dates associated with issues or items held.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Sublocation">
<rdfs:label>Sublocation</rdfs:label>
<skos:definition>Specific place within the holding entity where the item is located or made available.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ShelfMark">
<rdfs:label>Shelf location</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Piece/item identifier, such as a call or other type of number.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ShelfMarkDdc">
<rdfs:label>DDC call number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/ShelfMark"/>
<skos:definition>Shelf mark based on Dewey Decimal Classification.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ShelfMarkLcc">
<rdfs:label>LCC call number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/ShelfMark"/>
<skos:definition>Shelf mark based on Library of Congress Classification.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ShelfMarkUdc">
<rdfs:label>UDC call number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/ShelfMark"/>
<skos:definition>Shelf mark based on Universal Decimal Classification.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ShelfMarkNlm">
<rdfs:label>NLM call number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/ShelfMark"/>
<skos:definition>Shelf mark based on National Library of Medicine Classification.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy">
<rdfs:label>Use and access conditions</rdfs:label>
<skos:definition>General statement of allowances and restrictions on access to a resource, including retention, reproduction, access, and lending.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/AccessPolicy">
<rdfs:label>Access policy</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy"/>
<skos:definition>Access restrictions and allowances regarding access to a resource, e.g., lending policy, access restrictions, embargos.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/UsePolicy">
<rdfs:label>Use policy</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy"/>
<skos:definition>Usage limitations placed on a resource with respect to reproduction, publication, exhibition, etc..</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/RetentionPolicy">
<rdfs:label>Retention policy</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy"/>
<skos:definition>Policy of holding institution for retaining resource.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/ImmediateAcquisition">
<rdfs:label>Immediate acquisition</rdfs:label>
<skos:definition>Information about the circumstances, e.g., source, date, method, under which the resource was directly acquired.</skos:definition>
<dcterms:modified>2017-02-06 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Ansi">
<rdfs:label>ANSI number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>American National Standards Institute identifier.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/AudioIssueNumber">
<rdfs:label>Audio issue number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Number assigned by publishers of sound recordings to identify the issue designation, or serial identification, of the resource.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
<dcterms:modified>2017-02-03 (Revised property name and definition)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/AudioTake">
<rdfs:label>Audio recording take</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Identifier assigned to the smallest identifiable unit of a recording session, e.g., a specific recording of an individual song.</skos:definition>
<dcterms:modified>2017-02-03 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Barcode">
<rdfs:label>Barcode</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Optical machine-readable representation of data relating to the item to which it is attached.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
<dcterms:modified>2017-02-03 (Moved to Identifier class group from Item group)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Coden">
<rdfs:label>CODEN</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Identifier for scientific and technical periodical titles assigned by the International CODEN Section of Chemical Abstracts Service.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/CopyrightNumber">
<rdfs:label>Copyright-legal deposit number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Identifier assigned to a copyright registration or legal deposit.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/DissertationIdentifier">
<rdfs:label>Dissertation Identifier</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Identifier assigned to a thesis or dissertation for identification purposes .</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Doi">
<rdfs:label>DOI</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Digital Object Identifier.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Ean">
<rdfs:label>EAN</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>International Article Identifier.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Fingerprint">
<rdfs:label>Fingerprint identifier</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Identifier that is used to assist in the identification of antiquarian books by recording information comprising groups of characters taken from specified positions on specified pages of the book.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Gtin14Number">
<rdfs:label>Global Trade Item Number 14</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>14 digit number assigned to identify trade items as various packaging levels. GTIN-14 encompasses EAN/UCC-128 and ITF-14.</skos:definition>
<dcterms:modified>2017-02-03 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Hdl">
<rdfs:label>Handle</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Unique and persistent identifier for digital objects developed by the Corporation for National Research Initiatives.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Isan">
<rdfs:label>ISAN</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>International Standard Audiovisual Number.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Isbn">
<rdfs:label>ISBN</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>International Standard Book Number.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Ismn">
<rdfs:label>ISMN</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>International Standard Music Number.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Isni">
<rdfs:label>ISNI</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>International Standard Name Identifier, a unique, persistent reference number for the identities of contributors to creative works.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Iso">
<rdfs:label>ISO number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>International Organization for Standardization standard number.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Isrc">
<rdfs:label>ISRC</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>International Standard Recording Code.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Issn">
<rdfs:label>ISSN</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>International Standard Serial Number.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/IssnL">
<rdfs:label>ISSN-L</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>International Standard Serial Number that links together various media versions of a continuing resource.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Istc">
<rdfs:label>ISTC</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>International Standard Text Code, a numbering system developed to enable the unique identification of textual works.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Iswc">
<rdfs:label>ISWC</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>International Standard Musical Work Code, a unique, persistent reference number for the identification of musical works.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/LcOverseasAcq">
<rdfs:label>LC acquisition program</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Identification number assigned by the Library of Congress to works acquired through one of its collaborative overseas acquisition programs.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Lccn">
<rdfs:label>LCCN</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Library of Congress Control Number that identifies a resource description.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Local">
<rdfs:label>Local identifier</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Identifier established locally and not a standard number.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MatrixNumber">
<rdfs:label>Audio matrix number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Matrix identifier assigned to the master from which a specific sound recording was pressed.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
<dcterms:modified>2017-02-03 (Revised definition)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MusicDistributorNumber">
<rdfs:label>Music distributor number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Identifier appearing on a resource assigned by a distributor to a specific audio recording, notated music publication, music-related publication, or videorecording.</skos:definition>
<dcterms:modified>2017-02-07 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MusicPlate">
<rdfs:label>Music plate number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Identifiers assigned by a music publisher or printer to the printing plates for the notated portion of a notated music publication, or an identifier that emulates the printing plate tradition in contemporary publications.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
<dcterms:modified>2017-02-03 (Revised definition)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/MusicPublisherNumber">
<rdfs:label>Music publisher number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Identifier assigned to a notated music publication other than an issue, matrix, or plate number.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
<dcterms:modified>2017-02-03 (Revised definition)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/Nbn">
<rdfs:label>NBN</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>National Bibliography Number that identifies a resource description.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/PostalRegistration">
<rdfs:label>Postal registration number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>
<skos:definition>Number assigned to a publication for which the specified postal service permits the use of a special mailing class privilege.</skos:definition>
<dcterms:modified>2016-04-21 (New)</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://id.loc.gov/ontologies/bibframe/PublisherNumber">
<rdfs:label>Other publisher number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Identifier"/>