Skip to content

Instantly share code, notes, and snippets.

@jamesgorrie
Created October 7, 2020 10:10
Show Gist options
  • Save jamesgorrie/95fca4efa2aa5eab4df4a8f462a1f76d to your computer and use it in GitHub Desktop.
Save jamesgorrie/95fca4efa2aa5eab4df4a8f462a1f76d to your computer and use it in GitHub Desktop.
// Previous
{
"locationType": {
"id": "scmac",
"label": "Closed stores Arch. & MSS",
"type": "LocationType"
},
"label": "Closed stores Arch. & MSS",
"accessConditions": [
{
"status": {
"id": "open",
"label": "Open",
"type": "AccessStatus"
},
"terms": "The papers are available subject to the usual conditions of access to Archives and Manuscripts material.",
"type": "AccessCondition"
}
],
"type": "PhysicalLocation"
}
// After
{
"locationType": {
"id": "closed-stores",
"label": "Closed stores",
"type": "LocationType"
},
"label": "Closed stores",
"accessConditions": [],
"type": "PhysicalLocation"
}
// Before
{
"locationType": {
"id": "wgpvm",
"label": "History of Medicine",
"type": "LocationType"
},
"label": "History of Medicine",
"accessConditions": [],
"type": "PhysicalLocation"
}
// After
{
"locationType": {
"id": "open-shelves",
"label": "Open shelves",
"shelfmark": "c.54324.3",
"shelfLocation": "History of medicine",
"type": "LocationType"
},
"label": "Open shelves",
"accessConditions": [],
"type": "PhysicalLocation"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment