diff --git a/builds/bfe.dev.js b/builds/bfe.dev.js index 1d49ed8..c175355 100755 --- a/builds/bfe.dev.js +++ b/builds/bfe.dev.js @@ -572,10 +572,12 @@ bfe.define('src/bfe', ['require', 'exports', 'module', 'src/bfestore', 'src/bfel var ampm = "a"; if (min<10) min = "0"+min; - if (hr>12){ - hr-=12; + if (hr>=12){ ampm = "p"; - } + } + if (hr > 12){ + hr-=12; + } return (d.getMonth() + 1) + '-' + d.getDate() + '-' + d.getFullYear() + ' ' + hr + ':' + min + ampm; } }, @@ -606,7 +608,7 @@ bfe.define('src/bfe', ['require', 'exports', 'module', 'src/bfestore', 'src/bfel //default //var spoints = editorconfig.startingPoints[0].menuItems[0]; - if (rowData.profile !== "profile:bf2:Load:Work"){ + if (rowData.profile !== "profile:bf2:Load:Work" && rowData.profile !== "profile:bf2:IBC:Instance"){ var menuIndex = _.findIndex(_(editorconfig.startingPoints).chain().find({ menuItems: [{ useResourceTemplates: [rowData.profile] @@ -619,11 +621,18 @@ bfe.define('src/bfe', ['require', 'exports', 'module', 'src/bfestore', 'src/bfel useResourceTemplates: [rowData.profile] }] }).value().menuItems[menuIndex] - } else { + } else if (rowData.profile === "profile:bf2:Load:Work"){ var spoints = { label: "Loaded Work", type: ["http://id.loc.gov/ontologies/bibframe/Work"], useResourceTemplates:["profile:bf2:Load:Work"] }; + } else if (rowData.profile === "profile:bf2:IBC:Instance") { + + var spoints = { label: "IBC", + type: ["http://id.loc.gov/ontologies/bibframe/Instance"], + useResourceTemplates:["profile:bf2:IBC:Instance"] + }; + } var bTypes = []; @@ -760,6 +769,24 @@ bfe.define('src/bfe', ['require', 'exports', 'module', 'src/bfestore', 'src/bfel bfestore.loadtemplates = temptemplates; var url = $(this.parentElement).find("#bfeditor-loaduriInput").val(); editorconfig.retrieve.callback(url, bfestore, bfestore.loadtemplates, bfelog, function(loadtemplates) { + //converter uses bf:person intead of personal name + _.each(_.where(bfeditor.bfestore.store, {"p":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "o": "http://id.loc.gov/ontologies/bibframe/Person"}), function(triple) { + triple.o = "http://www.loc.gov/mads/rdf/v1#PersonalName" + }); + //converter uses bf:organization intead of corporate name + _.each(_.where(bfeditor.bfestore.store, {"p":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "o": "http://id.loc.gov/ontologies/bibframe/Organization"}), function(triple) { + triple.o = "http://www.loc.gov/mads/rdf/v1#CorporateName" + }); + //eliminate duplicate type bf:Contributor + _.each(_.where(bfeditor.bfestore.store, {"p":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "o": "http://id.loc.gov/ontologies/bflc/PrimaryContribution"}), function(triple) { + bfeditor.bfestore.store = _.reject(bfeditor.bfestore.store, _.find(bfeditor.bfestore.store, {"s":triple.s, "p":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "o": "http://id.loc.gov/ontologies/bibframe/Contribution"})) + }); + + //Text to Work + _.each(_.where(bfeditor.bfestore.store, {"p":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "o": "http://id.loc.gov/ontologies/bibframe/Text"}), function(triple) { + bfeditor.bfestore.store = _.reject(bfeditor.bfestore.store, _.find(bfeditor.bfestore.store, {"s":triple.s, "p":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "o": "http://id.loc.gov/ontologies/bibframe/Text"})) + }); + bfestore.loadtemplates.data = bfeditor.bfestore.store; $('[href=#create]').tab('show'); $('#bfeditor-formdiv').show(); @@ -767,11 +794,13 @@ bfe.define('src/bfe', ['require', 'exports', 'module', 'src/bfestore', 'src/bfel $('#bfeditor-messagediv').remove(); } + //weird bnode prob _.each(bfeditor.bfestore.store, function(el) { if( el.o.startsWith("_:_:")) el.o = "_:" + el.o.split("_:")[2]; - }); + + cbLoadTemplates(); }); @@ -799,7 +828,7 @@ bfe.define('src/bfe', ['require', 'exports', 'module', 'src/bfestore', 'src/bfel var spoints = { label: "Monograph", type: ["http://id.loc.gov/ontologies/bibframe/Instance"], - useResourceTemplates:["profile:bf2:Monograph:Instance"] + useResourceTemplates:["profile:bf2:IBC:Instance"] }; bfeditor.bfestore.store = []; @@ -838,6 +867,10 @@ bfe.define('src/bfe', ['require', 'exports', 'module', 'src/bfestore', 'src/bfel _.each(_.where(bfeditor.bfestore.store, {"p":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "o": "http://id.loc.gov/ontologies/bibframe/Person"}), function(triple) { triple.o = "http://www.loc.gov/mads/rdf/v1#PersonalName" }); + //converter uses bf:organization intead of corporate name + _.each(_.where(bfeditor.bfestore.store, {"p":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "o": "http://id.loc.gov/ontologies/bibframe/Organization"}), function(triple) { + triple.o = "http://www.loc.gov/mads/rdf/v1#CorporateName" + }); //eliminate duplicate type bf:Contributor _.each(_.where(bfeditor.bfestore.store, {"p":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "o": "http://id.loc.gov/ontologies/bflc/PrimaryContribution"}), function(triple) { bfeditor.bfestore.store = _.reject(bfeditor.bfestore.store, _.find(bfeditor.bfestore.store, {"s":triple.s, "p":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "o": "http://id.loc.gov/ontologies/bibframe/Contribution"})) @@ -853,6 +886,22 @@ bfe.define('src/bfe', ['require', 'exports', 'module', 'src/bfestore', 'src/bfel bfeditor.bfestore.store = _.reject(bfeditor.bfestore.store, _.find(bfeditor.bfestore.store, {"p":"http://id.loc.gov/ontologies/bflc/itemOf"})); } + _.each(_.where(bfeditor.bfestore.store, {"p": "http://id.loc.gov/ontologies/bibframe/adminMetadata"}), function(am){; + var adminTriple = {}; + adminTriple.s = am.o; + adminTriple.p = "http://id.loc.gov/ontologies/bflc/profile"; + adminTriple.o = bfeditor.bfestore.profile; + adminTriple.otype = "literal"; + bfeditor.bfestore.store.push(adminTriple) + + adminTriple = {}; + adminTriple.s = am.o; + adminTriple.p = "http://id.loc.gov/ontologies/bflc/procInfo"; + adminTriple.o = "ibc update"; + adminTriple.otype = "literal"; + bfeditor.bfestore.store.push(adminTriple) + }); + // _.each(_.where(bfeditor.bfestore.store, {"p":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type"}), function(triple) { // _.each(_.where(bfeditor.bfestore.store, {"s":triple.s, "p":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type"}), function (typeTriple){ // console.log(typeTriple.s + typeTriple.o); @@ -3553,9 +3602,9 @@ bfe.define('src/bfestore', ['require', 'exports', 'module'], function(require, e data = data.replace(/xmlns:ns1=/g, "xmlns:bf="); data = data.replace(/ns1:/g, "bf:"); - data = data.replace(/xmlns:ns2=/g, "xmlns:madsrdf="); + //data = data.replace(/xmlns:ns2=/g, "xmlns:madsrdf="); data = data.replace(/ns2:/g, "madsrdf:"); - + data = data.replace(/xmlns:ns2=\"madsrdf:\"/g, ""); callback(data) }, error: function(XMLHttpRequest, status, err) { @@ -4155,9 +4204,16 @@ bfe.define('src/lookups/lcshared', ['require', 'exports', 'module'], function(re for (var s = 0; s < suggestions[1].length; s++) { var l = suggestions[1][s]; var u = suggestions[3][s]; + if (suggestions.length ===5){ + var i = suggestions[4][s]; + var li = l + " ("+i+")"; + } else { + var li = l; + } + typeahead_source.push({ uri: u, - value: l + value: li }); } } diff --git a/static/js/config-dev.js b/static/js/config-dev.js index 92b690f..3db3f09 100755 --- a/static/js/config-dev.js +++ b/static/js/config-dev.js @@ -258,6 +258,7 @@ "static/profiles/bibframe/BIBFRAME 2.0 Rare Materials.json", "static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Audio CD-R.json", "static/profiles/bibframe/BIBFRAME 2.0 Load.json", + "static/profiles/bibframe/BIBFRAME 2.0 IBC.json" ], "startingPoints": [ {"menuGroup": "Monograph", diff --git a/static/profiles/bibframe/BIBFRAME 2.0 Agents.json b/static/profiles/bibframe/BIBFRAME 2.0 Agents.json index 71cc3fd..f41feb5 100755 --- a/static/profiles/bibframe/BIBFRAME 2.0 Agents.json +++ b/static/profiles/bibframe/BIBFRAME 2.0 Agents.json @@ -55,19 +55,6 @@ "propertyLabel": "Fuller Form of Name (RDA 9.5) CORE IF ...", "remark": "http://www.loc.gov/mads/rdf/v1#" }, - { - "mandatory": "false", - "repeatable": "true", - "type": "literal", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [], - "useValuesFrom": [], - "valueDataType": {} - }, - "propertyURI": "http://www.loc.gov/mads/rdf/v1#classification", - "propertyLabel": "Classification number" - }, { "mandatory": "false", "repeatable": "true", diff --git a/static/profiles/bibframe/BIBFRAME 2.0 Cartographic.json b/static/profiles/bibframe/BIBFRAME 2.0 Cartographic.json index fa1da1b..d792372 100755 --- a/static/profiles/bibframe/BIBFRAME 2.0 Cartographic.json +++ b/static/profiles/bibframe/BIBFRAME 2.0 Cartographic.json @@ -850,7 +850,7 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:Cartography:Item" + "profile:bf2:Cartographic:Item" ], "useValuesFrom": [], "valueDataType": {} diff --git a/static/profiles/bibframe/BIBFRAME 2.0 Form.json b/static/profiles/bibframe/BIBFRAME 2.0 Form.json index 7a5f570..b922928 100755 --- a/static/profiles/bibframe/BIBFRAME 2.0 Form.json +++ b/static/profiles/bibframe/BIBFRAME 2.0 Form.json @@ -33,7 +33,7 @@ { "mandatory": "false", "repeatable": "false", - "type": "lookup", + "type": "resource", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -45,11 +45,12 @@ "dataTypeURI": "", "remark": "http://id.loc.gov/ontologies/bibframe/GeographicCoverage" }, - "repeatable": "false" + "repeatable": "false", + "remark": "http://id.loc.gov/ontologies/bflc/target" }, "propertyLabel": "(Geographic) Coverage of the Content (RDA 7.3)", "remark": "http://access.rdatoolkit.org/7.3.html", - "propertyURI": "http://id.loc.gov/ontologies/bflc/target" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/GeographicCoverage" }, { "mandatory": "false", diff --git a/static/profiles/bibframe/BIBFRAME 2.0 Moving Image: 35mm Feature Film.json b/static/profiles/bibframe/BIBFRAME 2.0 Moving Image: 35mm Feature Film.json index 503fd0d..293b34c 100755 --- a/static/profiles/bibframe/BIBFRAME 2.0 Moving Image: 35mm Feature Film.json +++ b/static/profiles/bibframe/BIBFRAME 2.0 Moving Image: 35mm Feature Film.json @@ -656,7 +656,7 @@ "useValuesFrom": [], "valueDataType": {} }, - "propertyLabel": "Credits", + "propertyLabel": "Cast/Credits", "remark": "http://access.rdatoolkit.org/2.17.3.5.html", "propertyURI": "http://id.loc.gov/ontologies/bibframe/credits" }, @@ -1280,12 +1280,12 @@ "valueDataType": {} }, "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Credits note" + "propertyLabel": "Cast/credits note" } ], "id": "profile:bf2:35mmFeatureFilm:Credits", "resourceURI": "http://id.loc.gov/ontologies/bibframe/Credits", - "resourceLabel": "Credits note" + "resourceLabel": "Cast/Credits note" }, { "propertyTemplates": [ @@ -1519,7 +1519,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1533,7 +1533,7 @@ }, "propertyLabel": "Sound Content (RDA 7.18)", "remark": "http://access.rdatoolkit.org/7.18.html", - "propertyURI": "http://www.w3.org/1999/02/22-rdf-syntax-ns#value" + "propertyURI": "http://id.loc.gov/ontologies/bflc/target" }, { "mandatory": "false", @@ -1639,7 +1639,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1651,7 +1651,7 @@ "remark": "http://id.loc.gov/ontologies/bibframe/PlaybackChannels" } }, - "propertyURI": "http://www.w3.org/1999/02/22-rdf-syntax-ns#value", + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", "propertyLabel": "Configuration of Playback Channels (RDA 3.16.8)", "remark": "http://access.rdatoolkit.org/3.16.8.html" }, @@ -1681,7 +1681,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1693,7 +1693,7 @@ "remark": "http://id.loc.gov/ontologies/bibframe/PlaybackCharacteristic" } }, - "propertyURI": "http://www.w3.org/1999/02/22-rdf-syntax-ns#value", + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", "propertyLabel": "Special Playback Characteristic (RDA 3.16.9)", "remark": "http://access.rdatoolkit.org/3.16.9.html" } diff --git a/static/profiles/bibframe/BIBFRAME 2.0 Moving Image: BluRay DVD.json b/static/profiles/bibframe/BIBFRAME 2.0 Moving Image: BluRay DVD.json index 6717cc4..86faa5f 100755 --- a/static/profiles/bibframe/BIBFRAME 2.0 Moving Image: BluRay DVD.json +++ b/static/profiles/bibframe/BIBFRAME 2.0 Moving Image: BluRay DVD.json @@ -730,6 +730,21 @@ "remark": "http://access.rdatoolkit.org/2.17.html", "propertyURI": "http://id.loc.gov/ontologies/bibframe/note" }, + { + "mandatory": "false", + "repeatable": "true", + "type": "resource", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [ + "profile:bf2:MIBluRayDVD:SupplContent" + ], + "useValuesFrom": [], + "valueDataType": {} + }, + "propertyURI": "http://id.loc.gov/ontologies/bibframe/supplementaryContent", + "propertyLabel": "Supplementary Content" + }, { "mandatory": "false", "repeatable": "true", @@ -757,7 +772,7 @@ "useValuesFrom": [], "valueDataType": {} }, - "propertyLabel": "Credits", + "propertyLabel": "Cast/Credits", "remark": "http://access.rdatoolkit.org/2.17.3.5.html", "propertyURI": "http://id.loc.gov/ontologies/bibframe/credits" }, @@ -950,11 +965,14 @@ "valueConstraint": { "valueTemplateRefs": [ "profile:bf2:MIBluRayDVD:Sound", + "profile:bf2:MIBluRayDVD:Sound3", "profile:bf2:MIBluRayDVD:Sound1", "profile:bf2:MIBluRayDVD:Sound2" ], "useValuesFrom": [], - "valueDataType": {} + "valueDataType": {}, + "defaultURI": "", + "defaultLiteral": "" }, "propertyLabel": "Sound Characteristics", "remark": "", @@ -987,7 +1005,8 @@ "valueTemplateRefs": [ "profile:bf2:MIBluRayDVD:Digital", "profile:bf2:MIBluRayDVD:FileType", - "profile:bf2:MIBluRayDVD:RegEnc" + "profile:bf2:MIBluRayDVD:RegEnc", + "profile:bf2:MIBluRayDVD:EncFmt" ], "useValuesFrom": [], "valueDataType": { @@ -1391,11 +1410,11 @@ "valueDataType": {} }, "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Credits note" + "propertyLabel": "Cast/Credits note" } ], "id": "profile:bf2:MIBluRayDVD:Credits", - "resourceLabel": "Credits note", + "resourceLabel": "Cast/Credits note", "resourceURI": "http://id.loc.gov/ontologies/bibframe/Credits" }, { @@ -1445,7 +1464,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1458,40 +1477,40 @@ } }, "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "Aspect Ratio (RDA 7.19)", - "remark": "http://access.rdatoolkit.org/7.19.html" + "propertyLabel": "Aspect Ratio (RDA 7.19.1.4)", + "remark": "http://access.rdatoolkit.org/7.19.1.4.html" }, { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [], + "valueTemplateRefs": [ + "profile:bf2:Note" + ], "useValuesFrom": [], - "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/AspectRatio" - } + "valueDataType": {} }, - "propertyURI": "http://www.w3.org/1999/02/22-rdf-syntax-ns#value", - "propertyLabel": "Numerical Values of Aspect Ratio (RDA 7.19.1.3)", - "remark": "http://access.rdatoolkit.org/7.19.1.3.html" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", + "propertyLabel": "Details of Aspect Ratio (RDA 7.19.1.4.1.4)", + "remark": "http://access.rdatoolkit.org/7.19.1.4.1.4.html" }, { "mandatory": "false", "repeatable": "true", - "type": "resource", + "type": "literal", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:Note" - ], + "valueTemplateRefs": [], "useValuesFrom": [], - "valueDataType": {} + "valueDataType": { + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/AspectRatio" + } }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Details of Aspect Ratio (RDA 7.19.1.4)", - "remark": "http://access.rdatoolkit.org/7.19.1.4.html" + "propertyURI": "http://www.w3.org/1999/02/22-rdf-syntax-ns#value", + "propertyLabel": "Numerical Values of Aspect Ratio (RDA 7.19.1.3)", + "remark": "http://access.rdatoolkit.org/7.19.1.3.html" } ], "id": "profile:bf2:MIBluRayDVD:Aspect", @@ -1654,7 +1673,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1666,7 +1685,7 @@ "remark": "http://id.loc.gov/ontologies/bibframe/SoundContent" } }, - "propertyURI": "http://www.w3.org/1999/02/22-rdf-syntax-ns#value", + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", "propertyLabel": "Sound Content (RDA 7.18)", "remark": "http://access.rdatoolkit.org/7.18.html" }, @@ -1696,7 +1715,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1705,12 +1724,18 @@ ], "valueDataType": { "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic" - } + "remark": "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic", + "dataTypeLabelHint": "" + }, + "defaultURI": "", + "defaultLiteral": "", + "editable": "true", + "repeatable": "true", + "remark": "http://id.loc.gov/vocabulary/mrectype/digital" }, "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "Sound Characteristic (RDA 3.16)", - "remark": "http://access.rdatoolkit.org/3.16.html" + "propertyLabel": "Type of Recording (RDA 3.16.2)", + "remark": "http://access.rdatoolkit.org/3.16.2.html" }, { "mandatory": "false", @@ -1725,20 +1750,59 @@ "valueDataType": {} }, "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Details of Sound Characteristic (RDA 3.16.1.4)", - "remark": "http://access.rdatoolkit.org/3.16.1.4.html" + "propertyLabel": "Details of Type of Recording (RDA 3.16.2.4)", + "remark": "http://access.rdatoolkit.org/3.16.2.4.html" } ], "id": "profile:bf2:MIBluRayDVD:Sound", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic", - "resourceLabel": "Sound Characteristics" + "resourceURI": "http://id.loc.gov/ontologies/bibframe/RecordingMethod", + "resourceLabel": "Type of Recording" }, { "propertyTemplates": [ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [], + "useValuesFrom": [ + "http://id.loc.gov/vocabulary/mrecmedium" + ], + "valueDataType": {} + }, + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", + "propertyLabel": "Type of Recording (RDA 3.16.3)", + "remark": "http://access.rdatoolkit.org/3.16.3.html" + }, + { + "mandatory": "false", + "repeatable": "true", + "type": "resource", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [ + "profile:bf2:Note" + ], + "useValuesFrom": [], + "valueDataType": {} + }, + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", + "propertyLabel": "Details of Recording Medium (RDA 3.16.3.4)", + "remark": "http://access.rdatoolkit.org/3.16.3.4.html" + } + ], + "id": "profile:bf2:MIBluRayDVD:Sound3", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/RecordingMedium", + "resourceLabel": "Recording Medium" + }, + { + "propertyTemplates": [ + { + "mandatory": "false", + "repeatable": "true", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1780,7 +1844,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1821,19 +1885,18 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "literal", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/vocabulary/mproduction" - ], + "useValuesFrom": [], "valueDataType": { "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/ProductionMethod" + "remark": "http://id.loc.gov/ontologies/bibframe/ProductionMethod", + "dataTypeLabel": "http://id.loc.gov/ontologies/bflc/target" } }, - "propertyURI": "http://id.loc.gov/ontologies/bflc/target", + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", "propertyLabel": "Production Method (RDA 3.9.1.3)", "remark": "http://access.rdatoolkit.org/3.9.1.3.html" }, @@ -1935,7 +1998,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1956,32 +2019,6 @@ "id": "profile:bf2:MIBluRayDVD:RegEnc", "resourceLabel": "Regional Encoding" }, - { - "propertyTemplates": [ - { - "mandatory": "false", - "repeatable": "true", - "type": "lookup", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/vocabulary/mfiletype" - ], - "valueDataType": { - "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/FileType" - } - }, - "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "File Type (RDA 3.19.2)", - "remark": "http://access.rdatoolkit.org/3.19.2.html" - } - ], - "id": "profile:bf2:MIBluRayDVD:FileType", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/FileType", - "resourceLabel": "File type" - }, { "propertyTemplates": [ { @@ -1995,35 +2032,61 @@ "valueDataType": {} }, "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "remark": "http://access.rdatoolkit.org/3.19.html", - "propertyLabel": "Digital File Characteristic (RDA 3.19)" + "propertyLabel": "Encoding Format (RDA 3.19.3)", + "remark": "http://access.rdatoolkit.org/3.19.3.html" } ], - "id": "profile:bf2:MIBluRayDVD:Digital", - "resourceLabel": "Digital Characteristics", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic" + "id": "profile:bf2:MIBluRayDVD:EncFmt", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/EncodingFormat", + "resourceLabel": "Encoding Format" }, { "propertyTemplates": [ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [ - "http://id.loc.gov/vocabulary/mbroadstd" + "http://id.loc.gov/vocabulary/mfiletype" ], "valueDataType": { "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/BroadcastStandard" - } + "remark": "http://id.loc.gov/ontologies/bibframe/FileType" + }, + "defaultURI": "", + "defaultLiteral": "", + "remark": "http://id.loc.gov/vocabulary/mfiletype/video" }, "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "Broadcast Standard (RDA 3.18.3)", - "remark": "http://access.rdatoolkit.org/3.18.3.html" + "propertyLabel": "File Type (RDA 3.19.2)", + "remark": "http://access.rdatoolkit.org/3.19.2.html" }, + { + "mandatory": "false", + "repeatable": "true", + "type": "resource", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [ + "profile:bf2:Note" + ], + "useValuesFrom": [], + "valueDataType": {} + }, + "remark": "http://access.rdatoolkit.org/3.19.2.4.html", + "propertyLabel": "Details of File Type (RDA 3.19.2.4)", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note" + } + ], + "id": "profile:bf2:MIBluRayDVD:FileType", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/FileType", + "resourceLabel": "File type" + }, + { + "propertyTemplates": [ { "mandatory": "false", "repeatable": "true", @@ -2037,33 +2100,34 @@ "valueDataType": {} }, "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Details of Broadcast Standard" + "remark": "http://access.rdatoolkit.org/3.19.1.4.html", + "propertyLabel": "Details of Digital File Characteristic (RDA 3.19.1.4)" } ], - "id": "profile:bf2:MIBluRayDVD:BroadStd", - "resourceLabel": "Broadcast Standard", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/BroadcastStandard" + "id": "profile:bf2:MIBluRayDVD:Digital", + "resourceLabel": "Digital Characteristics", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic" }, { "propertyTemplates": [ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [ - "http://id.loc.gov/vocabulary/mvidformat" + "http://id.loc.gov/vocabulary/mbroadstd" ], "valueDataType": { "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/VideoFormat" + "remark": "http://id.loc.gov/ontologies/bibframe/BroadcastStandard" } }, "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "Video Format (RDA 3.18.2)", - "remark": "http://access.rdatoolkit.org/3.18.2.html" + "propertyLabel": "Broadcast Standard (RDA 3.18.3)", + "remark": "http://access.rdatoolkit.org/3.18.3.html" }, { "mandatory": "false", @@ -2078,13 +2142,13 @@ "valueDataType": {} }, "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Details of Video Format" + "propertyLabel": "Details of Broadcast Standard (RDA 3.18.3.4)", + "remark": "http://access.rdatoolkit.org/3.18.3.4.html" } ], - "id": "profile:bf2:MIBluRayDVD:VidFormat", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/VideoFormat", - "remark": "", - "resourceLabel": "Video Format" + "id": "profile:bf2:MIBluRayDVD:BroadStd", + "resourceLabel": "Broadcast Standard", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/BroadcastStandard" }, { "propertyTemplates": [ diff --git a/static/profiles/bibframe/BIBFRAME 2.0 Notated Music.json b/static/profiles/bibframe/BIBFRAME 2.0 Notated Music.json index 106dbed..666d01e 100755 --- a/static/profiles/bibframe/BIBFRAME 2.0 Notated Music.json +++ b/static/profiles/bibframe/BIBFRAME 2.0 Notated Music.json @@ -1026,9 +1026,17 @@ "useValuesFrom": [], "valueDataType": {} }, - "propertyLabel": "Total Number of Performers: Individual Instruments (no ensemble present)", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" - }, + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", + "propertyLabel": "Contents note", + "remark": "http://access.rdatoolkit.org/lcpschp25_lcps25-354.html" + } + ], + "id": "profile:bf2:NotatedMusic:Contents", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/TableOfContents", + "resourceLabel": "Contents note" + }, + { + "propertyTemplates": [ { "mandatory": "false", "repeatable": "true", @@ -1037,12 +1045,37 @@ "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [], - "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" - } + "valueDataType": {} }, "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Record complete instrumentation as text field" + "propertyLabel": "Summary note", + "remark": "http://access.rdatoolkit.org/7.10.html" + } + ], + "id": "profile:bf2:NotatedMusic:Summary", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/Summary", + "resourceLabel": "Summary note" + }, + { + "propertyTemplates": [ + { + "mandatory": "false", + "repeatable": "false", + "type": "target", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [], + "useValuesFrom": [ + "http://id.loc.gov/authorities/performanceMediums" + ], + "valueDataType": { + "dataTypeURI": "", + "remark": "" + }, + "repeatable": "false" + }, + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", + "propertyLabel": "LCMPT for Instrument" }, { "mandatory": "false", @@ -1055,7 +1088,7 @@ "valueDataType": {} }, "propertyURI": "http://id.loc.gov/ontologies/bibframe/count", - "propertyLabel": "Total Number of Performers: Individual Instruments (ensemble present)" + "propertyLabel": "Number" }, { "mandatory": "false", @@ -1066,36 +1099,38 @@ "valueTemplateRefs": [], "useValuesFrom": [], "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" + "dataTypeURI": "" } }, - "propertyLabel": "Record complete instrumentation as text field", - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/instrumentalType", + "propertyLabel": "Type of instrument" }, { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [], + "valueTemplateRefs": [ + "profile:bf2:Note" + ], "useValuesFrom": [], "valueDataType": {} }, - "propertyLabel": "Total Number of Ensembles", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", + "propertyLabel": "Note" } ], - "id": "profile:bf2:NotatedMusic:MediumOfPerformanceCombining", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium", - "resourceLabel": "Medium of Performance: Combining Facets" + "id": "profile:bf2:NotatedMusic:MedPerfInst", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicInstrument", + "resourceLabel": "Instrument" }, { "propertyTemplates": [ { "mandatory": "false", - "repeatable": "true", - "type": "resource", + "repeatable": "false", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1103,11 +1138,12 @@ "http://id.loc.gov/authorities/performanceMediums" ], "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" - } + "dataTypeURI": "" + }, + "repeatable": "false" }, - "propertyLabel": "Search Individual Instrument or Ensemble in LCMPT ... OR ...", - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label" + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", + "propertyLabel": "LCMPT for Voice" }, { "mandatory": "false", @@ -1117,51 +1153,65 @@ "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [], - "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" - } + "valueDataType": {} }, - "propertyLabel": "Record Individual Instrument or Ensemble", - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/count", + "propertyLabel": "Number" }, { "mandatory": "false", - "repeatable": "false", + "repeatable": "true", "type": "literal", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [], - "valueDataType": {} + "valueDataType": { + "dataTypeURI": "" + } }, - "propertyLabel": "Number of Parts: Individual Instrument ... AND/OR ...", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/voiceType", + "propertyLabel": "Type of voice" }, { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [], + "valueTemplateRefs": [ + "profile:bf2:Note" + ], "useValuesFrom": [], "valueDataType": {} }, - "propertyLabel": "Number of Performers: Individual Instrument ... AND/OR ...", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" - }, + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", + "propertyLabel": "Note" + } + ], + "id": "profile:bf2:NotatedMusic:MedPerfVoice", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicVoice", + "resourceLabel": "Voice" + }, + { + "propertyTemplates": [ { "mandatory": "false", - "repeatable": "true", - "type": "literal", + "repeatable": "false", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], - "useValuesFrom": [], - "valueDataType": {} + "useValuesFrom": [ + "http://id.loc.gov/authorities/performanceMediums" + ], + "valueDataType": { + "dataTypeURI": "" + }, + "repeatable": "false" }, - "propertyLabel": "Number of Players: Percussion ... AND/OR ...", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", + "propertyLabel": "LCMPT for Ensemble" }, { "mandatory": "false", @@ -1173,8 +1223,8 @@ "useValuesFrom": [], "valueDataType": {} }, - "propertyLabel": "Number of Hands: Individual instrument ... AND/OR ...", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/count", + "propertyLabel": "Number" }, { "mandatory": "false", @@ -1184,10 +1234,12 @@ "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [], - "valueDataType": {} + "valueDataType": { + "dataTypeURI": "" + } }, - "propertyLabel": "Number of Ensembles", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/ensembleType", + "propertyLabel": "Type of Ensemble" }, { "mandatory": "false", @@ -1195,31 +1247,39 @@ "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/authorities/performanceMediums" + "valueTemplateRefs": [ + "profile:bf2:Note" ], - "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" - } + "useValuesFrom": [], + "valueDataType": {} }, - "propertyLabel": "Search Doubling Medium of Performance ... OR ...", - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label" - }, + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", + "propertyLabel": "Note" + } + ], + "id": "profile:bf2:NotatedMusic:MedPerfEnsemble", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicEnsemble", + "resourceLabel": "Ensemble" + }, + { + "propertyTemplates": [ { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], - "useValuesFrom": [], + "useValuesFrom": [ + "http://id.loc.gov/vocabulary/mmusnotation" + ], "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Notation" } }, - "propertyLabel": "Record Doubling Medium of Performance", - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label" + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", + "propertyLabel": "Form of Musical Notation (RDA 7.13.3)", + "remark": "http://access.rdatoolkit.org/7.13.3.html" }, { "mandatory": "false", @@ -1227,17 +1287,23 @@ "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/authorities/performanceMediums" + "valueTemplateRefs": [ + "profile:bf2:Note" ], - "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" - } + "useValuesFrom": [], + "valueDataType": {} }, - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Search Alternative Instrumentation Medium of Performance ... OR ..." - }, + "remark": "http://access.rdatoolkit.org/7.13.3.4.html", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", + "propertyLabel": "Details of Form of Musical Notation (RDA 7.13.3.4)" + } + ], + "id": "profile:bf2:NotatedMusic:Notation", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicNotation", + "resourceLabel": "Form of Musical Notation" + }, + { + "propertyTemplates": [ { "mandatory": "false", "repeatable": "true", @@ -1246,12 +1312,11 @@ "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [], - "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" - } + "valueDataType": {} }, "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Record Alternative Instrumentation Medium of Performance" + "propertyLabel": "Extent (RDA 3.4)", + "remark": "http://access.rdatoolkit.org/3.4.html" }, { "mandatory": "false", @@ -1265,13 +1330,13 @@ "useValuesFrom": [], "valueDataType": {} }, - "propertyLabel": "Note on Instrumentation", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/note" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", + "propertyLabel": "Note on extent" } ], - "id": "profile:bf2:NotatedMusic:MediumOfPerformanceIndividual", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium", - "resourceLabel": "Medium of Performance: Individual Facets" + "id": "profile:bf2:NotatedMusic:Extent", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/Extent", + "resourceLabel": "Extent" }, { "propertyTemplates": [ @@ -1283,19 +1348,14 @@ "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [], - "valueDataType": {} + "valueDataType": { + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/SupplementaryContent" + } }, "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Contents note", - "remark": "http://access.rdatoolkit.org/lcpschp25_lcps25-354.html" - } - ], - "id": "profile:bf2:NotatedMusic:Contents", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/TableOfContents", - "resourceLabel": "Contents note" - }, - { - "propertyTemplates": [ + "propertyLabel": "Supplementary Content (RDA 7.16)", + "remark": "http://access.rdatoolkit.org/7.16.html" + }, { "mandatory": "false", "repeatable": "true", @@ -1306,36 +1366,16 @@ "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Summary note", - "remark": "http://access.rdatoolkit.org/7.10.html" + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", + "propertyLabel": "URI for Supplementary Content" } ], - "id": "profile:bf2:NotatedMusic:Summary", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/Summary", - "resourceLabel": "Summary note" + "id": "profile:bf2:NotatedMusic:SupplContent", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/SupplementaryContent", + "resourceLabel": "Supplementary Content" }, { "propertyTemplates": [ - { - "mandatory": "false", - "repeatable": "false", - "type": "target", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/authorities/performanceMediums" - ], - "valueDataType": { - "dataTypeURI": "", - "remark": "" - }, - "repeatable": "false" - }, - "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "LCMPT for Instrument" - }, { "mandatory": "false", "repeatable": "true", @@ -1346,23 +1386,35 @@ "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/count", - "propertyLabel": "Number" - }, + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", + "propertyLabel": "Medium of Performance (RDA 6.15)", + "remark": "http://access.rdatoolkit.org/6.15.html" + } + ], + "id": "profile:bf2:NotatedMusic:MOPStatement", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium", + "resourceLabel": "Medium of Performance Statement" + }, + { + "id": "profile:bf2:NotatedMusic:WorkOld", + "propertyTemplates": [ { - "mandatory": "false", - "repeatable": "true", - "type": "literal", + "propertyLabel": "Lookup BIBFRAME works", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/Work", "resourceTemplates": [], + "type": "resource", "valueConstraint": { + "repeatable": "true", + "useValuesFrom": [ + "http://mlvlp04.loc.gov:8230/resources/works" + ], "valueTemplateRefs": [], - "useValuesFrom": [], "valueDataType": { - "dataTypeURI": "" + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Work" } }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/instrumentalType", - "propertyLabel": "Type of instrument" + "mandatory": "false", + "repeatable": "true" }, { "mandatory": "false", @@ -1371,134 +1423,114 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:Note" + "profile:bflc:Agents:PrimaryContribution" ], "useValuesFrom": [], - "valueDataType": {} + "valueDataType": { + "dataTypeURI": "http://id.loc.gov/ontologies/bflc/PrimaryContribution" + } }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Note" - } - ], - "id": "profile:bf2:NotatedMusic:MedPerfInst", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicInstrument", - "resourceLabel": "Instrument" - }, - { - "propertyTemplates": [ + "propertyLabel": "Creator of Work (RDA 19.2)", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/contribution", + "remark": "http://access.rdatoolkit.org/19.2.html" + }, { - "mandatory": "false", - "repeatable": "false", - "type": "target", + "propertyLabel": "Title Information (RDA 6.14.2, RDA 6.14.3)", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/title", + "remark": "", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/authorities/performanceMediums" + "valueTemplateRefs": [ + "profile:bf2:WorkTitle", + "profile:bf2:WorkVariantTitle", + "profile:bflc:TranscribedTitle" ], - "valueDataType": { - "dataTypeURI": "" - }, - "repeatable": "false" + "useValuesFrom": [], + "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "LCMPT for Voice" - }, - { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "resource" + }, + { + "propertyLabel": "Form of Work", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/genreForm", "resourceTemplates": [], + "type": "resource", "valueConstraint": { - "valueTemplateRefs": [], + "valueTemplateRefs": [ + "profile:bf2:Form" + ], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/count", - "propertyLabel": "Number" + "remark": "", + "mandatory": "false", + "repeatable": "true" }, { - "mandatory": "false", - "repeatable": "true", - "type": "literal", + "propertyLabel": "Date of Work (RDA 6.4)", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/originDate", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [], - "valueDataType": { - "dataTypeURI": "" - } + "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/voiceType", - "propertyLabel": "Type of voice" - }, - { + "remark": "http://access.rdatoolkit.org/6.4.html", "mandatory": "false", "repeatable": "true", - "type": "resource", + "type": "literal" + }, + { + "propertyLabel": "Place of Origin of the Work (RDA 6.5)", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/originPlace", "resourceTemplates": [], + "type": "resource", "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:Note" + "profile:bf2:Place" ], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Note" - } - ], - "id": "profile:bf2:NotatedMusic:MedPerfVoice", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicVoice", - "resourceLabel": "Voice" - }, - { - "propertyTemplates": [ - { + "remark": "http://access.rdatoolkit.org/6.5.html", "mandatory": "false", - "repeatable": "false", - "type": "target", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/authorities/performanceMediums" - ], - "valueDataType": { - "dataTypeURI": "" - }, - "repeatable": "false" - }, - "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "LCMPT for Ensemble" + "repeatable": "true" }, { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [], + "valueTemplateRefs": [ + "profile:bf2:NotatedMusic:MediumOfPerformanceIndividual", + "profile:bf2:NotatedMusic:MediumOfPerformanceCombining" + ], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/count", - "propertyLabel": "Number" + "propertyLabel": "Medium of Performance (RDA 6.15)", + "remark": "http://access.rdatoolkit.org/6.15.html", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/musicMedium" }, { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [], + "valueTemplateRefs": [ + "profile:bf2:NotatedMusic:MedPerfInst" + ], "useValuesFrom": [], "valueDataType": { "dataTypeURI": "" } }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/ensembleType", - "propertyLabel": "Type of Ensemble" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/instrument", + "propertyLabel": "Medium of Performance - Instrument" }, { "mandatory": "false", @@ -1507,38 +1539,13 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:Note" + "profile:bf2:NotatedMusic:MedPerfVoice" ], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Note" - } - ], - "id": "profile:bf2:NotatedMusic:MedPerfEnsemble", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicEnsemble", - "resourceLabel": "Ensemble" - }, - { - "propertyTemplates": [ - { - "mandatory": "false", - "repeatable": "true", - "type": "lookup", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/vocabulary/mmusnotation" - ], - "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Notation" - } - }, - "propertyURI": "http://www.w3.org/1999/02/22-rdf-syntax-ns#value", - "propertyLabel": "Form of Musical Notation (RDA 7.13.3)", - "remark": "http://access.rdatoolkit.org/7.13.3.html" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/voice", + "propertyLabel": "Medium of Performance - Voice" }, { "mandatory": "false", @@ -1547,22 +1554,14 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:Note" + "profile:bf2:NotatedMusic:MedPerfEnsemble" ], "useValuesFrom": [], "valueDataType": {} }, - "remark": "http://access.rdatoolkit.org/7.13.3.4.html", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Details of Form of Musical Notation (RDA 7.13.3.4)" - } - ], - "id": "profile:bf2:NotatedMusic:Notation", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicNotation", - "resourceLabel": "Form of Musical Notation" - }, - { - "propertyTemplates": [ + "propertyURI": "http://id.loc.gov/ontologies/bibframe/ensemble", + "propertyLabel": "Medium of Performance - Ensemble" + }, { "mandatory": "false", "repeatable": "true", @@ -1573,107 +1572,89 @@ "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Extent (RDA 3.4)", - "remark": "http://access.rdatoolkit.org/3.4.html" + "propertyLabel": "Numerical Designation of a Musical Work (RDA 6.16)", + "remark": "http://access.rdatoolkit.org/6.16.html", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/musicSerialNumber" }, { "mandatory": "false", "repeatable": "true", - "type": "resource", + "type": "literal", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:Note" - ], + "valueTemplateRefs": [], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Note on extent" - } - ], - "id": "profile:bf2:NotatedMusic:Extent", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/Extent", - "resourceLabel": "Extent" - }, - { - "propertyTemplates": [ + "propertyLabel": "Key (RDA 6.17)", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/musicKey", + "remark": "http://access.rdatoolkit.org/6.17.html" + }, { - "mandatory": "false", - "repeatable": "true", - "type": "literal", + "propertyLabel": "Intended Audience (RDA 7.7)", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/intendedAudience", "resourceTemplates": [], + "type": "resource", "valueConstraint": { "valueTemplateRefs": [], - "useValuesFrom": [], + "useValuesFrom": [ + "http://id.loc.gov/vocabulary/maudience" + ], "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/SupplementaryContent" + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/IntendedAudience" } }, - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Supplementary Content (RDA 7.16)", - "remark": "http://access.rdatoolkit.org/7.16.html" + "remark": "http://access.rdatoolkit.org/7.7.html", + "mandatory": "false", + "repeatable": "true" }, { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [], + "valueTemplateRefs": [ + "profile:bf2:Agents:Contribution" + ], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "URI for Supplementary Content" - } - ], - "id": "profile:bf2:NotatedMusic:SupplContent", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/SupplementaryContent", - "resourceLabel": "Supplementary Content" - }, - { - "propertyTemplates": [ + "propertyLabel": "Other Person, Family, or Corporate Body Associated With a Work (RDA 19.3)", + "remark": "http://access.rdatoolkit.org/19.3.html", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/contribution" + }, { - "mandatory": "false", - "repeatable": "true", - "type": "literal", + "propertyLabel": "Subject of the Work (RDA Chapter 23)", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/subject", "resourceTemplates": [], + "type": "resource", "valueConstraint": { - "valueTemplateRefs": [], + "valueTemplateRefs": [ + "profile:bf2:Topic" + ], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Medium of Performance (RDA 6.15)", - "remark": "http://access.rdatoolkit.org/6.15.html" - } - ], - "id": "profile:bf2:NotatedMusic:MOPStatement", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium", - "resourceLabel": "Medium of Performance Statement" - }, - { - "id": "profile:bf2:NotatedMusic:WorkOld", - "propertyTemplates": [ + "remark": "http://access.rdatoolkit.org/rdachp23_rda23-12.html", + "mandatory": "false", + "repeatable": "true" + }, { - "propertyLabel": "Lookup BIBFRAME works", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/Work", "resourceTemplates": [], - "type": "resource", "valueConstraint": { - "repeatable": "true", - "useValuesFrom": [ - "http://mlvlp04.loc.gov:8230/resources/works" + "valueTemplateRefs": [ + "profile:bf2:Note" ], - "valueTemplateRefs": [], - "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Work" - } + "useValuesFrom": [], + "valueDataType": {} }, + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", + "propertyLabel": "Notes about the Work", + "remark": "", "mandatory": "false", - "repeatable": "true" + "repeatable": "true", + "type": "resource" }, { "mandatory": "false", @@ -1682,80 +1663,103 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bflc:Agents:PrimaryContribution" + "profile:bf2:LCC", + "profile:bf2:DDC" ], "useValuesFrom": [], - "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bflc/PrimaryContribution" - } + "valueDataType": {} }, - "propertyLabel": "Creator of Work (RDA 19.2)", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/contribution", - "remark": "http://access.rdatoolkit.org/19.2.html" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/classification", + "propertyLabel": "Classification numbers" }, { - "propertyLabel": "Title Information (RDA 6.14.2, RDA 6.14.3)", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/title", - "remark": "", + "propertyLabel": "Related Works (RDA Chapter 25 and Appendix J)", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/relatedTo", "resourceTemplates": [], + "type": "resource", "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:WorkTitle", - "profile:bf2:WorkVariantTitle", - "profile:bflc:TranscribedTitle" + "profile:bf2:RelatedWork" ], "useValuesFrom": [], "valueDataType": {} }, + "remark": "http://access.rdatoolkit.org/rdachp25_rda25-65.html", + "mandatory": "false", + "repeatable": "true" + }, + { "mandatory": "false", "repeatable": "true", - "type": "resource" + "type": "resource", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [ + "profile:bf2:RelatedExpression" + ], + "useValuesFrom": [], + "valueDataType": {} + }, + "propertyURI": "http://id.loc.gov/ontologies/bibframe/hasExpression", + "propertyLabel": "Related Expressions" }, { - "propertyLabel": "Form of Work", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/genreForm", + "propertyLabel": "Contents (LC-PCC PS 25.1)", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/tableOfContents", "resourceTemplates": [], - "type": "resource", "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:Form" + "profile:bf2:NotatedMusic:Contents" ], "useValuesFrom": [], "valueDataType": {} }, - "remark": "", "mandatory": "false", - "repeatable": "true" + "repeatable": "true", + "type": "resource", + "remark": "" }, { - "propertyLabel": "Date of Work (RDA 6.4)", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/originDate", + "mandatory": "false", + "repeatable": "true", + "type": "literal", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [], "valueDataType": {} }, - "remark": "http://access.rdatoolkit.org/6.4.html", - "mandatory": "false", - "repeatable": "true", - "type": "literal" + "propertyLabel": "Authorized Access Point Representing the Musical Work (RDA 6.28.1)", + "remark": "http://access.rdatoolkit.org/6.28.1.html", + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label" }, { - "propertyLabel": "Place of Origin of the Work (RDA 6.5)", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/originPlace", - "resourceTemplates": [], + "mandatory": "false", + "repeatable": "true", "type": "resource", + "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:Place" + "profile:bf2:NotatedMusic:Expression" ], "useValuesFrom": [], "valueDataType": {} }, - "remark": "http://access.rdatoolkit.org/6.5.html", + "propertyLabel": "Expression elements", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/hasExpression" + }, + { "mandatory": "false", - "repeatable": "true" + "repeatable": "true", + "type": "literal", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [], + "useValuesFrom": [], + "valueDataType": {} + }, + "propertyURI": "http://id.loc.gov/ontologies/bflc/comment", + "propertyLabel": "Your Windows ID and Comments" }, { "mandatory": "false", @@ -1764,32 +1768,38 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:NotatedMusic:MediumOfPerformanceIndividual", - "profile:bf2:NotatedMusic:MediumOfPerformanceCombining" + "profile:bf2:NotatedMusic:Instance" ], "useValuesFrom": [], "valueDataType": {} }, - "propertyLabel": "Medium of Performance (RDA 6.15)", - "remark": "http://access.rdatoolkit.org/6.15.html", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/musicMedium" - }, + "propertyURI": "http://id.loc.gov/ontologies/bibframe/hasInstance", + "propertyLabel": "Has BIBFRAME Instance" + } + ], + "resourceLabel": "BIBFRAME Work (RDA Work Elements)", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/Work", + "remark": "Graphic, non-realized representations of musical works intended to be perceived visually." + }, + { + "propertyTemplates": [ { "mandatory": "false", "repeatable": "true", "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:NotatedMusic:MedPerfInst" + "valueTemplateRefs": [], + "useValuesFrom": [ + "http://mlvlp04.loc.gov:8230/resources/works" ], - "useValuesFrom": [], "valueDataType": { - "dataTypeURI": "" + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Work" } }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/instrument", - "propertyLabel": "Medium of Performance - Instrument" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/expressionOf", + "propertyLabel": "Lookup", + "remark": "Expression has a related work. For use to connect Works under FRBR/RDA rules." }, { "mandatory": "false", @@ -1798,13 +1808,17 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:NotatedMusic:MedPerfVoice" + "profile:bf2:NotatedMusic:MediumOfPerformanceIndividual", + "profile:bf2:NotatedMusic:MediumOfPerformanceCombining" ], "useValuesFrom": [], - "valueDataType": {} + "valueDataType": { + "remark": "profile:bf2:NotatedMusic:MediumOfPerformanceIndividual" + } }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/voice", - "propertyLabel": "Medium of Performance - Voice" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/musicMedium", + "propertyLabel": "Medium of Performance of the Musical Expression", + "remark": "" }, { "mandatory": "false", @@ -1813,27 +1827,35 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ + "profile:bf2:NotatedMusic:MedPerfInst", + "profile:bf2:NotatedMusic:MedPerfVoice", "profile:bf2:NotatedMusic:MedPerfEnsemble" ], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/ensemble", - "propertyLabel": "Medium of Performance - Ensemble" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/musicMedium", + "propertyLabel": "Medium of Performance (New)" }, { "mandatory": "false", - "repeatable": "true", - "type": "literal", + "repeatable": "false", + "type": "resource", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], - "useValuesFrom": [], - "valueDataType": {} + "useValuesFrom": [ + "http://id.loc.gov/vocabulary/contentTypes" + ], + "valueDataType": { + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Content" + }, + "defaultURI": "http://id.loc.gov/vocabulary/contentTypes/ntm", + "defaultLiteral": "Notated music" }, - "propertyLabel": "Numerical Designation of a Musical Work (RDA 6.16)", - "remark": "http://access.rdatoolkit.org/6.16.html", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/musicSerialNumber" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/content", + "propertyLabel": "Content Type (RDA 6.9)", + "remark": "http://access.rdatoolkit.org/6.9.html" }, { "mandatory": "false", @@ -1845,27 +1867,27 @@ "useValuesFrom": [], "valueDataType": {} }, - "propertyLabel": "Key (RDA 6.17)", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/musicKey", - "remark": "http://access.rdatoolkit.org/6.17.html" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/originDate", + "propertyLabel": "Date of Expression (RDA 6.10)", + "remark": "http://access.rdatoolkit.org/6.10.html" }, { - "propertyLabel": "Intended Audience (RDA 7.7)", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/intendedAudience", - "resourceTemplates": [], + "mandatory": "false", + "repeatable": "true", "type": "resource", + "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [ - "http://id.loc.gov/vocabulary/maudience" + "http://id.loc.gov/vocabulary/languages" ], "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/IntendedAudience" + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Language" } }, - "remark": "http://access.rdatoolkit.org/7.7.html", - "mandatory": "false", - "repeatable": "true" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/language", + "propertyLabel": "Language of Expression (RDA 6.11)", + "remark": "http://access.rdatoolkit.org/6.11.html" }, { "mandatory": "false", @@ -1874,46 +1896,44 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:Agents:Contribution" + "profile:bf2:NotatedMusic:Summary" ], "useValuesFrom": [], "valueDataType": {} }, - "propertyLabel": "Other Person, Family, or Corporate Body Associated With a Work (RDA 19.3)", - "remark": "http://access.rdatoolkit.org/19.3.html", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/contribution" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/summary", + "propertyLabel": "Summary", + "remark": "" }, { - "propertyLabel": "Subject of the Work (RDA Chapter 23)", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/subject", - "resourceTemplates": [], + "mandatory": "false", + "repeatable": "true", "type": "resource", + "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:Topic" + "profile:bf2:Language:Note" ], "useValuesFrom": [], "valueDataType": {} }, - "remark": "http://access.rdatoolkit.org/rdachp23_rda23-12.html", - "mandatory": "false", - "repeatable": "true" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/language", + "propertyLabel": "Language of Content (RDA 7.12)", + "remark": "http://access.rdatoolkit.org/7.12.html" }, { + "mandatory": "false", + "repeatable": "true", + "type": "literal", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:Note" - ], + "valueTemplateRefs": [], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Notes about the Work", - "remark": "", - "mandatory": "false", - "repeatable": "true", - "type": "resource" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/notation", + "propertyLabel": "Script (RDA 7.13.2)", + "remark": "http://access.rdatoolkit.org/7.13.2.html" }, { "mandatory": "false", @@ -1922,30 +1942,32 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:LCC", - "profile:bf2:DDC" + "profile:bf2:NotatedMusic:Notation" ], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/classification", - "propertyLabel": "Classification numbers" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/notation", + "propertyLabel": "Form of Musical Notation", + "remark": "" }, { - "propertyLabel": "Related Works (RDA Chapter 25 and Appendix J)", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/relatedTo", - "resourceTemplates": [], + "mandatory": "false", + "repeatable": "true", "type": "resource", + "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:RelatedWork" + "valueTemplateRefs": [], + "useValuesFrom": [ + "http://id.loc.gov/vocabulary/millus" ], - "useValuesFrom": [], - "valueDataType": {} + "valueDataType": { + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Illustration" + } }, - "remark": "http://access.rdatoolkit.org/rdachp25_rda25-65.html", - "mandatory": "false", - "repeatable": "true" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/illustrativeContent", + "propertyLabel": "Illustrative Content (RDA 7.15)", + "remark": "http://access.rdatoolkit.org/7.15.html" }, { "mandatory": "false", @@ -1954,29 +1976,50 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:RelatedExpression" + "profile:bf2:NotatedMusic:SupplContent" ], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/hasExpression", - "propertyLabel": "Related Expressions" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/supplementaryContent", + "remark": "", + "propertyLabel": "Supplementary Content" }, { - "propertyLabel": "Contents (LC-PCC PS 25.1)", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/tableOfContents", + "mandatory": "false", + "repeatable": "true", + "type": "resource", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:NotatedMusic:Contents" + "profile:bf2:Note" ], "useValuesFrom": [], - "valueDataType": {} + "valueDataType": { + "dataTypeURI": "" + } }, + "propertyURI": "http://id.loc.gov/ontologies/bibframe/colorContent", + "propertyLabel": "Color Content (RDA 7.17)", + "remark": "http://access.rdatoolkit.org/7.17.html" + }, + { "mandatory": "false", "repeatable": "true", "type": "resource", - "remark": "" + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [], + "useValuesFrom": [ + "http://id.loc.gov/vocabulary/mmusicformat" + ], + "valueDataType": { + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicFormat" + } + }, + "propertyLabel": "Format of Notated Music (RDA 7.20)", + "remark": "http://access.rdatoolkit.org/7.20.html", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/musicFormat" }, { "mandatory": "false", @@ -1988,9 +2031,9 @@ "useValuesFrom": [], "valueDataType": {} }, - "propertyLabel": "Authorized Access Point Representing the Musical Work (RDA 6.28.1)", - "remark": "http://access.rdatoolkit.org/6.28.1.html", - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/duration", + "propertyLabel": "Duration (RDA 7.22)", + "remark": "http://access.rdatoolkit.org/7.22.html" }, { "mandatory": "false", @@ -1999,122 +2042,107 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:NotatedMusic:Expression" + "profile:bf2:Note" ], "useValuesFrom": [], "valueDataType": {} }, - "propertyLabel": "Expression elements", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/hasExpression" + "propertyLabel": "Notes about the Expression", + "remark": "", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note" }, { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [], + "valueTemplateRefs": [ + "profile:bf2:Agents:Contribution" + ], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bflc/comment", - "propertyLabel": "Your Windows ID and Comments" + "propertyLabel": "Contributor (RDA 20.2)", + "remark": "http://access.rdatoolkit.org/20.2.html", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/contribution" }, { "mandatory": "false", "repeatable": "true", - "type": "resource", + "type": "literal", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:NotatedMusic:Instance" - ], + "valueTemplateRefs": [], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/hasInstance", - "propertyLabel": "Has BIBFRAME Instance" + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", + "propertyLabel": "Authorized Access Point Representing the Musical Expression (RDA 6.28.3)", + "remark": "http://access.rdatoolkit.org/6.28.3.html" } ], - "resourceLabel": "BIBFRAME Work (RDA Work Elements)", + "id": "profile:bf2:NotatedMusic:ExpressionOld", "resourceURI": "http://id.loc.gov/ontologies/bibframe/Work", - "remark": "Graphic, non-realized representations of musical works intended to be perceived visually." + "resourceLabel": "BIBFRAME Work (RDA Expression Elements)" }, { "propertyTemplates": [ { "mandatory": "false", "repeatable": "true", - "type": "resource", + "type": "literal", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], - "useValuesFrom": [ - "http://mlvlp04.loc.gov:8230/resources/works" - ], - "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Work" - } + "useValuesFrom": [], + "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/expressionOf", - "propertyLabel": "Lookup", - "remark": "Expression has a related work. For use to connect Works under FRBR/RDA rules." + "propertyLabel": "Total Number of Performers: Individual Instruments (no ensemble present)", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" }, { "mandatory": "false", "repeatable": "true", - "type": "resource", + "type": "literal", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:NotatedMusic:MediumOfPerformanceIndividual", - "profile:bf2:NotatedMusic:MediumOfPerformanceCombining" - ], + "valueTemplateRefs": [], "useValuesFrom": [], "valueDataType": { - "remark": "profile:bf2:NotatedMusic:MediumOfPerformanceIndividual" + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" } }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/musicMedium", - "propertyLabel": "Medium of Performance of the Musical Expression", - "remark": "" + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", + "propertyLabel": "Record complete instrumentation as text field" }, { "mandatory": "false", "repeatable": "true", - "type": "resource", + "type": "literal", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:NotatedMusic:MedPerfInst", - "profile:bf2:NotatedMusic:MedPerfVoice", - "profile:bf2:NotatedMusic:MedPerfEnsemble" - ], + "valueTemplateRefs": [], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/musicMedium", - "propertyLabel": "Medium of Performance (New)" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/count", + "propertyLabel": "Total Number of Performers: Individual Instruments (ensemble present)" }, { "mandatory": "false", - "repeatable": "false", - "type": "resource", + "repeatable": "true", + "type": "literal", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/vocabulary/contentTypes" - ], + "useValuesFrom": [], "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Content" - }, - "defaultURI": "http://id.loc.gov/vocabulary/contentTypes/ntm", - "defaultLiteral": "Notated music" + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" + } }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/content", - "propertyLabel": "Content Type (RDA 6.9)", - "remark": "http://access.rdatoolkit.org/6.9.html" + "propertyLabel": "Record complete instrumentation as text field", + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label" }, { "mandatory": "false", @@ -2126,10 +2154,16 @@ "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/originDate", - "propertyLabel": "Date of Expression (RDA 6.10)", - "remark": "http://access.rdatoolkit.org/6.10.html" - }, + "propertyLabel": "Total Number of Ensembles", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" + } + ], + "id": "profile:bf2:NotatedMusic:MediumOfPerformanceCombining", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium", + "resourceLabel": "Medium of Performance: Combining Facets" + }, + { + "propertyTemplates": [ { "mandatory": "false", "repeatable": "true", @@ -2138,47 +2172,42 @@ "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [ - "http://id.loc.gov/vocabulary/languages" + "http://id.loc.gov/authorities/performanceMediums" ], "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Language" + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" } }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/language", - "propertyLabel": "Language of Expression (RDA 6.11)", - "remark": "http://access.rdatoolkit.org/6.11.html" + "propertyLabel": "Search Individual Instrument or Ensemble in LCMPT ... OR ...", + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label" }, { "mandatory": "false", "repeatable": "true", - "type": "resource", + "type": "literal", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:NotatedMusic:Summary" - ], + "valueTemplateRefs": [], "useValuesFrom": [], - "valueDataType": {} + "valueDataType": { + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" + } }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/summary", - "propertyLabel": "Summary", - "remark": "" + "propertyLabel": "Record Individual Instrument or Ensemble", + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label" }, { "mandatory": "false", - "repeatable": "true", - "type": "resource", + "repeatable": "false", + "type": "literal", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:Language:Note" - ], + "valueTemplateRefs": [], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/language", - "propertyLabel": "Language of Content (RDA 7.12)", - "remark": "http://access.rdatoolkit.org/7.12.html" + "propertyLabel": "Number of Parts: Individual Instrument ... AND/OR ...", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" }, { "mandatory": "false", @@ -2190,77 +2219,47 @@ "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/notation", - "propertyLabel": "Script (RDA 7.13.2)", - "remark": "http://access.rdatoolkit.org/7.13.2.html" + "propertyLabel": "Number of Performers: Individual Instrument ... AND/OR ...", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" }, { "mandatory": "false", "repeatable": "true", - "type": "resource", + "type": "literal", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:NotatedMusic:Notation" - ], + "valueTemplateRefs": [], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/notation", - "propertyLabel": "Form of Musical Notation", - "remark": "" + "propertyLabel": "Number of Players: Percussion ... AND/OR ...", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" }, { "mandatory": "false", "repeatable": "true", - "type": "resource", + "type": "literal", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/vocabulary/millus" - ], - "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Illustration" - } - }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/illustrativeContent", - "propertyLabel": "Illustrative Content (RDA 7.15)", - "remark": "http://access.rdatoolkit.org/7.15.html" - }, - { - "mandatory": "false", - "repeatable": "true", - "type": "resource", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:NotatedMusic:SupplContent" - ], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/supplementaryContent", - "remark": "", - "propertyLabel": "Supplementary Content" + "propertyLabel": "Number of Hands: Individual instrument ... AND/OR ...", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" }, { "mandatory": "false", "repeatable": "true", - "type": "resource", + "type": "literal", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:Note" - ], + "valueTemplateRefs": [], "useValuesFrom": [], - "valueDataType": { - "dataTypeURI": "" - } + "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/colorContent", - "propertyLabel": "Color Content (RDA 7.17)", - "remark": "http://access.rdatoolkit.org/7.17.html" + "propertyLabel": "Number of Ensembles", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/count" }, { "mandatory": "false", @@ -2270,15 +2269,14 @@ "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [ - "http://id.loc.gov/vocabulary/mmusicformat" + "http://id.loc.gov/authorities/performanceMediums" ], "valueDataType": { - "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicFormat" + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" } }, - "propertyLabel": "Format of Notated Music (RDA 7.20)", - "remark": "http://access.rdatoolkit.org/7.20.html", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/musicFormat" + "propertyLabel": "Search Doubling Medium of Performance ... OR ...", + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label" }, { "mandatory": "false", @@ -2288,11 +2286,12 @@ "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [], - "valueDataType": {} + "valueDataType": { + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" + } }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/duration", - "propertyLabel": "Duration (RDA 7.22)", - "remark": "http://access.rdatoolkit.org/7.22.html" + "propertyLabel": "Record Doubling Medium of Performance", + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label" }, { "mandatory": "false", @@ -2300,50 +2299,51 @@ "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:Note" + "valueTemplateRefs": [], + "useValuesFrom": [ + "http://id.loc.gov/authorities/performanceMediums" ], - "useValuesFrom": [], - "valueDataType": {} + "valueDataType": { + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" + } }, - "propertyLabel": "Notes about the Expression", - "remark": "", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/note" + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", + "propertyLabel": "Search Alternative Instrumentation Medium of Performance ... OR ..." }, { "mandatory": "false", "repeatable": "true", - "type": "resource", + "type": "literal", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:Agents:Contribution" - ], + "valueTemplateRefs": [], "useValuesFrom": [], - "valueDataType": {} + "valueDataType": { + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium" + } }, - "propertyLabel": "Contributor (RDA 20.2)", - "remark": "http://access.rdatoolkit.org/20.2.html", - "propertyURI": "http://id.loc.gov/ontologies/bibframe/contribution" + "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", + "propertyLabel": "Record Alternative Instrumentation Medium of Performance" }, { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [], + "valueTemplateRefs": [ + "profile:bf2:Note" + ], "useValuesFrom": [], "valueDataType": {} }, - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Authorized Access Point Representing the Musical Expression (RDA 6.28.3)", - "remark": "http://access.rdatoolkit.org/6.28.3.html" + "propertyLabel": "Note on Instrumentation", + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note" } ], - "id": "profile:bf2:NotatedMusic:ExpressionOld", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/Work", - "resourceLabel": "BIBFRAME Work (RDA Expression Elements)" + "id": "profile:bf2:NotatedMusic:MediumOfPerformanceIndividual", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/MusicMedium", + "resourceLabel": "Medium of Performance: Individual Facets" } ], "contact": "NDMSO", diff --git a/static/profiles/bibframe/BIBFRAME 2.0 Rare Materials.json b/static/profiles/bibframe/BIBFRAME 2.0 Rare Materials.json index b4153b0..c6714ea 100755 --- a/static/profiles/bibframe/BIBFRAME 2.0 Rare Materials.json +++ b/static/profiles/bibframe/BIBFRAME 2.0 Rare Materials.json @@ -841,6 +841,21 @@ }, "propertyURI": "http://id.loc.gov/ontologies/bibframe/collection", "propertyLabel": "Collection" + }, + { + "mandatory": "false", + "repeatable": "true", + "type": "resource", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [ + "profile:bf2:RelatedWork" + ], + "useValuesFrom": [], + "valueDataType": {} + }, + "propertyLabel": "Related Works", + "propertyURI": "http://id.loc.gov/ontologies/bflc/relationship" } ], "id": "profile:bf2:RareMat:Item", @@ -929,7 +944,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -938,11 +953,12 @@ ], "valueDataType": { "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/Illustration" + "remark": "http://id.loc.gov/ontologies/bibframe/Illustration", + "dataTypeLabelHint": "http://www.w3.org/1999/02/22-rdf-syntax-ns#value" }, "valueLanguage": "" }, - "propertyURI": "http://www.w3.org/1999/02/22-rdf-syntax-ns#value", + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", "propertyLabel": "Illustrative Content (RDA 7.15)", "remark": "http://access.rdatoolkit.org/7.15.html" }, diff --git a/static/profiles/bibframe/BIBFRAME 2.0 Serial.json b/static/profiles/bibframe/BIBFRAME 2.0 Serial.json index fe98b99..abdcde9 100755 --- a/static/profiles/bibframe/BIBFRAME 2.0 Serial.json +++ b/static/profiles/bibframe/BIBFRAME 2.0 Serial.json @@ -1445,7 +1445,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1456,7 +1456,7 @@ "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Frequency" } }, - "propertyURI": "http://www.w3.org/1999/02/22-rdf-syntax-ns#value", + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", "propertyLabel": "Frequency (RDA 2.14)", "remark": "http://access.rdatoolkit.org/2.14.html" }, diff --git a/static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Analog.json b/static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Analog.json index d0ea27f..49ee77f 100755 --- a/static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Analog.json +++ b/static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Analog.json @@ -286,22 +286,6 @@ "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", "propertyLabel": "Notes about the Work" }, - { - "mandatory": "false", - "repeatable": "true", - "type": "resource", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:LCC", - "profile:bf2:DDC" - ], - "useValuesFrom": [], - "valueDataType": {} - }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/classification", - "propertyLabel": "Classification numbers" - }, { "mandatory": "false", "repeatable": "true", @@ -860,13 +844,12 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:Analog:Sound", "profile:bf2:Analog:Sound1", "profile:bf2:Analog:Sound2", "profile:bf2:Analog:Sound3", + "profile:bf2:Analog:Sound6", "profile:bf2:Analog:Sound4", - "profile:bf2:Analog:Sound5", - "profile:bf2:Analog:Sound6" + "profile:bf2:Analog:Sound5" ], "useValuesFrom": [], "valueDataType": { @@ -1122,7 +1105,7 @@ { "mandatory": "false", "repeatable": "false", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1191,7 +1174,7 @@ { "mandatory": "false", "repeatable": "false", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1260,7 +1243,7 @@ { "mandatory": "false", "repeatable": "false", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1403,7 +1386,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1445,19 +1428,23 @@ { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], - "useValuesFrom": [], + "useValuesFrom": [ + "http://id.loc.gov/vocabulary/mrectype" + ], "valueDataType": { "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic" - } + "remark": "http://id.loc.gov/ontologies/bibframe/RecordingMethod" + }, + "defaultURI": "http://id.loc.gov/vocabulary/mrectype/analog", + "defaultLiteral": "analog" }, - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Sound Characteristic (RDA 3.16)", - "remark": "http://access.rdatoolkit.org/3.16.html" + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", + "propertyLabel": "Type of Recording (RDA 3.16.2)", + "remark": "http://access.rdatoolkit.org/3.16.2.html" }, { "mandatory": "false", @@ -1472,62 +1459,53 @@ "valueDataType": {} }, "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Details of Sound Characteristic (RDA 3.16.1.4)", - "remark": "http://access.rdatoolkit.org/3.16.1.4.html" + "propertyLabel": "Details of Type of Recording (RDA 3.16.2.4)", + "remark": "http://access.rdatoolkit.org/3.16.2.4.html" } ], - "id": "profile:bf2:Analog:Sound", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic", - "resourceLabel": "Sound Characteristics" + "id": "profile:bf2:Analog:Sound1", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/RecordingMethod", + "resourceLabel": "Type of Recording" }, { "propertyTemplates": [ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], "useValuesFrom": [ - "http://id.loc.gov/vocabulary/mrectype" + "http://id.loc.gov/vocabulary/mrecmedium" ], "valueDataType": { "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/RecordingMethod" + "remark": "http://id.loc.gov/ontologies/bibframe/RecordingMedium", + "dataTypeLabelHint": "" }, - "defaultURI": "http://id.loc.gov/vocabulary/mrectype/analog", - "defaultLiteral": "analog" + "defaultURI": "", + "defaultLiteral": "" }, "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "Type of Recording (RDA 3.16.2)", - "remark": "http://access.rdatoolkit.org/3.16.2.html" - } - ], - "id": "profile:bf2:Analog:Sound1", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/RecordingMethod", - "resourceLabel": "Type of Recording" - }, - { - "propertyTemplates": [ + "propertyLabel": "Recording Medium (RDA 3.16.3)", + "remark": "http://access.rdatoolkit.org/3.16.3.html" + }, { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "resource", "resourceTemplates": [], "valueConstraint": { - "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/vocabulary/mrecmedium" + "valueTemplateRefs": [ + "profile:bf2:Note" ], - "valueDataType": { - "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/RecordingMedium" - } + "useValuesFrom": [], + "valueDataType": {} }, - "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "Recording Medium (RDA 3.16.3)", - "remark": "http://access.rdatoolkit.org/3.16.3.html" + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", + "propertyLabel": "Details of Recording Medium (RDA 3.16.3.4)", + "remark": "http://access.rdatoolkit.org/3.16.3.4.html" } ], "id": "profile:bf2:Analog:Sound2", @@ -1560,7 +1538,49 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [], + "useValuesFrom": [ + "http://id.loc.gov/vocabulary/mgroove" + ], + "valueDataType": { + "dataTypeURI": "", + "remark": "http://id.loc.gov/ontologies/bibframe/GrooveCharacteristic" + } + }, + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", + "propertyLabel": "Groove Characteristic (RDA 3.16.5)", + "remark": "http://access.rdatoolkit.org/3.16.5.html" + }, + { + "mandatory": "false", + "repeatable": "true", + "type": "resource", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [ + "profile:bf2:Note" + ], + "useValuesFrom": [], + "valueDataType": {} + }, + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", + "propertyLabel": "Details of Groove Characteristic (RDA 3.16.5.4)", + "remark": "http://access.rdatoolkit.org/3.16.5.4.html" + } + ], + "id": "profile:bf2:Analog:Sound6", + "resourceURI": "http://id.loc.gov/ontologies/bibframe/GrooveCharacteristic", + "resourceLabel": "Groove Characteristic" + }, + { + "propertyTemplates": [ + { + "mandatory": "false", + "repeatable": "true", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1602,7 +1622,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1628,7 +1648,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1748,47 +1768,6 @@ "resourceURI": "http://id.loc.gov/ontologies/bibframe/SystemRequirement", "resourceLabel": "System Requirement" }, - { - "propertyTemplates": [ - { - "mandatory": "false", - "repeatable": "true", - "type": "lookup", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/vocabulary/mgroove" - ], - "valueDataType": { - "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/GrooveCharacteristic" - } - }, - "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "Groove Characteristic (RDA 3.16.5)", - "remark": "http://access.rdatoolkit.org/3.16.5.html" - }, - { - "mandatory": "false", - "repeatable": "true", - "type": "resource", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:Note" - ], - "useValuesFrom": [], - "valueDataType": {} - }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Details of Groove Characteristic" - } - ], - "id": "profile:bf2:Analog:Sound6", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/GrooveCharacteristic", - "resourceLabel": "Groove Characteristic" - }, { "propertyTemplates": [ { diff --git a/static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Audio CD-R.json b/static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Audio CD-R.json index df6e568..3c86b32 100755 --- a/static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Audio CD-R.json +++ b/static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Audio CD-R.json @@ -288,22 +288,6 @@ "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", "propertyLabel": "Notes about the Work" }, - { - "mandatory": "false", - "repeatable": "true", - "type": "resource", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:LCC", - "profile:bf2:DDC" - ], - "useValuesFrom": [], - "valueDataType": {} - }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/classification", - "propertyLabel": "Classification numbers" - }, { "mandatory": "false", "repeatable": "true", @@ -847,7 +831,6 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:SoundCDR:Sound", "profile:bf2:SoundCDR:Sound1", "profile:bf2:SoundCDR:Sound2", "profile:bf2:SoundCDR:Sound3", @@ -1145,7 +1128,7 @@ { "mandatory": "false", "repeatable": "false", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1214,7 +1197,7 @@ { "mandatory": "false", "repeatable": "false", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1283,7 +1266,7 @@ { "mandatory": "false", "repeatable": "false", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1426,7 +1409,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1468,19 +1451,22 @@ { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], - "useValuesFrom": [], + "useValuesFrom": [ + "http://id.loc.gov/vocabulary/mrectype" + ], "valueDataType": { "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic" - } + "remark": "http://id.loc.gov/ontologies/bibframe/RecordingMethod" + }, + "defaultURI": "" }, - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Sound Characteristic (RDA 3.16)", - "remark": "http://access.rdatoolkit.org/3.16.html" + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", + "propertyLabel": "Type of Recording (RDA 3.16.2)", + "remark": "http://access.rdatoolkit.org/3.16.2.html" }, { "mandatory": "false", @@ -1495,35 +1481,8 @@ "valueDataType": {} }, "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Details of Sound Characteristic (RDA 3.16.1.4)", - "remark": "http://access.rdatoolkit.org/3.16.1.4.html" - } - ], - "id": "profile:bf2:SoundCDR:Sound", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic", - "resourceLabel": "Sound Characteristics" - }, - { - "propertyTemplates": [ - { - "mandatory": "false", - "repeatable": "true", - "type": "lookup", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/vocabulary/mrectype" - ], - "valueDataType": { - "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/RecordingMethod" - }, - "defaultURI": "" - }, - "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "Type of Recording (RDA 3.16.2)", - "remark": "http://access.rdatoolkit.org/3.16.2.html" + "propertyLabel": "Details of Type of Recording (RDA 3.16.2.4)", + "remark": "http://access.rdatoolkit.org/3.16.2.4.html" } ], "id": "profile:bf2:SoundCDR:Sound1", @@ -1535,7 +1494,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1550,6 +1509,22 @@ "propertyURI": "http://www.w3.org/1999/02/22-rdf-syntax-ns#value", "propertyLabel": "Recording Medium (RDA 3.16.3)", "remark": "http://access.rdatoolkit.org/3.16.3.html" + }, + { + "mandatory": "false", + "repeatable": "true", + "type": "resource", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [ + "profile:bf2:Note" + ], + "useValuesFrom": [], + "valueDataType": {} + }, + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", + "propertyLabel": "Details of Recording Medium (RDA 3.16.3.4)", + "remark": "http://access.rdatoolkit.org/3.16.3.4.html" } ], "id": "profile:bf2:SoundCDR:Sound2", @@ -1582,7 +1557,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1624,7 +1599,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1650,7 +1625,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], diff --git a/static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Audio CD.json b/static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Audio CD.json index 145fac5..42b3051 100755 --- a/static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Audio CD.json +++ b/static/profiles/bibframe/BIBFRAME 2.0 Sound Recording: Audio CD.json @@ -286,22 +286,6 @@ "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", "propertyLabel": "Notes about the Work" }, - { - "mandatory": "false", - "repeatable": "true", - "type": "resource", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [ - "profile:bf2:LCC", - "profile:bf2:DDC" - ], - "useValuesFrom": [], - "valueDataType": {} - }, - "propertyURI": "http://id.loc.gov/ontologies/bibframe/classification", - "propertyLabel": "Classification numbers" - }, { "mandatory": "false", "repeatable": "true", @@ -810,7 +794,6 @@ "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [ - "profile:bf2:SoundRecording:Sound", "profile:bf2:SoundRecording:Sound1", "profile:bf2:SoundRecording:Sound2", "profile:bf2:SoundRecording:Sound3", @@ -1104,7 +1087,7 @@ { "mandatory": "false", "repeatable": "false", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1173,7 +1156,7 @@ { "mandatory": "false", "repeatable": "false", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1242,7 +1225,7 @@ { "mandatory": "false", "repeatable": "false", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1385,19 +1368,21 @@ { "mandatory": "false", "repeatable": "true", - "type": "literal", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], - "useValuesFrom": [], + "useValuesFrom": [ + "http://id.loc.gov/vocabulary/mrectype" + ], "valueDataType": { "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic" + "remark": "http://id.loc.gov/ontologies/bibframe/RecordingMethod" } }, - "propertyURI": "http://www.w3.org/2000/01/rdf-schema#label", - "propertyLabel": "Sound Characteristic (RDA 3.16)", - "remark": "http://access.rdatoolkit.org/3.16.html" + "propertyURI": "http://id.loc.gov/ontologies/bflc/target", + "propertyLabel": "Type of Recording (RDA 3.16.2)", + "remark": "http://access.rdatoolkit.org/3.16.2.html" }, { "mandatory": "false", @@ -1412,34 +1397,8 @@ "valueDataType": {} }, "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", - "propertyLabel": "Details of Sound Characteristic (RDA 3.16.1.4)", - "remark": "http://access.rdatoolkit.org/3.16.1.4.html" - } - ], - "id": "profile:bf2:SoundRecording:Sound", - "resourceURI": "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic", - "resourceLabel": "Sound Characteristics" - }, - { - "propertyTemplates": [ - { - "mandatory": "false", - "repeatable": "true", - "type": "lookup", - "resourceTemplates": [], - "valueConstraint": { - "valueTemplateRefs": [], - "useValuesFrom": [ - "http://id.loc.gov/vocabulary/mrectype" - ], - "valueDataType": { - "dataTypeURI": "", - "remark": "http://id.loc.gov/ontologies/bibframe/RecordingMethod" - } - }, - "propertyURI": "http://id.loc.gov/ontologies/bflc/target", - "propertyLabel": "Type of Recording (RDA 3.16.2)", - "remark": "http://access.rdatoolkit.org/3.16.2.html" + "propertyLabel": "Details of Type of Recording (RDA 3.16.2.4)", + "remark": "http://access.rdatoolkit.org/3.16.2.4.html" } ], "id": "profile:bf2:SoundRecording:Sound1", @@ -1451,7 +1410,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1466,6 +1425,22 @@ "propertyURI": "http://id.loc.gov/ontologies/bflc/target", "propertyLabel": "Recording Medium (RDA 3.16.3)", "remark": "http://access.rdatoolkit.org/3.16.3.html" + }, + { + "mandatory": "false", + "repeatable": "true", + "type": "resource", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [ + "profile:bf2:Note" + ], + "useValuesFrom": [], + "valueDataType": {} + }, + "propertyURI": "http://id.loc.gov/ontologies/bibframe/note", + "propertyLabel": "Details of Recording Medium (RDA 3.16.3.4)", + "remark": "http://access.rdatoolkit.org/3.16.3.4.html" } ], "id": "profile:bf2:SoundRecording:Sound2", @@ -1498,7 +1473,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1540,7 +1515,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], @@ -1566,7 +1541,7 @@ { "mandatory": "false", "repeatable": "true", - "type": "lookup", + "type": "target", "resourceTemplates": [], "valueConstraint": { "valueTemplateRefs": [], diff --git a/static/profiles/bibframe/BIBFRAME 2.0 Topic.json b/static/profiles/bibframe/BIBFRAME 2.0 Topic.json index 3c251c8..6252e51 100755 --- a/static/profiles/bibframe/BIBFRAME 2.0 Topic.json +++ b/static/profiles/bibframe/BIBFRAME 2.0 Topic.json @@ -113,7 +113,7 @@ ], "id": "profile:bf2:Topic:madsTopic", "resourceURI": "http://www.loc.gov/mads/rdf/v1#Topic", - "resourceLabel": "Topic" + "resourceLabel": "Heading or Topical subdivision" }, { "propertyTemplates": [ @@ -139,7 +139,7 @@ ], "id": "profile:bf2:Topic:madsGenreForm", "resourceURI": "http://www.loc.gov/mads/rdf/v1#GenreForm", - "resourceLabel": "Form" + "resourceLabel": "Form subdivision" }, { "propertyTemplates": [ @@ -165,7 +165,7 @@ ], "id": "profile:bf2:Topic:madsTemporal", "resourceURI": "http://www.loc.gov/mads/rdf/v1#Temporal", - "resourceLabel": "Chronological" + "resourceLabel": "Chronological subdivision" }, { "propertyTemplates": [ @@ -207,7 +207,99 @@ ], "id": "profile:bf2:Topic:madsGeographic", "resourceURI": "http://www.loc.gov/mads/rdf/v1#Geographic", - "resourceLabel": "Geographic" + "resourceLabel": "Geographic heading or subdivision" + }, + { + "propertyTemplates": [ + { + "mandatory": "false", + "repeatable": "true", + "type": "lookup", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [], + "useValuesFrom": [ + "http://id.loc.gov/authorities/subjects", + "http://id.loc.gov/authorities/names" + ], + "valueDataType": {}, + "repeatable": "false", + "editable": "true" + }, + "propertyURI": "http://www.loc.gov/mads/rdf/v1#Topic", + "propertyLabel": "Search LCSH/LCNAF" + } + ], + "id": "profile:bf2:TopicSearch", + "resourceURI": "http://www.loc.gov/mads/rdf/v1#Topic", + "resourceLabel": "Search subjects" + }, + { + "propertyTemplates": [ + { + "mandatory": "false", + "repeatable": "false", + "type": "literal", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [], + "useValuesFrom": [], + "valueDataType": {}, + "editable": "true", + "repeatable": "false" + }, + "propertyURI": "http://www.loc.gov/mads/rdf/v1#authoritativeLabel", + "propertyLabel": "Input Subject + Subdivision string" + }, + { + "mandatory": "false", + "repeatable": "false", + "type": "resource", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [], + "useValuesFrom": [ + "http://id.loc.gov/vocabulary/subjectSchemes" + ], + "valueDataType": { + "dataTypeURI": "http://id.loc.gov/ontologies/bibframe/Source" + }, + "defaultURI": "http://id.loc.gov/vocabulary/subjectSchemes/lcsh", + "defaultLiteral": "LCSH" + }, + "propertyURI": "http://id.loc.gov/ontologies/bibframe/source", + "propertyLabel": "Subject source" + } + ], + "id": "profile:bf2:TopicInput", + "resourceURI": "http://www.loc.gov/mads/rdf/v1#Topic", + "resourceLabel": "Input subject strings" + }, + { + "propertyTemplates": [ + { + "mandatory": "false", + "repeatable": "true", + "type": "resource", + "resourceTemplates": [], + "valueConstraint": { + "valueTemplateRefs": [ + "profile:bf2:Topic:madsTopic", + "profile:bf2:Topic:madsGeographic", + "profile:bf2:Topic:madsTemporal", + "profile:bf2:Topic:madsGenreForm" + ], + "useValuesFrom": [], + "valueDataType": {}, + "repeatable": "false" + }, + "propertyURI": "http://www.loc.gov/mads/rdf/v1#componentList", + "propertyLabel": "Search Subject Components" + } + ], + "id": "profile:bf2:Components", + "resourceURI": "http://www.loc.gov/mads/rdf/v1#Topic", + "resourceLabel": "Search subject components" } ], "id": "profile:bf2:Topic",