Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #555 from scientist-softserv/i527-split-properties
Browse files Browse the repository at this point in the history
🎁 Add split for various properties
  • Loading branch information
kirkkwang authored Sep 21, 2023
2 parents 90a0115 + 189aa44 commit 97bd059
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions config/initializers/bulkrax.rb
Original file line number Diff line number Diff line change
Expand Up @@ -74,22 +74,22 @@
'aark_id' => { from: ['identifier.ark'] },
'identifier' => { from: ['identifier'], source_identifier: true },
'bibliographic_citation' => { from: ['identifier.bibliographicCitation'] },
'creator' => { from: ['creator'] },
'contributor' => { from: ['contributor'] },
'creator' => { from: ['creator'], split: ';' },
'contributor' => { from: ['contributor'], split: ';' },
'edition' => { from: ['title.release'] },
'alternative_title' => { from: ['title.alternative'] },
'resource_type' => { from: ['type'] },
'issue_number' => { from: ['relation.isPartOfIssue'] },
'language' => { from: ['language'] },
'description' => { from: ['description'] },
'language' => { from: ['language'], split: ';' },
'description' => { from: ['description'], split: ';' },
'pagination' => { from: ['format.extent'] },
'extent' => { from: ['format.extent'], split: ';' },
'source' => { from: ['source'] },
'source' => { from: ['source'], split: ';' },
'date_issued' => { from: ['date'] },
'alt' => { from: ['coverage.spatial'] },
'publisher' => { from: ['publisher'], split: ';' },
'rights_statement' => { from: ['rights'] },
'part_of' => { from: ['relation.isPartOf'] },
'part_of' => { from: ['relation.isPartOf'], split: ';' },
'part' => { from: ['relation.isPartOf'] },
'date_created' => { from: ['date.other'] },
'title' => { from: ['title'] },
Expand Down

0 comments on commit 97bd059

Please sign in to comment.