-
Notifications
You must be signed in to change notification settings - Fork 2
/
mapping_uo.yml
2116 lines (2038 loc) · 48 KB
/
mapping_uo.yml
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
namespaces:
rdf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
rdfs: "http://www.w3.org/2000/01/rdf-schema#"
owl: "http://www.w3.org/2002/07/owl#"
skos: "http://www.w3.org/2004/02/skos/core#"
dct: "http://purl.org/dc/terms/"
dce: "http://purl.org/dc/elements/1.1/"
bibo: "http://purl.org/ontology/bibo/"
foaf: "http://xmlns.com/foaf/0.1/"
geo: "http://www.w3.org/2003/01/geo/wgs84_pos#"
frbr: "http://iflastandards.info/ns/fr/frbr/frbrer/"
mads: "http://www.loc.gov/mads/rdf/v1#"
marcrel: "http://id.loc.gov/vocabulary/relators/"
modsrdf: "http://www.loc.gov/standards/mods/modsrdf/v1/"
premis: "http://www.loc.gov/premis/rdf/v1#"
oregon: "http://opaquenamespace.org/ns/"
vra: "http://www.loc.gov/standards/vracore/vocab/"
aat: "http://vocab.getty.edu/resource/aat/"
dwc: "http://rs.tdwg.org/dwc/terms/"
exif: "http://www.w3.org/2003/12/exif/ns"
holding: "http://purl.org/ontology/holding#"
schema: "http://schema.org/"
oad: "http://lod.xdams.org/reload/oad/"
swpo: "http://sw-portal.deri.org/ontologies/swportal#"
rdam: "http://rdaregistry.info/Elements/m/"
rdaw: "http://rdaregistry.info/Elements/w/"
rdae: "http://rdaregistry.info/Elements/e/"
rdai: "http://rdaregistry.info/Elements/i/"
rdaa: "http://rdaregistry.info/Elements/a/"
##
# METHODS:
#
# *Dates
# *xsd_date - converts date to yyyy-mm-dd format and serializes it as a literal of type xsd:date
# *dc_date - uses dcterms:date and a string value
# *dc_created - uses dcterms:created and a string value
# *dc_modified - uses dcterms:modified and a string value
# *dc_issued - used dcterms:issued and converts to dcmi date format if possible
# *iso_lanugage - converts two and three letter language codes (;-delimited) into LoC ISO 639 URIs.
# *language- defer to iso above
# *type - splits ;-delimited types and identifies dcmitype for each.
# *mime - converts string mimetype into a purl.org/NET/mediatypes uri
# *format- uses CVs and local subjects; AAT and other
#* Location
# *geographic - attempts to identify a geonames URI locations in field. Will strip "(Ore.)" from string before searching. (probably needs honing, check data in bags before ingest).
# *geopup -
# *bookarts_geographic- uses rdam:placeOfProduction.en
# *cover -
# *collection -
# *replace - (unnecessary) converts dmrecord field into an OregonDigital ContentDM url. This happens whether dmrecord is included in field list or not. Not sure why this comment was made uncessary. Need dct:replaces with oldcdmURL
# *set - maps to new set in Oregon Digital Hydra
# *bestof_set- split into album-collection; angelus-studio; clarence-andrews; cw-furlong; dan-powell; electric-studio; gb-warner; grayson-mathews; james-cloutier; john-baugess; lee-drake; lee-moorhouse; roy-c-andrews; rv-mills; walter-bowman
# *contributing_Institution - map to dbpedia org name, use institution not library for UO and OSU
# *perecentContributingInstitution - oregon:contributingInstitution with two values. May need to look up URI for OAC.
# *method:availmap - admin field needed to query for map; "Add prefix to strings: "Available on map: " and put in modsrdf:note
# *repository- method: repository, uses lcna for SCUA id, LCNA and ULAN and local for rest - predicate marcrel:rps
# *bookarts_repository- SCUA and AAA "University of Oregon Libraries. Architecture & Allied Arts Library." -uses #marcrel:rps
# *localCollectionName- uses local vocab and oregon: pred
# *event- use local subject vocab #schema:event
# *jasr_localCollectionName- Use http://opaquenamespace.org/ns/localCollectionName/NationalJapaneseAmericanStudentRelocationCouncilRecords in all records
# Creators
# * lcnaf - query id.loc.gov and use dct:creator
# * lncaf_ulan - dct:creator uses both lcnag and ulan authorities
# * lcnaf_cont - query lcnaf at id.loc.gov and use dct:contributor
# * lcnaf_repo - query lcnaf and lcsh and use marcrel:rps
#* Publishers
# *lcnaf_pub- query lcnaf and lcsh and use dct: publisher
# *jasr_boxFolder- split field into oregon:boxNumber and oregon:folderNumber, discard ua9 element
# Subjects
# *aat - uses aat from getty
# *att_sheetmusic - ignores data, adds rdf:type of 'sheet music' uri from aat.
# *att_format - matches data to either 'silver gelatin print', 'film negative', or ... in aat; adds appropriate rdf:type statement
# *lc_subject - uses lcsh in dct:subject
# *dc_subject_lc - uses lcsh and lcnaf in dct:subject
# *dc_subject_lcna - uses lncaf in dct:subject
# *dc_subject_lc_aat - predicate dct:subject
# *dc_subject_lc_lcna_aat - predicate dct:subject
#* dc_subject_lc_tgm- predicate dct:subject
#* dc_subject_lc_tgm_aat- predicate dct:subject
#* dc_subject_lc_lcna_tgm_aat- predicate dct:subject
#* dc_subject_lc_lcna_tgm_aat_ulan- predicate dct:subject
# *tgm - uses tgm vocab at id.loc.gov and predicate dce:subject
# *comm_ aat_tgm - predicate dct:hasVersion
# *subject_lc_MeSH -predicate dct:subject
# *bookarts_technique- uses aat and rbms (we are publishing)- uses #vra:technique
# *bookarts_product- uses aat, lcsh, and lc vocab - uses #rdam:modeOfIssuance.en
#* bookarts_worktype- uses aat, tgm, lcsh, lcna, rbms (we are publishing)- uses vra:workType
# *bookarts_literary- uses lcsh, lcna, and lc ethno - uses #rdaw:formOfWork.en
# *culture- uses local vocab and lcsh and lcnaf, predicate vra:culture
# *workType- aat, tgm, and local #vra:workType
# *ethnographic - Converts American Folklore Society Ethnographic Thesaurus, v. 2.0 terms into oregondigital defined URIs
# *militaryBranch - uses lcsh for terms and predicate oregon:militaryBranch
# *oimb_subject - uses vocabs ITIS, uBio, LC, predicate dct:subject
# *oimb_subject2 - uses same vocabs as oimb_subject, predicate dwc:phylum
# *oimb_subject3 - uses same vocabs as oimb_subject, predicate dwc:class
# *oimb_subject4 - uses same vocabs as oimb_subject, predicate dwc:genus
# *oimb_subject5 - uses same vocabs as oimb_subject, predicate dwc:vernacularName
# *localPhotog - uses local vocab and LC names and predicate marcrel:pht
# *localPhotog - uses local vocab and LC names and predicate dct:creator
# *localAuthor - uses local vocab and LC names and predicate marcrel:aut
# *localPeople - uses local vocab and LC names and predicate oregon:people
# *localDonor - uses local vocab and LC names and predicate marcrel:dnr
# *Art collections
# *art_agent- merge for ULAN and LCNA and local #dct:creator
# *art_stylePeriod- AAT, LSCH, British Museum, and local #vra:
# *art_locations- TGN and local #dct:coverage
#*Rights statements
# *rights - tries to identify EU rights, CC Licenses, and OregonDigital (opaque namespace) rights statements.
# *maic_rights - http://opaquenamespace.org/rights/educational/ and rightsHolder "Gary Tepfer and the Mongolian Altai Inventory."
# *percent_rights - http://www.europeana.eu/rights/rr-f/ and reprint creator in oregon:rightsHolder
# *univ_rights - add rightsholder for "University of Oregon" and map for appropriate rights/license for either http://creativecommons.org/publicdomain/mark/1.0/ or http://creativecommons.org/licenses/by-nc-nd/4.0/
# *UO_rights - rights and license for http://creativecommons.org/licenses/by-nc-nd/4.0/ and rightsHolder 'University of Oregon'
# *uopres_rights- name as UO_rights but add http://www.europeana.eu/rights/unknown/ in rights for "Those documents authored by individuals or entities outside of the University of Oregon may be subject to copyright restriction" where needed
# *manuscripts_rights- public domain in rights, http://creativecommons.org/publicdomain/mark/1.0/, and no rightsholder
# *diss_rights- public domain except one with http://www.europeana.eu/rights/rr-f/ in rights and "Goettmann, B. A., Greaves, B. G., and Coons M. P." in rightsHolder
# *folkrights - separates rights statement from copyright holder for OAC rights
# *arch_rights - see building_or_rights.txt for mappings
# *misc_rights - http://www.europeana.eu/rights/rr-r/ in rights and reprint publisher in rightsHolder
# *pd_rights- public domain in rights, http://creativecommons.org/publicdomain/mark/1.0/, and no rightsholder
# *tlegacies_rights - http://www.europeana.eu/rights/unknown/ for dct:rights and no rightsholder
# *petrarch_right- public domain and "Copyright resides with the creator(s) of the item and may be subject to copyright restrictions."
# *bookarts_rights- "Copyright resides with the creator(s) of the image or their assigns and may be subject to copyright restrictions."
# *bestof_rights- "Copyright resides with the creator(s) of the items or their assigns. Permission may be required." and public domain http://creativecommons.org/publicdomain/mark/1.0/
# *lowenstam_rights- see statements
# *artimages_rights- see statements
# *archivision_rights- one statement
# *artlicensed_rights- see statements
# *accessRestrictions_all- All content is restrcited UO IP "This item is restricted to University of Oregon authorized users for personal study, research, and teaching."
# *accessRestrictions_some- Content under copyright is restricted to UO IP with accessRestrictions_all statement, all other content have "None"
mappings:
#
# UO collections only
#
# afpep
#
afpep:
work:
method: aat # vra:workType class not a property; uses Getty AAT cv in rdf:type
title: dct:title
view: oregon:cco/viewDescription
creato: dct:creator
politi: dct:contributor
date:
method: dc_date
earlie: vra:earliestDate
latest: vra:latestDate
subject:
method: dc_subject_lc # field also contains lc names as subjects and lcsh
cultur:
method: culture #vra:culture
countr:
method: geographic
region: dct:coverage
locati: dct:provenance
measur: vra:measurements
descri: dct:description
inscri: vra:inscription
langua:
method: iso_language
relati: dct:hasPart
type:
method: types
format:
method: mime
identi: dct:identifier
rights:
method: rights # cc licenses for all by-nc-nd , later look at lc.rightsbasis
digiti: oregon:conversionSpecifications
digita: oregon:isPartOf/set
full: oregon:fullText
contri: oregon:contributingInstitution
fullrs: oregon:fullText # some items in collection PDF, so no data in this field
find: SKIP
dmaccess: SKIP
dmimage: SKIP
dmad1: SKIP
dmad2: SKIP
dmoclcno: SKIP
dmcreated: SKIP
dmmodified: SKIP
dmrecord:
method: replace # dmrecord has CDM number used in old CDM URL dct:replaces https://oregondigital.org/u?/folklore,5322
#
# sheet music
#
sheetmusic:
title: dct:title
creato:
method: lcnaf #dct:creator
captio: oregon:captionTitle # subproperty of dct:alternative, schema.org has caption for images and video only, not in sheetmusic dd
other: dct:alternative
composer:
method: lcnaf #marcrel:cmp
lyrici:
method: lcnaf #marcrel:lyr
arrang:
method: lcnaf #marcrel:arr
origib:
method: geopup # marcrel:pup, street-level info., geonamesify this!
publis: dct:publisher
origin: marcrel:cpc
date: dct:issued
physic: modsrdf:physicalExtent
perfor: oregon:sheetmusic/instrumentation
descri: dct:description
subjec:
method: dc_subject_lc # uses LCSH and LC Names
genre:
method: aat_sheetmusic # vra:workType class, use AAT, always "sheet music" for this collection
cover:
oregon: coverDescription
illust: marcrel:ill
lithog: marcrel:prm
sourca:
method: aat # vra:workType, new VRA may have workType as class, add as second workType entry if present (e.g. lithographs)
first: oregon:sheetmusic/firstLine
firsa: oregon:sheetmusic/firsLineChorus
relati: oregon:sheetmusic/largerWork
publia: oregon:sheetmusic/hostItem
theme: oregon:exhibit # curated set, terms LC Subject, different from oregon:set?
source: mods:locationCopySublocation
reposi:
method: collection # use aat:collections concept as dc:isPartof
identi: modsrdf:locationCopyShelfLocator
rights:
method: rights
contac: SKIP
type:
method: types
format:
method: mime
digiti: SKIP
data: oregon:dateDigitized
image: SKIP
metada: SKIP
digita: oregon:set
contri: oregon:contributingInstitution
fullrs: SKIP
# oregon:fullText will need to be scripted, CDM doesn't track file paths for PDF files
dmoclcno: SKIP
dmaccess: SKIP
find: oregon:fullText # coordinating file in CDM
dmcreated: SKIP
dmmodified: SKIP
dmrecord:
method: replace # dmrecord has CDM number used in old CDM URL dct:replaces
#
# folklore
#
folklore:
collec:
method:localCollectionName
collea: SKIP
title: dct:title
photo: holding:label
photoa:
method: date
colleb:
method: lcnaf #aat:collectors , aat concept of type of agent, dct:contributor
contri:
method: lcnaf #dct:creator
descri: dct:description
inscri: vra:inscription
langua:
method: language
notes: modsrdf:note
subjec:
method: lcnaf #dct:subject
subjea:
method: lcnaf #dct:subject
contra:
method: geographic #dct:spatial
subjed:
method: lc_subject #vra:culture, very short list of lcsh terms are used
subjee: SKIP
subjef: SKIP
sebjeg:
oregon:ethnographic #oregon:ethnot #American Folklore Society Ethnographic Thesaurus, v. 2.0 not linked
sebjeh: dce:subject
resour:
method: aat #workType, some might not be in AAT and may need to be changed
relati: SKIP
subjeb: SKIP
reposi:
method: repository #marcrel:rps
source: SKIP
rights:
method: folkrights
copyri: oregon:rightsHolder
record: SKIP
type:
method: types
format:
method: format
catalo: SKIP
identi: dct:identifier #use to match file names in directories
digita: oregon:set
contri: oregon:contributingInstitution
fullrs: SKIP # didn't work for this collection
find: SKIP
dmcreated: SKIP
dmmodified: SKIP
dmrecord:
method: replace # dmrecord has CDM number used in old CDM URL dct:replaces
#
# archpnw
#
archpnw:
title: dct:title
view: oregon:cco/viewDescription
varian: dct:alternative
relate: dct:isPartOf
creato: oregon:cco/creatorDisplay
creata: dct:creator
date: dct:date
covra: dct:temporal
city:
method: geographic
county:
method: geographic
state:
method: geographic
countr:
method: geographic
site: madsrdf:streetAddress
photog: oregon: cco/viewDate
photoa: marcrel: pht
catalo: SKIP
object: vra:workType
period: vra:stylePeriod
materi: vra:material
measur: vra:measurements
signif: dct:description
refere: schema:citation
notes: modsrdf:note
creatb: modsrdf:note
metada: #SKIP
digita:
method:set
sourca: dct:provenance # source of slide, look for repository/collection
source: dct:source
souceb: holding:label
publis: #SKIP
rights:
method:arch_rights
type:
method:type
format:
method:format
identi: dct:identifier
techni: oregon:conversionSpecifications
contri:
method:contributingInstitution
fullrs: #SKIP
find: #SKIP
dmaccess: #SKIP
dmimage: #SKIP
dmad1: #SKIP
dmad2: #SKIP
dmoclcno: #SKIP
dmcreated: #SKIP
dmmodified: #SKIP
dmrecord:
method:replace
#
# Bestof
#
Bestof:
title: dct:title
additb: dct:alternative
descra: dct:alternative
descri: dct:description
subjec:
method: dc_subject_lc_lcna_tgm_aat #dct:subject
names:
method: dc_subject_lcna #dct:subject
corpor:
method: localPeople #oregon:people
covera:
method: geographic
sub:
method: tgm
temp:
method: dc_subject_lc_lcna_aat #dct:subject
creato:
method: localPhotog #dct:creator
data: oregon:cco/viewDate
rights:
method: bestof_rights
reposi:
method: repository #marcrel:rps
relati:
method:localCollectionName
collec: oregon:localCollectionID
collea: oad:has_findingAid
sourca: dct:extent
source: dct:hasVersion
sourcb: oregon:sourceCondition
type:
method: type
image: #SKIP
format:
method: format
imagd: #SKIP
imagc: #SKIP
color: exif:colorSpace
date: oregon:dateDigitized
captur: oregon:conversionSpecifications
resolu: #SKIP
ditigi: #merge with captur
additi: dct:hasVersion
publis: #SKIP
digita:
method: bestof_set
digitb: # SKIP
contri:
method: contributingInstitution
fullrs: #SKIP
find: #SKIP
dmaccess: #SKIP
dmimage: #SKIP
dmad1: #SKIP
dmad2: #SKIP
dmoclcno: #SKIP
dmcreated: #SKIP
dmmodified: #SKIP
dmrecord:
method:replace
#
# Ulmann2
#
Ulmann2:
identi: dct:identifier
title: dct:title
sourca: # SKIP
old: dct:alternative
descri: dct:description
series: dct:subject
names:
method: localPeople #oregon:people
corpor:
method: dc_subject_lcna #dct:subject
covera:
method: geographic
lc:
method: lc_subject #dct:subject
subjec:
method: lc_subject #dct:subject
photog:
method: localPhotog #marcrel:pht
date:
method: date
reposi:
method: repository #marcrel:rps
collec: oregon:localCollectionID
source:
method: localCollectionName
album: dct:isPartOf
admin: dct:source
type:
method: types
format: dct:hasVersion
scan: oregon:conversionSpecifications
metada: # SKIP
catala: # SKIP
catalo: # SKIP
rights:
method: pd_rights
proven: dct:provenance
relate: dct:isVersionOf
bandin: # SKIP
publis: # SKIP
digita:
method: set
contri:
method: contributingInstitution
fulls: #SKIP
find: #SKIPs
dmaccess: #SKIP
dmimage: #SKIP
dmad1: #SKIP
dmad2: #SKIP
dmoclccno: #SKIP
dmcreated: #SKIP
dmmodified: #SKIP
dmrecord:
method: replace #dct:replaces
#
# diss
#
diss:
title: dct:title #some French titles
creato:
method: localAuthor #dc:ceator
subjec:
method: subject_lc_MeSH #dct:subject
descri: dct:description
subjea: dct:subject #French
descra: dct:description #French
journa: swpo:containedInJournal #some French titles
relati: schema:citation #some French titles
publis: dct:publisher
contri: dct:contributor
date: dct:issued
type:
method: type
format:
method: format
identi: dct:identifier
data: oregon:dateDigitized
source: dct:source
langua:
method: language
rights:
method: diss_rights
proces: oregon:conversionSpecifications
notes: modsrdf:note
metada: # SKIP
image: # SKIP
ambros: # SKIP
catalo: # SKIP
digita:
method: set
full: oregon:fullText
contra:
method: contributingInstitution
fulls: #SKIP
find: #SKIP
dmaccess: #SKIP
dmimage: #SKIP
dmad1: #SKIP
dmad2: #SKIP
dmoclccno: #SKIP
dmcreated: #SKIP
dmmodified: #SKIP
dmrecord:
method: replace #dct:replaces
#
# jasr
#
jasr:
title: dct:title
covera: dct:temporal
datea: # SKIP
subjec: dct:subject
corpor: dct:subject
creato: dct:creator
publis: # SKIP
date:
method:date
type:
method:types
format:
method:format
identi: dct:identifier
source: # Split field into oregon:boxNumber and oregon:folderNumber (box and folder fields below), discard ua9 element
method:jasr_boxFolder
langua:
method:language
collec:
method:jasr_localCollectionName # Use http://opaquenamespace.org/ns/localCollectionName/NationalJapaneseAmericanStudentRelocationCouncilRecords to all records
collea: oregon:localCollectionID
colleb: oad:has_findingAid
box: oregon:boxNumber
folder: oregon:folderNumber
rights:
method:rights
full: oregon:fullText
datedi: oregon:dateDigitized
proces: oregon:conversionSpecifications
metada: # SKIP
imagb: # SKIP
catalo: # SKIP
ambros: # SKIP
digita: oregon:set
contri: oregon:contributingInstitution
fulla: oregon: #TBD; full PDFs download, in jasr folder ready to go
#
# jsma
#
jsma:
title: dct:title
creato: dct:creator
creata: oregon:cco/creatorDisplay
cultur:
method: culture #vra:culture
subjec: vra:stylePeriod
date:
method:date
materi: vra:material
measur: vra:measurements
catego: vra:workType
descri: dct:description
notes: modsrdf:note
type:
method:types
format:
method:format
rights:
method:rights
collec:
method:localCollectionName
source: marcrel:rps
identi: dct:identifier
museum: # SKIP
digita: oregon:set
catalo: # SKIP
accessRestrictions:
method: accessRestrictions_all
#
# ode
#
ode:
title: dct:title
date:
method:date
volume: swpo:isVolume
issue: swpo:hasNumber
editio: dct:title
notes: modsrdf:note
descri: dct:description
contri: schema:editor
type:
method:type
format:
method:format
identi: dct:identifier
langua:
method:language
relati: dct:relation
rights:
method:rights # http://www.europeana.eu/rights/rr-f/ , add rightsHolder "Oregon Daily Emerald Publishing Co., Inc."
full: oregon:fullText
metada: # SKIP
digita:
method:set #daily-emerald
ambros: # SKIP
contra:
method: contributingInstitution
fulls: #SKIP
find: #SKIP
dmaccess: #SKIP
dmimage: #SKIP
dmad1: #SKIP
dmad2: #SKIP
dmoclccno: #SKIP
dmcreated: #SKIP
dmmodified: #SKIP
dmrecord:
method: replace #dct:replaces
#
# oimb
#
oimb:
title: dct:identifier
source: holding:label
subjec:
method:oimb_subject #dct:subject
sub:
method:oimb_subject #dct:subject
phlyum:
method:oimb_subject2 #dwc:phlyum
class:
method:oimb_subject3 #dwc:class
suba:
method:oimb_subject4 #dwc:genus
common:
method:oimb_subject5 #dwc:vernacularName
descri: dct:description
covra:
method:geographic
creato:
method:localCreator #dct:creator
id: dwc:identificationVerificationStatus
slide: # SKIP
date:
method:date
catalo: # SKIP
local:
method:localCollectionName
type:
method:type
format:
method:format
identi: dct:identifier
rights:
method:UO_rights
digita:
method:set
sourca: # SKIP
contri:
method:contributingInstitution
fullrs: #SKIP
find: #SKIP use JPEG images for ingest
dmaccess: #SKIP
dmimage: #SKIP
dmad1: #SKIP
dmad2: #SKIP
dmoclcno: #SKIP
dmcreated: #SKIP
dmmodified: #SKIP
dmrecord:
method:replace
#
# tlegacies
#
tlegacies:
title: dct:title
+ altern: dct:alternative
+ creato:
+ method: localPeople #oregon:people
+ cultur:
+ method: culture #vra:culture
+ organi:
+ method: localPeople #oregon:people
+ date:
+ method: date
+ time: dct:temporal
+ langua:
+ method: language
+ lc:
+ method: dc_subject_lc #dct:subject
+ subjec:
+ method: dc_subject_lc_tgm #dct:subject
+ descri: dct:description
+ descra: dct:description
+ geogra:
+ method: geographic
+ work:
+ method: aat #vra:workType
+ type:
+ method: type
+ format:
+ method: format
+ reposi:
+ method: repository #marcrel:rps
+ identi: oregon:localCollectionID
+ size: dct:description
+ number: # SKIP
+ nwda: oad:has_findingAid
+ additi: # SKIP
+ rights:
+ method: tlegacies_rights
+ catala: # SKIP
+ repres: # SKIP
+ publis: # SKIP
+ catalo: # SKIP
+ metada: # SKIP
+ digita:
+ method: set
+ contri:
+ method: contributingInstitution
+ fulls: #SKIP
+ find: #SKIP
+ dmaccess: #SKIP
+ dmimage: #SKIP
+ dmad1: #SKIP
+ dmad2: #SKIP
+ dmoclccno: #SKIP
+ dmcreated: #SKIP
+ dmmodified: #SKIP
+ dmrecord:
+ method: replace #dct:replaces
#
# wwdl
#
wwdl:
identi: dct:identifier
title: dct:title
book: dct:isPartOf
titla: dct:alternative
descri: dct:description
pagina: schema:numberOfPages
citati: schema:citation
subjec:
method:dc_subject_lc_tgm #dct:subject
lc:
method: dc_subject_lc
people:
method: dc_subject_lc
corpor:
method: dc_subject_lc
place:
method:geographic
genre: rdaw:formOfWork.en
author: marcrel:aut
photog: marcrel:pht
cartog: marcrel:ctg
illust: marcrel:ill
creato: dct:contributor
previo: # SKIP (in the citation)
date: dct:issued
covera: dct:temporal
publis: #SKIP
datedi: oregon:dateDigitized
rights:
method:rights
reposi: marcrel:rps
relati:
method:localCollectionName
collec: oregon:localCollectionID
additi: dct:hasVersion
addita: dct:hasVersion
langua:
method:language
type:
method:typee
format:
method:format
captur: oregon:conversionSpecifications
file: #SKIP
image: #SKIP
imaga: #SKIP
color: exif:colorSpace
resolu: #SKIP
digita: # SKIP
metada: # SKIP
imagb: # SKIP
imagc: # SKIP
full: oregon:fullText
link: dct:relation
contra:
method:contributingInstitution
catalo: # SKIP
load: # SKIP
digitb:
method:set
find: #SKIP
dmoclcno: #SKIP
dmimage: #SKIP
dmcreated: #SKIP
dmmodified: #SKIP
dmrecord:
method:replace #dct:replaces
fulla: #SKIP
#
# comm
#
comm:
title: dct:identifier
titlb: dct:title
descri: dct:description
identi: dct:alternative
date:
method: date
covera:
method: geographic
creato:
method: lcnaf #dct:creator
person:
method: dc_subject_lcna #oregon:people
subjec:
method: dc_subjec_lc
relati:
method: localCollectionName
collec: oregon:localCollectionID
sourca: oregon:folderNumber
source: dct:hasVersion
type:
method: type
publis: #SKIP
donor: marcrel:dnr #map to local names?
rights:
method: UO_rights #CC BY-NC-NC 4.0 for rights and licence and UO for rightsHolder
format:
method: format
date: oregon:dateDigitized
captur: oregon:conversionSpecifications
metadata: # SKIP
imaga: # SKIP
catalo: # SKIP
digita:
method: set
catala: # SKIP
contri:
method: contributingInstitution
fullrs: #SKIP but can use for finding file for ingest
find: #SKIP
dmaccess: #SKIP
dmimage: #SKIP
dmad1: #SKIP
dmad2: #SKIP
dmoclcno: #SKIP
dmcreated: #SKIP
dmmodified: #SKIP
dmrecord
method: replace
#
# latinoherit
#
latinoherit:
title: dct:title
descri: dct:description
subjec:
method: dc_subject_lc_tgm_aat #dct:subject
creato: # SKIP
photog: # SKIP
covera:
method: geographic
date:
method: date
contri: # SKIP
relate: dct:hasVersion
source: # SKIP
reposi:
method: repository #marcrel:rps
collec:
method: localCollectionName
collea: oregon:localCollectionID
relati: oregon:seriesName
identi: dct:identifier
donor:
method: localDonor #marcrel:dnr
format:
method: format
type:
method: type
langua:
method: language
rights:
method: UO_rights
publis: #SKIP
digiti: oregon:conversionSpecifications
digita:
method: set
contra:
method: contributingInstitution
fullrs: #SKIP
find: #SKIP
dmaccess: #SKIP
dmimage: #SKIP
dmad1: #SKIP
dmad2: #SKIP
dmoclcno: #SKIP
dmcreated: #SKIP
dmmodified: #SKIP
dmrecord:
method: replace
#
# univ
#
univ:
title: dct:title
creato:
method:localPhotog #marcrel:pht
subjec: dce::subject