Skip to content

Commit

Permalink
Add several new bib mappings for identifiers
Browse files Browse the repository at this point in the history
Adds several new mappings for remaining identifiers not yet mapped -
discovered via sierra indexing rules. None of the additions are expected
to have proper identifier types (e.g. bf:Issn). They're being mapped
solely so that we can extract them into the store as generic
identifiers, which can then be indexed to support search. We're
anticipate leaving the `type` property of the blanknodes null both 1) to
differentiate them from formal identifier mappings, and 2) because
assigning meaning to statements is a metadata librarian's job.

https://jira.nypl.org/browse/SCC-1229?jql=parent%3DSCC-944
  • Loading branch information
nonword committed Sep 24, 2018
1 parent ff4feb3 commit 09fe2e0
Showing 1 changed file with 109 additions and 0 deletions.
109 changes: 109 additions & 0 deletions mappings/recap-discovery/field-mapping-bib.json
Original file line number Diff line number Diff line change
Expand Up @@ -263,12 +263,87 @@
}
]
},
"Government Document Classification Number": {
"pred": "dcterms:identifier",
"jsonLdKey": "identifier",
"paths": [
{
"marc": "086",
"subfields": [ "a" ]
}
]
},
"Government Document Classification Number (Canceled)": {
"pred": "dcterms:identifier",
"jsonLdKey": "identifier",
"paths": [
{
"marc": "086",
"subfields": [ "z" ]
}
]
},
"GPO Item Number": {
"pred": "dcterms:identifier",
"jsonLdKey": "identifier",
"paths": [
{
"marc": "074",
"subfields": [ "a" ]
}
]
},
"GPO Item Number (Canceled)": {
"pred": "dcterms:identifier",
"jsonLdKey": "identifier",
"paths": [
{
"marc": "074",
"subfields": [ "z" ]
}
]
},
"Identifier": {
"pred": "dcterms:identifier",
"jsonLdKey": "identifier",
"paths": [
{
"notes": "There are many mapped identifiers"
},
{
"notes": "Other Standard Identifier",
"marc": "024",
"subfields": [ "a" ]
},
{
"notes": "Other Standard Identifier (Canceled)",
"marc": "024",
"subfields": [ "z" ]
},
{
"notes": "Report No.",
"marc": "027",
"subfields": [ "a" ]
},
{
"notes": "Report No. (Canceled)",
"marc": "027",
"subfields": [ "z" ]
},
{
"notes": "Publisher No.",
"marc": "028",
"subfields": [ "a", "b" ]
},
{
"notes": "System Control Number",
"marc": "035",
"subfields": [ "a" ]
},
{
"notes": "System Control Number (Canceled)",
"marc": "035",
"subfields": [ "z" ]
}
]
},
Expand All @@ -282,6 +357,16 @@
}
]
},
"ISBN (Canceled/invalid)": {
"pred": "dcterms:identifier",
"jsonLdKey": "identifier",
"paths": [
{
"marc": "020",
"subfields": [ "z" ]
}
]
},
"ISSN": {
"pred": "dcterms:identifier",
"jsonLdKey": "identifier",
Expand All @@ -294,6 +379,26 @@
}
]
},
"ISSN (Incorrect)": {
"pred": "dcterms:identifier",
"jsonLdKey": "identifier",
"paths": [
{
"marc": "022",
"subfields": [ "y" ]
}
]
},
"ISSN (Canceled)": {
"pred": "dcterms:identifier",
"jsonLdKey": "identifier",
"paths": [
{
"marc": "022",
"subfields": [ "z" ]
}
]
},
"Issuance": {
"pred": "bf:issuance",
"jsonLdKey": "issuance",
Expand Down Expand Up @@ -347,6 +452,10 @@
{
"marc": "010",
"subfields": [ "a" ]
},
{
"marc": "024",
"subfields": [ "a" ]
}
]
},
Expand Down

0 comments on commit 09fe2e0

Please sign in to comment.