This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
bibliotek-o.owl
3028 lines (2696 loc) · 237 KB
/
bibliotek-o.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xmlns="http://bibliotek-o.org/1.1/ontology/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:voaf="http://purl.org/vocommons/voaf#"
>
<!-- ONTOLOGY DECLARATION -->
<owl:Ontology rdf:about="http://bibliotek-o.org/ontology/">
<owl:ontologyIRI rdf:resource="http://bibliotek-o.org/ontology/"/>
<owl:versionIRI rdf:resource="http://bibliotek-o.org/1.1/ontology/"/>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Version 1.1.0</owl:versionInfo>
<owl:priorVersion rdf:resource="http://bibliotek-o.org/1.0/ontology/"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-07-06T00:00:00-04:00</dcterms:modified>
<rdfs:label xml:lang="en">bibliotek-o: a BIBFRAME Ontology Extension</rdfs:label>
<rdfs:comment xml:lang="en">The bibliotek-o ontology extension defines additions and modifications to BIBFRAME and is intended to be used as a supplement to the core BIBFRAME ontology. In addition to the extension specification, bibliotek-o provides a set of recommended fragments from external ontologies and an application profile based on its recommended models and patterns. It is a joint product of the Mellon Foundation-funded Linked Data for Libraries Labs and Linked Data for Production projects. See http://ld4l.org for more information on these projects.</rdfs:comment>
<vann:preferredNamespacePrefix>bib</vann:preferredNamespacePrefix>
<dcterms:title xml:lang="en">bibliotek-o: a BIBFRAME Ontology Extension</dcterms:title>
<voaf:extends rdf:resource="http://id.loc.gov/ontologies/bibframe/"/>
<voaf:specializes rdf:resource="http://id.loc.gov/ontologies/bibframe/"/>
</owl:Ontology>
<!-- CLASSES -->
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AbbreviatedTitle">
<rdfs:label xml:lang="en">Abbreviated title</rdfs:label>
<skos:definition xml:lang="en">Title as abbreviated for citation, indexing, and/or identification.</skos:definition>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Title"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AbridgerActivity">
<rdfs:label xml:lang="en">Abridger</rdfs:label>
<skos:definition xml:lang="en">The activity of abridging a resource.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/abr.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AccessibilityFeature">
<rdfs:label xml:lang="en">Accessibility feature</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/ContentAccessibility"/>
<skos:definition xml:lang="en">Accessibility feature of the resource, such as accessible media,supported enhancements for accessibility, and alternatives. See https://www.w3.org/wiki/WebSchemas/Accessibility.</skos:definition>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AccessibilityHazard">
<rdfs:label xml:lang="en">Accessibility hazard</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/ContentAccessibility"/>
<skos:definition xml:lang="en">A characteristic of the resource that is physiologically dangerous to some users, such as flashing, motion simulation, or sound. May have both positive and negative subclasses. For example, FlashingHazard means the resource has a flashing hazard, while NoFlashingHazard means the resource is known not to have a flashing hazard. See https://www.w3.org/wiki/WebSchemas/Accessibility.</skos:definition>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AcquisitionActivity">
<rdfs:label xml:lang="en">Acquisition</rdfs:label>
<skos:definition xml:lang="en">The activity of acquiring a resource.</skos:definition>
<skos:scopeNote xml:lang="en">This class is not derived from a MARC relator.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/Activity">
<rdfs:label xml:lang="en">Activity</rdfs:label>
<skos:definition xml:lang="en">An activity or contribution by a single agent that affects or alters the existence or state of a resource.</skos:definition>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ActorActivity">
<rdfs:label xml:lang="en">Actor</rdfs:label>
<skos:definition xml:lang="en">The activity of acting as a cast member or player in a musical or dramatic presentation, etc.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/act.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AdapterActivity">
<rdfs:label xml:lang="en">Adapter</rdfs:label>
<skos:definition xml:lang="en">The activity of adapting a resource.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/adp.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AddresseeActivity">
<rdfs:label xml:lang="en">Addressee</rdfs:label>
<skos:definition xml:lang="en">The activity of receiving an addressed resource.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/rcp.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AlternativeText">
<rdfs:label xml:lang="en">Alternative text</rdfs:label>
<skos:definition xml:lang="en">Alternative text is provided for visual content (e.g., via the HTML alt attribute).</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/AccessibilityFeature"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-07-06T00:00:00-04:00</dcterms:modified>
<skos:changeNote xml:lang="en">Fixed superclass (v1.1.0)</skos:changeNote>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AnalystActivity">
<rdfs:label xml:lang="en">Analyst</rdfs:label>
<skos:definition xml:lang="en">The activity of analyzing data or information.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/rcp.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/Annotations">
<rdfs:label xml:lang="en">Annotations</rdfs:label>
<skos:definition xml:lang="en">The resource includes annotations from the author, instructor and/or others.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/AccessibilityFeature"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-07-06T00:00:00-04:00</dcterms:modified>
<skos:changeNote xml:lang="en">Fixed superclass (v1.1.0)</skos:changeNote>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AnimatorActivity">
<rdfs:label xml:lang="en">Animator</rdfs:label>
<skos:definition xml:lang="en">The activity of animating a resource.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/anm.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<!-- No AnnotatorActivity class is defined to parallel http://id.loc.gov/vocabulary/relators/ann. Instead use the Web Annotation model -->
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ApertureCard">
<rdfs:label xml:lang="en">Aperture card</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a card with one or more rectangular openings or apertures holding frames of microfilm.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Card"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1021.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AppellantActivity">
<rdfs:label xml:lang="en">Appellant</rdfs:label>
<skos:definition xml:lang="en">The activity of appealing a court decision.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/apl.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AppelleeActivity">
<rdfs:label xml:lang="en">Appellee</rdfs:label>
<skos:definition xml:lang="en">The activity of defending against an appeal.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/apl.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ApplicantActivity">
<rdfs:label xml:lang="en">Applicant</rdfs:label>
<skos:definition xml:lang="en">The activity of going through an application process.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/app.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ArchitectActivity">
<rdfs:label xml:lang="en">Architect</rdfs:label>
<skos:definition xml:lang="en">The activity of creating an architectural design.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/arc.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ArrangerActivity">
<rdfs:label xml:lang="en">Arranger</rdfs:label>
<skos:definition xml:lang="en">The activity of arranging a musical resource.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/arr.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ArtCopyistActivity">
<rdfs:label xml:lang="en">Art copyist</rdfs:label>
<skos:definition xml:lang="en">The activity of making copies of works of visual art.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/acp.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ArtDirectorActivity">
<rdfs:label xml:lang="en">Art director</rdfs:label>
<skos:definition xml:lang="en">The activity of contributing to a motion picture or television production by overseeing the artists and craftspeople who build the sets.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/adi.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ArtistActivity">
<rdfs:label xml:lang="en">Artist</rdfs:label>
<skos:definition xml:lang="en">The activity of creating a work by conceiving, and implementing, an original graphic design, drawing, painting, etc. For book illustrators, prefer IllustratorActivity.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/art.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ArtisticDirectorActivity">
<rdfs:label xml:lang="en">Artistic director</rdfs:label>
<skos:definition xml:lang="en">The activity of controlling the development of the artistic style of an entire production, including the choice of works to be presented and selection of senior production staff.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/ard.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AssigneeActivity">
<rdfs:label xml:lang="en">Assignee</rdfs:label>
<skos:definition xml:lang="en">The activity of receiving a transferred license for printing or publishing.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/asg.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AttributionActivity">
<rdfs:label xml:lang="en">Attribution</rdfs:label>
<skos:definition xml:lang="en">The activity of which there is or once was substantial authority for designating that person as author, creator, etc. of the work indicative of provenance.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/att.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AudioBelt">
<rdfs:label xml:lang="en">Audio belt</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a loop of flexible plastic or magnetic film on which audio signals are mechanically recorded, commonly known under the trade name Dictabelt.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Belt"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1070.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AudioCartridge">
<rdfs:label xml:lang="en">Audio cartridge</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a cartridge containing an audiotape.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Cartridge"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1002.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AudioCassette">
<rdfs:label xml:lang="en">Audio cassette</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a cassette containing an audio tape.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Cassette"/>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Tape"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1002.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AudioCylinder">
<rdfs:label xml:lang="en">Audio cylinder</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a roller-shaped object on which sound waves are incised or indented in a continuous circular groove.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Cylinder"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1003.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AudioDescription">
<rdfs:label xml:lang="en">Audio description</rdfs:label>
<skos:definition xml:lang="en">Audio descriptions are available (e.g., via the HTML5 track element).</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/AccessibilityFeature"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-07-06T00:00:00-04:00</dcterms:modified>
<skos:changeNote xml:lang="en">Fixed superclass (v1.1.0)</skos:changeNote>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AudioDisc">
<rdfs:label xml:lang="en">Audio disc</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a disc on which sound waves, recorded as modulations, pulses, etc., are incised or indented in a continuous spiral groove.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Disc"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1004.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AudioRoll">
<rdfs:label xml:lang="en">Audio roll</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a roll of paper on which musical notes are represented by perforations, designed to mechanically reproduce the music when used in a player piano, player organ, etc.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Roll"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1006.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AudiotapeReel">
<rdfs:label xml:lang="en">Audiotape reel</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a roller-shaped object on which sound waves are incised or indented in a continuous circular groove.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Reel"/>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Tape"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1008.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AudioWireReel">
<rdfs:label xml:lang="en">Audio wire reel</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a reel or spool of steel or stainless steel wire upon which audio signals are magnetically recorded.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Reel"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1008.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: If more than audio sounds are found to be capture on wire, consider minting http://bibliotek-o.org/1.1/ontology/Wire and making bib:AudioWireReel a subclass.</skos:editorialNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/AuthorActivity">
<rdfs:label xml:lang="en">Author</rdfs:label>
<skos:definition xml:lang="en">The activity of authoring a resource.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/aut.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/Belt">
<rdfs:label xml:lang="en">Belt</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a loop on which signals are recorded.</skos:definition>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Instance"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/BinderActivity">
<rdfs:label xml:lang="en">Binder</rdfs:label>
<skos:definition xml:lang="en">The activity of binding an item.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/bnd.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-05-05T00:00:00-04:00</dcterms:modified>
<skos:changeNote xml:lang="en">Fixed rdfs:label (v1.0.1)</skos:changeNote>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/BindingDesignerActivity">
<rdfs:label xml:lang="en">Binding designer</rdfs:label>
<skos:definition xml:lang="en">The activity of designing a binding of a book, including the type of binding, the type of materials used, and any decorative aspects of the binding.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/bdd.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/Bookmarks">
<rdfs:label xml:lang="en">Bookmarks</rdfs:label>
<skos:definition xml:lang="en">The resource includes bookmarks to facilitate navigation to key points.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/AccessibilityFeature"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-07-06T00:00:00-04:00</dcterms:modified>
<skos:changeNote xml:lang="en">Fixed superclass (v1.1.0)</skos:changeNote>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/Braille">
<rdfs:label xml:lang="en">Braille</rdfs:label>
<skos:definition xml:lang="en">Content of a resource in braille format.</skos:definition>
<skos:scopeNote xml:lang="en">The feature of being in braille is both a notation and an accessibility feature.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/AccessibilityFeature"/>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/TactileNotation"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-07-06T00:00:00-04:00</dcterms:modified>
<skos:changeNote xml:lang="en">Fixed superclass (v1.1.0)</skos:changeNote>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/BrailleAlternative">
<rdfs:label xml:lang="en">Braille alternative</rdfs:label>
<skos:definition xml:lang="en">Alternative content for a resource in braille.</skos:definition>
<skos:scopeNote xml:lang="en">Differs from http://bibliotek-o.org/1.1/ontology/Braille, which types the notation of the resource itself, rather than the existence of alternative content.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/AccessibilityFeature"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-07-06T00:00:00-04:00</dcterms:modified>
<skos:changeNote xml:lang="en">Fixed superclass (v1.1.0)</skos:changeNote>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/BroadcasterActivity">
<rdfs:label xml:lang="en">Broadcaster</rdfs:label>
<skos:definition xml:lang="en">The activity of broadcasting a resource via radio, television, webcast, etc.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/brd.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator. Consider the relationship, if any to the bib:Publisher</skos:editorialNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-05-05T00:00:00-04:00</dcterms:modified>
<skos:changeNote xml:lang="en">Fixed rdfs:label (v1.0.1)</skos:changeNote>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/Captions">
<rdfs:label xml:lang="en">Captions</rdfs:label>
<skos:definition xml:lang="en">Synchronized captions are available for audio and video content</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/AccessibilityFeature"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-07-06T00:00:00-04:00</dcterms:modified>
<skos:changeNote xml:lang="en">Fixed superclass (v1.1.0)</skos:changeNote>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CaptureActivity">
<rdfs:label xml:lang="en">Capture</rdfs:label>
<skos:definition xml:lang="en">The activity of recording, filming, etc. of a resource.</skos:definition>
<skos:scopeNote xml:lang="en">This class is not derived from the MARC relator.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/Card">
<rdfs:label xml:lang="en">Card</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a small sheet of opaque material.</skos:definition>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Instance"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1045.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CartographerActivity">
<rdfs:label xml:lang="en">Cartographer</rdfs:label>
<skos:definition xml:lang="en">The activity of creating a map, atlas, globe, or other cartographic work.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/ctg.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator. Consider the relationship, if any to the bib:Publisher</skos:editorialNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/Cartridge">
<rdfs:label xml:lang="en">Cartridge</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a cartridge.</skos:definition>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Instance"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/Cassette">
<rdfs:label xml:lang="en">Cassette</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a cassette.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Tape"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ChemMl">
<rdfs:label xml:lang="en">ChemML</rdfs:label>
<skos:definition xml:lang="en">Chemical information is encoded using the ChemML markup language</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/AccessibilityFeature"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-07-06T00:00:00-04:00</dcterms:modified>
<skos:changeNote xml:lang="en">Fixed superclass (v1.1.0)</skos:changeNote>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ChoreographerActivity">
<rdfs:label xml:lang="en">Choreographer</rdfs:label>
<skos:definition xml:lang="en">The activity of creating or contributing to a work of movement.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/chr.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CinematographerActivity">
<rdfs:label xml:lang="en">Cinematographer</rdfs:label>
<skos:definition xml:lang="en">The activity of photographing a motion picture, who plans the technical aspets of lighting and photographing of scenes, and often assists the director in the choice of angles, camera setups, and lighting moods. He or she may also supervise the further processing of filmed material up to the completion of the work print. Cinematographer is also referred to as director of photography. Do not confuse with bib:VideographerActivity.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/cng.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CollectorActivity">
<rdfs:label xml:lang="en">Collector</rdfs:label>
<skos:definition xml:lang="en">The activity of bringing together items from various sources that are then arranged, described, and cataloged as a collection. A collector is neither the creator of the material nor a person to whom manuscripts in the collection may have been addressed.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/col.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CollectionRegistrarActivity">
<rdfs:label xml:lang="en">Collection registrar</rdfs:label>
<skos:definition xml:lang="en">The activity of listing or inventorying the items in an aggregate work such as a collection of items or works.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/cor.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CollotyperActivity">
<rdfs:label xml:lang="en">Collotyper</rdfs:label>
<skos:definition xml:lang="en">The activity of manufacturing a manifestation of photographic prints from film or other colloid that has ink-receptive and ink-repellent surfaces.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/clt.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ColoristActivity">
<rdfs:label xml:lang="en">Colorist</rdfs:label>
<skos:definition xml:lang="en">The activity of applying color to drawings, prints, photographs, maps, moving images, etc.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/clr.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CommentatorActivity">
<rdfs:label xml:lang="en">Commentator</rdfs:label>
<skos:definition xml:lang="en">The activity of providing interpretation, analysis, or a discussion of the subject matter on a recording, film, or other audiovisual medium.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/cmm.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator. Consider relationship with Annotation pattern.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CompilerActivity">
<rdfs:label xml:lang="en">Compiler</rdfs:label>
<skos:definition xml:lang="en">The activity of creating a new work (e.g., a bibliography, a directory) through the act of compilation, e.g., selecting, arranging, aggregating, and editing data, information, etc.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/com.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ComposerActivity">
<rdfs:label xml:lang="en">Composer</rdfs:label>
<skos:definition xml:lang="en">The activity of creating or contributing to a musical resource by adding music to a work that originally lacked it or supplements it.</skos:definition>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/cmp.</skos:scopeNote>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ComputerCard">
<rdfs:label xml:lang="en">Computer card</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a card containing digitally encoded data designed for use with a computer.</skos:definition>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Electronic"/>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding RDA Carrier.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1011.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ComputerChip">
<rdfs:label xml:lang="en">Computer chip</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a miniaturized electronic circuit on a small wafer of semiconductor silicon, designed to provide additional processing, memory, or storage capacity.</skos:definition>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Electronic"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1012.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ComputerChipCartridge">
<rdfs:label xml:lang="en">Computer chip cartridge</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a cartridge containing a miniaturized electronic circuit on a small wafer of semiconductor silicon, designed to provide additional processing, memory, or storage capacity.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Cartridge"/>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/ComputerChip"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1012.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ComputerDisc">
<rdfs:label xml:lang="en">Computer disc</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a miniaturized electronic circuit on a small wafer of semiconductor silicon, designed to provide additional processing, memory, or storage capacity.</skos:definition>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Electronic"/>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Disc"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1013.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ComputerDiscCartridge">
<rdfs:label xml:lang="en">Computer disc cartridge</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a cartridge containing one or more computer discs.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Cartridge"/>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/ComputerDisc"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1014.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ComputerTapeCartridge">
<rdfs:label xml:lang="en">Computer tape cartridge</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a cartridge containing a computer tape.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Cartridge"/>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Tape"/>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Electronic"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1015.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ComputerTapeCassette">
<rdfs:label xml:lang="en">Computer tape cassette</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a cassette containing a computer tape.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Cassette"/>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Tape"/>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Electronic"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1016.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ComputerTapeReel">
<rdfs:label xml:lang="en">Computer tape reel</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of an open reel holding a length of computer tape to be used with a computer tape drive.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Reel"/>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Tape"/>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Electronic"/>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1017.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ConciseTitle">
<rdfs:label xml:lang="en">Concise title</rdfs:label>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Title"/>
<skos:example xml:lang="en">'Modern Writing' could serve as the concise title for 'The Berkley Book of Modern Writing'.</skos:example>
<skos:definition xml:lang="en">The concise version of a title.</skos:definition>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ConductorActivity">
<rdfs:label xml:lang="en">Conductor</rdfs:label>
<skos:definition xml:lang="en">The activity of conducting a resource.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/cnd.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ConsultantActivity">
<rdfs:label xml:lang="en">Consultant</rdfs:label>
<skos:definition xml:lang="en">The activity of providing professional advice or services in a specialized field of knowledge or training.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/csl.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ConservatorActivity">
<rdfs:label xml:lang="en">Conservator</rdfs:label>
<skos:definition xml:lang="en">The activity of preserving or treating printed or manuscript material, works of art, artifacts, or other objects.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/con.</skos:scopeNote>
<skos:changeNote xml:lang="en">Modified skos:definition (Version 1.1.0)</skos:changeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-07-06T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/ContributorActivity">
<rdfs:label xml:lang="en">Contributor</rdfs:label>
<skos:definition xml:lang="en">The activity of making contributions to the resource. This includes those whose work has been contributed to a larger work, such as an anthology, serial publication, or other compilation of individual works. If a more specific role is available, prefer that activity type, e.g. bib:EditorActivity, bib:CompilerActivity, bib:IllustratorActivity.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/ctb.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CopyrightHolderActivity">
<rdfs:label xml:lang="en">Copyright holder</rdfs:label>
<skos:definition xml:lang="en">The activity of receiving copy and legal rights have been granted or transferred for the intellectual content of a work. The copyright holder, although not necessarily the creator of the work, usually has the exclusive right to benefit financially from the sale and use of the work to which the associated copyright protection applies.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/cph.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CorrespondentActivity">
<rdfs:label xml:lang="en">Correspondent</rdfs:label>
<skos:definition xml:lang="en">The activity of either the writer or recipient of a letter or other communication.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator. Consider separate activities for the writer and recipient.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/crp.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CoverDesignerActivity">
<rdfs:label xml:lang="en">Cover designer</rdfs:label>
<skos:definition xml:lang="en">The activity of graphic design for a book cover, album cover, slipcase, box, container, etc. For a person or organization responsible for the graphic design of an entire book, use bib:DesignerActivity.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/cov.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CreatorActivity">
<rdfs:label xml:lang="en">Creator</rdfs:label>
<skos:definition xml:lang="en">The activity of creating a resource.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/cre.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/CuratorActivity">
<rdfs:label xml:lang="en">Curator</rdfs:label>
<skos:definition xml:lang="en">The activity of conceiving, aggregating, and/or organizing an exhibition, collection, or other item.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/cur.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/Cylinder">
<rdfs:label xml:lang="en">Cylinder</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a roller-shaped object.</skos:definition>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Instance"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/DancerActivity">
<rdfs:label xml:lang="en">Dancer</rdfs:label>
<skos:definition xml:lang="en">The activity of dancing in a musical, dramatic, etc., presentation.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/dnc.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/DedicateeActivity">
<rdfs:label xml:lang="en">Dedicatee</rdfs:label>
<skos:definition xml:lang="en">The activity of receiving a dedication.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator. Consider relationship with award/degree pattern.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/dte.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/DedicatorActivity">
<rdfs:label xml:lang="en">Dedicator</rdfs:label>
<skos:definition xml:lang="en">The activity of making a dedication.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator. Consider relationship with award/degree pattern.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/dto.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/DepositorActivity">
<rdfs:label xml:lang="en">Depositor</rdfs:label>
<skos:definition xml:lang="en">The activity of depositing an item into the custody of another person, family, or organization, while still retaining ownership.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/dpt.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/DescribedMath">
<rdfs:label xml:lang="en">Described math</rdfs:label>
<skos:definition xml:lang="en">Textual descriptions of math equations are included.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/AccessibilityFeature"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-07-06T00:00:00-04:00</dcterms:modified>
<skos:changeNote xml:lang="en">Fixed superclass (v1.1.0)</skos:changeNote>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/DesignerActivity">
<rdfs:label xml:lang="en">Designer</rdfs:label>
<skos:definition xml:lang="en">The activity of creating a design for an object.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/dsr.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/DirectorActivity">
<rdfs:label xml:lang="en">Director</rdfs:label>
<skos:definition xml:lang="en">The activity of general management and supervision of a filmed performance, a radio or television program, etc.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/drt.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/Disc">
<rdfs:label xml:lang="en">Disc</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a one or more discs.</skos:definition>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Instance"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/DisplayTransformability">
<rdfs:label xml:lang="en">Display transformability</rdfs:label>
<skos:definition xml:lang="en">Display properties are controllable by the user.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/AccessibilityFeature"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-07-06T00:00:00-04:00</dcterms:modified>
<skos:changeNote xml:lang="en">Fixed superclass (v1.1.0)</skos:changeNote>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/DistinctiveTitle">
<rdfs:label xml:lang="en">Distinctive title</rdfs:label>
<skos:definition xml:lang="en">Special title that appears in addition to the regular title on individual issues of an item and by which the issue may be known.</skos:definition>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Title"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/DistributorActivity">
<rdfs:label xml:lang="en">Distributor</rdfs:label>
<skos:definition xml:lang="en">The activity of distributing a resource.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/dst.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/DonorActivity">
<rdfs:label xml:lang="en">Donor</rdfs:label>
<skos:definition xml:lang="en">The activity of donating an item to another owner.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/dst.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/DraftsmanActivity">
<rdfs:label xml:lang="en">Draftsman</rdfs:label>
<skos:definition xml:lang="en">The activity of making detailed plans or drawings for buildings, ships, aircraft, machines, objects, etc.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/drm.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/EditorActivity">
<rdfs:label xml:lang="en">Editor</rdfs:label>
<skos:definition xml:lang="en">The activity of editing a resource.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/edt.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/EngraverActivity">
<rdfs:label xml:lang="en">Engraver</rdfs:label>
<skos:definition xml:lang="en">The activity of cutting into a surface, such as a wooden or metal plate used for printing.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/egr.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/EtcherActivity">
<rdfs:label xml:lang="en">Etcher</rdfs:label>
<skos:definition xml:lang="en">The activity of producing text or images for printing by subjecting metal, glass, or some other surface to acid or the corrosive action of some other substance.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/etr.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/FacsimilistActivity">
<rdfs:label xml:lang="en">Facsimilist</rdfs:label>
<skos:definition xml:lang="en">The activity of executing a facsimile.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator. Consider whether this activity subclass can be prunned; instead use an appropriate Activity subclass and state that resource is a facsimile.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/fac.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/FieldDirectorActivity">
<rdfs:label xml:lang="en">Field director</rdfs:label>
<skos:definition xml:lang="en">The activity of managing or supervising the work done to collect raw data or do research in an actual setting or environment (typically applies to the natural and social sciences).</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/fld.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/Film">
<rdfs:label xml:lang="en">Film</rdfs:label>
<skos:definition xml:lang="en">An instance type containing a motion picture film.</skos:definition>
<rdfs:subClassOf rdf:resource="http://id.loc.gov/ontologies/bibframe/Instance"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/FilmCartridge">
<rdfs:label xml:lang="en">Film cartridge</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a cartridge containing a motion picture film.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Cartridge"/>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Film"/>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding RDA Carrier.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1032.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/FilmCassette">
<rdfs:label xml:lang="en">Film cassette</rdfs:label>
<skos:definition xml:lang="en">An instance type consisting of a cassette containing a motion picture film.</skos:definition>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Cassette"/>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Film"/>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding RDA Carrier.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the RDA Carrier Type: http://rdaregistry.info/termList/RDACarrierType/1033.</skos:scopeNote>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/FilmDistributorActivity">
<rdfs:label xml:lang="en">Film distributor</rdfs:label>
<skos:definition xml:lang="en">The activity of distributing a moving image resource to theatres or other distribution channels.</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/fds.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>
<dcterms:modified>2017-04-22T00:00:00-04:00</dcterms:modified>
</owl:Class>
<owl:Class rdf:about="http://bibliotek-o.org/1.1/ontology/FilmEditor">
<rdfs:label xml:lang="en">Film editor</rdfs:label>
<skos:definition xml:lang="en">The activity of following the script and in creative cooperation with the Director, selects, arranges, and assembles the filmed material, controls the synchronization of picture and sound, and participates in other post-production tasks such as sound mixing and visual effects processing. Today, picture editing is often performed digitally..</skos:definition>
<skos:editorialNote xml:lang="en">Future work: consider more formal alignment between the class and corresponding MARC relator.</skos:editorialNote>
<skos:scopeNote xml:lang="en">This class is derived from the MARC relator: http://id.loc.gov/vocabulary/relators/flm.</skos:scopeNote>
<rdfs:subClassOf rdf:resource="http://bibliotek-o.org/1.1/ontology/Activity"/>
<dcterms:issued>2017-04-22T00:00:00-04:00</dcterms:issued>