ddr-models 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +12 -0
- data/README.md +5 -0
- data/Rakefile +37 -0
- data/app/models/attachment.rb +7 -0
- data/app/models/collection.rb +54 -0
- data/app/models/component.rb +15 -0
- data/app/models/item.rb +19 -0
- data/app/models/solr_document.rb +36 -0
- data/app/models/target.rb +8 -0
- data/config/initializers/active_fedora_base.rb +77 -0
- data/config/initializers/active_fedora_datastream.rb +5 -0
- data/config/initializers/ddr.rb +8 -0
- data/config/initializers/devise.rb +245 -0
- data/config/initializers/devise.rb~ +245 -0
- data/config/initializers/subscriptions.rb +15 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20141021233359_create_events.rb +28 -0
- data/db/migrate/20141021234156_create_minted_ids.rb +19 -0
- data/db/migrate/20141103192146_create_workflow_state.rb +13 -0
- data/db/migrate/20141104181418_create_users.rb +34 -0
- data/db/migrate/20141104181418_create_users.rb~ +6 -0
- data/lib/ddr-models.rb +1 -0
- data/lib/ddr/actions.rb +8 -0
- data/lib/ddr/actions/fixity_check.rb +35 -0
- data/lib/ddr/auth.rb +45 -0
- data/lib/ddr/auth.rb~ +47 -0
- data/lib/ddr/auth/ability.rb +204 -0
- data/lib/ddr/auth/ability.rb~ +204 -0
- data/lib/ddr/auth/group_service.rb +53 -0
- data/lib/ddr/auth/group_service.rb~ +53 -0
- data/lib/ddr/auth/grouper_service.rb +76 -0
- data/lib/ddr/auth/grouper_service.rb~ +77 -0
- data/lib/ddr/auth/remote_group_service.rb +35 -0
- data/lib/ddr/auth/remote_group_service.rb~ +35 -0
- data/lib/ddr/auth/superuser.rb +13 -0
- data/lib/ddr/auth/superuser.rb~ +9 -0
- data/lib/ddr/auth/user.rb +71 -0
- data/lib/ddr/auth/user.rb~ +65 -0
- data/lib/ddr/configurable.rb +34 -0
- data/lib/ddr/datastreams.rb +32 -0
- data/lib/ddr/datastreams/content_metadata_datastream.rb +147 -0
- data/lib/ddr/datastreams/datastream_behavior.rb +95 -0
- data/lib/ddr/datastreams/descriptive_metadata_datastream.rb +84 -0
- data/lib/ddr/datastreams/properties_datastream.rb +25 -0
- data/lib/ddr/datastreams/role_assignments_datastream.rb +19 -0
- data/lib/ddr/events.rb +17 -0
- data/lib/ddr/events/creation_event.rb +12 -0
- data/lib/ddr/events/event.rb +163 -0
- data/lib/ddr/events/fixity_check_event.rb +43 -0
- data/lib/ddr/events/ingestion_event.rb +12 -0
- data/lib/ddr/events/preservation_event_behavior.rb +37 -0
- data/lib/ddr/events/preservation_event_type.rb +24 -0
- data/lib/ddr/events/reindex_object_after_save.rb +18 -0
- data/lib/ddr/events/update_event.rb +9 -0
- data/lib/ddr/events/validation_event.rb +11 -0
- data/lib/ddr/events/virus_check_event.rb +30 -0
- data/lib/ddr/index_fields.rb +39 -0
- data/lib/ddr/metadata.rb +22 -0
- data/lib/ddr/metadata/duke_terms.rb +15 -0
- data/lib/ddr/metadata/premis_event.rb +59 -0
- data/lib/ddr/metadata/rdf_vocabulary_parser.rb +45 -0
- data/lib/ddr/metadata/roles_vocabulary.rb +10 -0
- data/lib/ddr/metadata/sources/duketerms.rdf.xml +856 -0
- data/lib/ddr/metadata/vocabulary.rb +37 -0
- data/lib/ddr/models.rb +60 -0
- data/lib/ddr/models/access_controllable.rb +23 -0
- data/lib/ddr/models/base.rb +37 -0
- data/lib/ddr/models/describable.rb +81 -0
- data/lib/ddr/models/engine.rb +58 -0
- data/lib/ddr/models/error.rb +12 -0
- data/lib/ddr/models/event_loggable.rb +36 -0
- data/lib/ddr/models/file_management.rb +183 -0
- data/lib/ddr/models/fixity_checkable.rb +20 -0
- data/lib/ddr/models/governable.rb +48 -0
- data/lib/ddr/models/has_attachments.rb +12 -0
- data/lib/ddr/models/has_children.rb +21 -0
- data/lib/ddr/models/has_content.rb +114 -0
- data/lib/ddr/models/has_content_metadata.rb +16 -0
- data/lib/ddr/models/has_properties.rb +15 -0
- data/lib/ddr/models/has_role_assignments.rb +17 -0
- data/lib/ddr/models/has_thumbnail.rb +27 -0
- data/lib/ddr/models/has_workflow.rb +29 -0
- data/lib/ddr/models/indexing.rb +53 -0
- data/lib/ddr/models/licensable.rb +28 -0
- data/lib/ddr/models/minted_id.rb +10 -0
- data/lib/ddr/models/permanent_identification.rb +48 -0
- data/lib/ddr/models/solr_document.rb +193 -0
- data/lib/ddr/models/version.rb +5 -0
- data/lib/ddr/notifications.rb +15 -0
- data/lib/ddr/services.rb +8 -0
- data/lib/ddr/services/id_service.rb +48 -0
- data/lib/ddr/utils.rb +153 -0
- data/lib/ddr/workflow.rb +8 -0
- data/lib/ddr/workflow/workflow_state.rb +39 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/user.rb +5 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +29 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +78 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/assets.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +56 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +80 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +4974 -0
- data/spec/dummy/log/test.log +55627 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/factories/attachment_factories.rb +15 -0
- data/spec/factories/collection_factories.rb +16 -0
- data/spec/factories/component_factories.rb +15 -0
- data/spec/factories/event_factories.rb +7 -0
- data/spec/factories/item_factories.rb +16 -0
- data/spec/factories/target_factories.rb +11 -0
- data/spec/factories/test_model_factories.rb +133 -0
- data/spec/factories/user_factories.rb +7 -0
- data/spec/factories/user_factories.rb~ +7 -0
- data/spec/features/grouper_integration_spec.rb~ +21 -0
- data/spec/fixtures/contentMetadata.xml +37 -0
- data/spec/fixtures/image1.tiff +0 -0
- data/spec/fixtures/image2.tiff +0 -0
- data/spec/fixtures/image3.tiff +0 -0
- data/spec/fixtures/library-devil.tiff +0 -0
- data/spec/fixtures/sample.docx +0 -0
- data/spec/fixtures/sample.pdf +0 -0
- data/spec/fixtures/target.png +0 -0
- data/spec/models/ability_spec.rb +248 -0
- data/spec/models/ability_spec.rb~ +245 -0
- data/spec/models/active_fedora_base_spec.rb +107 -0
- data/spec/models/active_fedora_datastream_spec.rb +121 -0
- data/spec/models/attachment_spec.rb +13 -0
- data/spec/models/collection_spec.rb +33 -0
- data/spec/models/component_spec.rb +8 -0
- data/spec/models/descriptive_metadata_datastream_spec.rb +102 -0
- data/spec/models/events_spec.rb +64 -0
- data/spec/models/file_management_spec.rb +179 -0
- data/spec/models/has_role_assignments_spec.rb +29 -0
- data/spec/models/has_workflow_spec.rb +54 -0
- data/spec/models/item_spec.rb +8 -0
- data/spec/models/permanent_identification_spec.rb +65 -0
- data/spec/models/role_assignments_datastream_spec.rb +25 -0
- data/spec/models/superuser_spec.rb +13 -0
- data/spec/models/superuser_spec.rb~ +13 -0
- data/spec/models/target_spec.rb +8 -0
- data/spec/models/user_spec.rb +60 -0
- data/spec/models/user_spec.rb~ +56 -0
- data/spec/services/group_service_spec.rb +75 -0
- data/spec/services/group_service_spec.rb~ +71 -0
- data/spec/services/id_service_spec.rb +33 -0
- data/spec/spec_helper.rb +125 -0
- data/spec/support/shared_examples_for_access_controllables.rb +6 -0
- data/spec/support/shared_examples_for_associations.rb +8 -0
- data/spec/support/shared_examples_for_ddr_models.rb +7 -0
- data/spec/support/shared_examples_for_describables.rb +63 -0
- data/spec/support/shared_examples_for_event_loggables.rb +3 -0
- data/spec/support/shared_examples_for_events.rb +179 -0
- data/spec/support/shared_examples_for_governables.rb +17 -0
- data/spec/support/shared_examples_for_has_content.rb +136 -0
- data/spec/support/shared_examples_for_has_content_metadata.rb +74 -0
- data/spec/support/shared_examples_for_has_properties.rb +5 -0
- data/spec/support/shared_examples_for_indexing.rb +36 -0
- metadata +562 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
require 'om'
|
|
2
|
+
|
|
3
|
+
module Ddr
|
|
4
|
+
module Metadata
|
|
5
|
+
class PremisEvent
|
|
6
|
+
|
|
7
|
+
include OM::XML::Document
|
|
8
|
+
|
|
9
|
+
PREMIS_VERSION = "2.2"
|
|
10
|
+
PREMIS_XMLNS = "info:lc/xmlns/premis-v2"
|
|
11
|
+
PREMIS_SCHEMA = "http://www.loc.gov/standards/premis/v2/premis.xsd"
|
|
12
|
+
|
|
13
|
+
#
|
|
14
|
+
# PREMIS terminology based on version 2.2 of PREMIS standard
|
|
15
|
+
# http://www.loc.gov/standards/premis/v2/premis-2-2.pdf
|
|
16
|
+
#
|
|
17
|
+
set_terminology do |t|
|
|
18
|
+
t.root(:path => "event", :xmlns => PREMIS_XMLNS, :schema => PREMIS_SCHEMA)
|
|
19
|
+
t.event_identifier(:path => "eventIdentifier") {
|
|
20
|
+
t.type(:path => "eventIdentifierType")
|
|
21
|
+
t.value(:path => "eventIdentifierValue")
|
|
22
|
+
}
|
|
23
|
+
t.event_type(:path => "eventType")
|
|
24
|
+
t.event_date_time(:path => "eventDateTime")
|
|
25
|
+
t.event_detail(:path => "eventDetail")
|
|
26
|
+
t.event_outcome_information(:path => "eventOutcomeInformation") {
|
|
27
|
+
t.outcome(:path => "eventOutcome")
|
|
28
|
+
t.detail(:path => "eventOutcomeDetail") {
|
|
29
|
+
t.note(:path => "eventOutcomeDetailNote")
|
|
30
|
+
t.extension(:path => "eventOutcomeDetailExtension")
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
t.linking_object_identifier(:path => "linkingObjectIdentifier") {
|
|
34
|
+
t.type(:path => "linkingObjectIdentifierType")
|
|
35
|
+
t.value(:path => "linkingObjectIdentifierValue")
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
# proxy terms
|
|
39
|
+
t.event_id_type(:proxy => [:event_identifier, :type])
|
|
40
|
+
t.event_id_value(:proxy => [:event_identifier, :value])
|
|
41
|
+
t.event_outcome(:proxy => [:event_outcome_information, :outcome])
|
|
42
|
+
t.event_outcome_detail_note(:proxy => [:event_outcome_information, :detail, :note])
|
|
43
|
+
t.linking_object_id_type(:proxy => [:linking_object_identifier, :type])
|
|
44
|
+
t.linking_object_id_value(:proxy => [:linking_object_identifier, :value])
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
def self.xml_template
|
|
48
|
+
builder = Nokogiri::XML::Builder.new do |xml|
|
|
49
|
+
xml.event(:xmlns => PREMIS_XMLNS,
|
|
50
|
+
"xmlns:xsi" => "http://www.w3.org/2001/XMLSchema-instance",
|
|
51
|
+
"xsi:schemaLocation" => "#{PREMIS_XMLNS} #{PREMIS_SCHEMA}",
|
|
52
|
+
:version => PREMIS_VERSION)
|
|
53
|
+
end
|
|
54
|
+
builder.doc
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
end
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
require 'rdf/rdfxml'
|
|
2
|
+
|
|
3
|
+
module Ddr
|
|
4
|
+
module Metadata
|
|
5
|
+
class RDFVocabularyParser
|
|
6
|
+
|
|
7
|
+
attr_reader :source, :prefix
|
|
8
|
+
|
|
9
|
+
def initialize(source, prefix = "")
|
|
10
|
+
@source = source
|
|
11
|
+
@prefix = prefix
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def term_names
|
|
15
|
+
@term_names ||= terms.collect { |t| t[:resource].to_s.sub(prefix, "") }.freeze
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def term_symbols
|
|
19
|
+
term_names.map(&:to_sym)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def terms
|
|
23
|
+
properties.map(&:to_hash)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def properties
|
|
27
|
+
RDF::Query.execute(graph, properties_query)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def properties_query
|
|
31
|
+
{:resource => {
|
|
32
|
+
RDF.type => RDF.Property,
|
|
33
|
+
RDF::RDFS.label => :label,
|
|
34
|
+
RDF::RDFS.comment => :comment
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def graph
|
|
40
|
+
@graph ||= RDF::Graph.load(source).freeze
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
module Ddr
|
|
2
|
+
module Metadata
|
|
3
|
+
class RolesVocabulary < RDF::StrictVocabulary("http://repository.lib.duke.edu/vocab/roles#")
|
|
4
|
+
term :administrator, label: "Administrator"
|
|
5
|
+
term :editor, label: "Editor"
|
|
6
|
+
term :contributor, label: "Contributor"
|
|
7
|
+
term :downloader, label: "Downloader"
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
end
|
|
@@ -0,0 +1,856 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE rdf:RDF [
|
|
3
|
+
<!ENTITY rdfns 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
|
|
4
|
+
<!ENTITY rdfsns 'http://www.w3.org/2000/01/rdf-schema#'>
|
|
5
|
+
<!ENTITY dcns 'http://purl.org/dc/elements/1.1/'>
|
|
6
|
+
<!ENTITY dctermsns 'http://purl.org/dc/terms/'>
|
|
7
|
+
<!ENTITY dctypens 'http://purl.org/dc/dcmitype/'>
|
|
8
|
+
<!ENTITY dcamns 'http://purl.org/dc/dcam/'>
|
|
9
|
+
<!ENTITY skosns 'http://www.w3.org/2004/02/skos/core#'>
|
|
10
|
+
]>
|
|
11
|
+
<rdf:RDF xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:dcam="http://purl.org/dc/dcam/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
|
|
12
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms">
|
|
13
|
+
<dcterms:title xml:lang="en-US">Duke metadata terms in the /duke/ namespace</dcterms:title>
|
|
14
|
+
<dcterms:publisher rdf:resource="http://library.duke.edu/metadata"/>
|
|
15
|
+
<dcterms:modified>2010-10-29</dcterms:modified>
|
|
16
|
+
</rdf:Description>
|
|
17
|
+
|
|
18
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/time_of_photo">
|
|
19
|
+
<rdfs:label xml:lang="en-US">Time of Photo</rdfs:label>
|
|
20
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
21
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
22
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
23
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
24
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
25
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
26
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
27
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/description"/>
|
|
28
|
+
</rdf:Description>
|
|
29
|
+
|
|
30
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/tone">
|
|
31
|
+
<rdfs:label xml:lang="en-US">Tone</rdfs:label>
|
|
32
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
33
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
34
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
35
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
36
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
37
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
38
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
39
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/description"/>
|
|
40
|
+
</rdf:Description>
|
|
41
|
+
|
|
42
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/setting">
|
|
43
|
+
<rdfs:label xml:lang="en-US">Setting</rdfs:label>
|
|
44
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
45
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
46
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
47
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
48
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
49
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
50
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
51
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/description"/>
|
|
52
|
+
</rdf:Description>
|
|
53
|
+
|
|
54
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/tag">
|
|
55
|
+
<rdfs:label xml:lang="en-US">Tag</rdfs:label>
|
|
56
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
57
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
58
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
59
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
60
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
61
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
62
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
63
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
|
|
64
|
+
</rdf:Description>
|
|
65
|
+
|
|
66
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/pubregion">
|
|
67
|
+
<rdfs:label xml:lang="en-US">Region of Publication</rdfs:label>
|
|
68
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
69
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
70
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
71
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
72
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
73
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
74
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
75
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/spatial"/>
|
|
76
|
+
</rdf:Description>
|
|
77
|
+
|
|
78
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/pubcountry">
|
|
79
|
+
<rdfs:label xml:lang="en-US">Country of Publication</rdfs:label>
|
|
80
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
81
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
82
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
83
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
84
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
85
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
86
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
87
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/spatial"/>
|
|
88
|
+
</rdf:Description>
|
|
89
|
+
|
|
90
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/pubcity">
|
|
91
|
+
<rdfs:label xml:lang="en-US">City of Publication</rdfs:label>
|
|
92
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
93
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
94
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
95
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
96
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
97
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
98
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
99
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/spatial"/>
|
|
100
|
+
</rdf:Description>
|
|
101
|
+
|
|
102
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/pubstate">
|
|
103
|
+
<rdfs:label xml:lang="en-US">State of Publication</rdfs:label>
|
|
104
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
105
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
106
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
107
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
108
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
109
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
110
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
111
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/spatial"/>
|
|
112
|
+
</rdf:Description>
|
|
113
|
+
|
|
114
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/genre">
|
|
115
|
+
<rdfs:label xml:lang="en-US">Genre</rdfs:label>
|
|
116
|
+
<rdfs:comment xml:lang="en-US">The nature or genre of the resource.</rdfs:comment>
|
|
117
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
118
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
119
|
+
<dcterms:issued>2010-10-29</dcterms:issued>
|
|
120
|
+
<dcterms:modified>2010-10-29</dcterms:modified>
|
|
121
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
122
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
123
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/type"/>
|
|
124
|
+
</rdf:Description>
|
|
125
|
+
|
|
126
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/dcmitype">
|
|
127
|
+
<rdfs:label xml:lang="en-US">DCMI Type</rdfs:label>
|
|
128
|
+
<rdfs:comment xml:lang="en-US">The nature or genre of the resource.</rdfs:comment>
|
|
129
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
130
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
131
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
132
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
133
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
134
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
135
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/type"/>
|
|
136
|
+
</rdf:Description>
|
|
137
|
+
|
|
138
|
+
<!-- sheetmusic properties -->
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/instrumentation">
|
|
143
|
+
<rdfs:label xml:lang="en-US">Instrumentation</rdfs:label>
|
|
144
|
+
<rdfs:comment xml:lang="en-US">The instrumentation.</rdfs:comment>
|
|
145
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
146
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
147
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
148
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
149
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
150
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
151
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/description"/>
|
|
152
|
+
</rdf:Description>
|
|
153
|
+
|
|
154
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/composer">
|
|
155
|
+
<rdfs:label xml:lang="en-US">Composer</rdfs:label>
|
|
156
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
157
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
158
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
159
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
160
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
161
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
162
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
163
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/creator"/>
|
|
164
|
+
</rdf:Description>
|
|
165
|
+
|
|
166
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/lyricist">
|
|
167
|
+
<rdfs:label xml:lang="en-US">Lyricist</rdfs:label>
|
|
168
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
169
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
170
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
171
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
172
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
173
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
174
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
175
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/creator"/>
|
|
176
|
+
</rdf:Description>
|
|
177
|
+
|
|
178
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/illustrator">
|
|
179
|
+
<rdfs:label xml:lang="en-US">Illustrator</rdfs:label>
|
|
180
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
181
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
182
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
183
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
184
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
185
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
186
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
187
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
|
188
|
+
</rdf:Description>
|
|
189
|
+
|
|
190
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/illustrated">
|
|
191
|
+
<rdfs:label xml:lang="en-US">Illustrated</rdfs:label>
|
|
192
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
193
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
194
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
195
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
196
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
197
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
198
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
199
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/description"/>
|
|
200
|
+
</rdf:Description>
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/lithographer">
|
|
204
|
+
<rdfs:label xml:lang="en-US">Lithographer</rdfs:label>
|
|
205
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
206
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
207
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
208
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
209
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
210
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
211
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
212
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
|
213
|
+
</rdf:Description>
|
|
214
|
+
|
|
215
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/dedicatee">
|
|
216
|
+
<rdfs:label xml:lang="en-US">Dedicatee</rdfs:label>
|
|
217
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
218
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
219
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
220
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
221
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
222
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
223
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
224
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
|
225
|
+
</rdf:Description>
|
|
226
|
+
|
|
227
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/producer">
|
|
228
|
+
<rdfs:label xml:lang="en-US">Producer</rdfs:label>
|
|
229
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
230
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
231
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
232
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
233
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
234
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
235
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
236
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
|
237
|
+
</rdf:Description>
|
|
238
|
+
|
|
239
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/artist">
|
|
240
|
+
<rdfs:label xml:lang="en-US">Artist</rdfs:label>
|
|
241
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
242
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
243
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
244
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
245
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
246
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
247
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
248
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
|
249
|
+
</rdf:Description>
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/arranger">
|
|
253
|
+
<rdfs:label xml:lang="en-US">Arranger</rdfs:label>
|
|
254
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
255
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
256
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
257
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
258
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
259
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
260
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
261
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
|
262
|
+
</rdf:Description>
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/engraver">
|
|
266
|
+
<rdfs:label xml:lang="en-US">Engraver</rdfs:label>
|
|
267
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
268
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
269
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
270
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
271
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
272
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
273
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
274
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
|
275
|
+
</rdf:Description>
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/staging">
|
|
279
|
+
<rdfs:label xml:lang="en-US">Staging</rdfs:label>
|
|
280
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
281
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
282
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
283
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
284
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
285
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
286
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
287
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
|
288
|
+
</rdf:Description>
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/choreographer">
|
|
292
|
+
<rdfs:label xml:lang="en-US">Choreographer</rdfs:label>
|
|
293
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
294
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
295
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
296
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
297
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
298
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
299
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
300
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
|
301
|
+
</rdf:Description>
|
|
302
|
+
|
|
303
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/performer">
|
|
304
|
+
<rdfs:label xml:lang="en-US">Performer</rdfs:label>
|
|
305
|
+
<rdfs:comment xml:lang="en-US">The .</rdfs:comment>
|
|
306
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
307
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
308
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
309
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
310
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
311
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
312
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
|
313
|
+
</rdf:Description>
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/instrumentation">
|
|
320
|
+
<rdfs:label xml:lang="en-US">Instrumentation</rdfs:label>
|
|
321
|
+
<rdfs:comment xml:lang="en-US">The instrumentation.</rdfs:comment>
|
|
322
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
323
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
324
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
325
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
326
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
327
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
328
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/description"/>
|
|
329
|
+
</rdf:Description>
|
|
330
|
+
|
|
331
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/first_line">
|
|
332
|
+
<rdfs:label xml:lang="en-US">First Line</rdfs:label>
|
|
333
|
+
<rdfs:comment xml:lang="en-US">The first line of the song.</rdfs:comment>
|
|
334
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
335
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
336
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
337
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
338
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
339
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
340
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/alternative"/>
|
|
341
|
+
</rdf:Description>
|
|
342
|
+
|
|
343
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/refrain">
|
|
344
|
+
<rdfs:label xml:lang="en-US">Refrain</rdfs:label>
|
|
345
|
+
<rdfs:comment xml:lang="en-US">The first line of the refrain of the song.</rdfs:comment>
|
|
346
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
347
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
348
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
349
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
350
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
351
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
352
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/alternative"/>
|
|
353
|
+
</rdf:Description>
|
|
354
|
+
<!-- /sheetmusic properties -->
|
|
355
|
+
|
|
356
|
+
<!-- advertising properties -->
|
|
357
|
+
|
|
358
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/company">
|
|
359
|
+
<rdfs:label xml:lang="en-US">Company</rdfs:label>
|
|
360
|
+
<rdfs:comment xml:lang="en-US">The company.</rdfs:comment>
|
|
361
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
362
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
363
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
364
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
365
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
366
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
367
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/creator"/>
|
|
368
|
+
</rdf:Description>
|
|
369
|
+
|
|
370
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/product">
|
|
371
|
+
<rdfs:label xml:lang="en-US">Product</rdfs:label>
|
|
372
|
+
<rdfs:comment xml:lang="en-US">The product.</rdfs:comment>
|
|
373
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
374
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
375
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
376
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
377
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
378
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
379
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
|
|
380
|
+
</rdf:Description>
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/placement_company">
|
|
384
|
+
<rdfs:label xml:lang="en-US">Placement Company</rdfs:label>
|
|
385
|
+
<rdfs:comment xml:lang="en-US">The placement company.</rdfs:comment>
|
|
386
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
387
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
388
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
389
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
390
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
391
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
392
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
|
393
|
+
</rdf:Description>
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/sponsor">
|
|
397
|
+
<rdfs:label xml:lang="en-US">Sponsor</rdfs:label>
|
|
398
|
+
<rdfs:comment xml:lang="en-US">The sponsor.</rdfs:comment>
|
|
399
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
400
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
401
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
402
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
403
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
404
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
405
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
|
406
|
+
</rdf:Description>
|
|
407
|
+
|
|
408
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/headline">
|
|
409
|
+
<rdfs:label xml:lang="en-US">Headline</rdfs:label>
|
|
410
|
+
<rdfs:comment xml:lang="en-US">The text in bold.</rdfs:comment>
|
|
411
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
412
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
413
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
414
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
415
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
416
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
417
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/title"/>
|
|
418
|
+
</rdf:Description>
|
|
419
|
+
|
|
420
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/publication">
|
|
421
|
+
<rdfs:label xml:lang="en-US">Publication</rdfs:label>
|
|
422
|
+
<rdfs:comment xml:lang="en-US">The publication in which the ad appeared.</rdfs:comment>
|
|
423
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
424
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
425
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
426
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
427
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
428
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
429
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/source"/>
|
|
430
|
+
</rdf:Description>
|
|
431
|
+
|
|
432
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/awards">
|
|
433
|
+
<rdfs:label xml:lang="en-US">Awards</rdfs:label>
|
|
434
|
+
<rdfs:comment xml:lang="en-US">Awards the ad received.</rdfs:comment>
|
|
435
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
436
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
437
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
438
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
439
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
440
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
441
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
|
|
442
|
+
</rdf:Description>
|
|
443
|
+
|
|
444
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/season">
|
|
445
|
+
<rdfs:label xml:lang="en-US">Season</rdfs:label>
|
|
446
|
+
<rdfs:comment xml:lang="en-US">.</rdfs:comment>
|
|
447
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
448
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
449
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
450
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
451
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
452
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
453
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
|
|
454
|
+
</rdf:Description>
|
|
455
|
+
|
|
456
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/people">
|
|
457
|
+
<rdfs:label xml:lang="en-US">People</rdfs:label>
|
|
458
|
+
<rdfs:comment xml:lang="en-US">Noted people depicted.</rdfs:comment>
|
|
459
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
460
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
461
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
462
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
463
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
464
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
465
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
|
|
466
|
+
</rdf:Description>
|
|
467
|
+
|
|
468
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/race">
|
|
469
|
+
<rdfs:label xml:lang="en-US">Race</rdfs:label>
|
|
470
|
+
<rdfs:comment xml:lang="en-US">Racial characteristics of people depicted.</rdfs:comment>
|
|
471
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
472
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
473
|
+
<dcterms:issued>2010-11-03</dcterms:issued>
|
|
474
|
+
<dcterms:modified>2010-11-03</dcterms:modified>
|
|
475
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
476
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
477
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
|
|
478
|
+
</rdf:Description>
|
|
479
|
+
|
|
480
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/negative_number">
|
|
481
|
+
<rdfs:label xml:lang="en-US">Negative Number</rdfs:label>
|
|
482
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
483
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
484
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
485
|
+
<dcterms:issued>2011-04-26</dcterms:issued>
|
|
486
|
+
<dcterms:modified>2011-04-26</dcterms:modified>
|
|
487
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
488
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
489
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
|
|
490
|
+
</rdf:Description>
|
|
491
|
+
|
|
492
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/box_number">
|
|
493
|
+
<rdfs:label xml:lang="en-US">Box Number</rdfs:label>
|
|
494
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
495
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
496
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
497
|
+
<dcterms:issued>2011-04-26</dcterms:issued>
|
|
498
|
+
<dcterms:modified>2011-04-26</dcterms:modified>
|
|
499
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
500
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
501
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
|
|
502
|
+
</rdf:Description>
|
|
503
|
+
|
|
504
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/folder">
|
|
505
|
+
<rdfs:label xml:lang="en-US">Folder</rdfs:label>
|
|
506
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
507
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
508
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
509
|
+
<dcterms:issued>2011-04-26</dcterms:issued>
|
|
510
|
+
<dcterms:modified>2011-04-26</dcterms:modified>
|
|
511
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
512
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
513
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
|
|
514
|
+
</rdf:Description>
|
|
515
|
+
|
|
516
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/call_number">
|
|
517
|
+
<rdfs:label xml:lang="en-US">Call Number</rdfs:label>
|
|
518
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
519
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
520
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
521
|
+
<dcterms:issued>2011-04-26</dcterms:issued>
|
|
522
|
+
<dcterms:modified>2011-04-26</dcterms:modified>
|
|
523
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
524
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
525
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
|
|
526
|
+
</rdf:Description>
|
|
527
|
+
|
|
528
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/oclc_number">
|
|
529
|
+
<rdfs:label xml:lang="en-US">OCLC Number</rdfs:label>
|
|
530
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
531
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
532
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
533
|
+
<dcterms:issued>2011-04-26</dcterms:issued>
|
|
534
|
+
<dcterms:modified>2011-04-26</dcterms:modified>
|
|
535
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
536
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
537
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
|
|
538
|
+
</rdf:Description>
|
|
539
|
+
|
|
540
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/roll_number">
|
|
541
|
+
<rdfs:label xml:lang="en-US">Roll Number</rdfs:label>
|
|
542
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
543
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
544
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
545
|
+
<dcterms:issued>2011-04-26</dcterms:issued>
|
|
546
|
+
<dcterms:modified>2011-04-26</dcterms:modified>
|
|
547
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
548
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
549
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
|
|
550
|
+
</rdf:Description>
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/chimpanzee">
|
|
554
|
+
<rdfs:label xml:lang="en-US">Chimpanzee</rdfs:label>
|
|
555
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
556
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
557
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
558
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
559
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
560
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
561
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
562
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
|
|
563
|
+
</rdf:Description>
|
|
564
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/series">
|
|
565
|
+
<rdfs:label xml:lang="en-US">Series</rdfs:label>
|
|
566
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
567
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
568
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
569
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
570
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
571
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
572
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
573
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
|
|
574
|
+
</rdf:Description>
|
|
575
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/subseries">
|
|
576
|
+
<rdfs:label xml:lang="en-US">Subseries</rdfs:label>
|
|
577
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
578
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
579
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
580
|
+
<dcterms:issued>2011-10-12</dcterms:issued>
|
|
581
|
+
<dcterms:modified>2011-10-212</dcterms:modified>
|
|
582
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
583
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
584
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
|
|
585
|
+
</rdf:Description>
|
|
586
|
+
|
|
587
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/record_type">
|
|
588
|
+
<rdfs:label xml:lang="en-US">Record Type</rdfs:label>
|
|
589
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
590
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
591
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
592
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
593
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
594
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
595
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
596
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/type"/>
|
|
597
|
+
</rdf:Description>
|
|
598
|
+
|
|
599
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/interview_number">
|
|
600
|
+
<rdfs:label xml:lang="en-US">Interview Number</rdfs:label>
|
|
601
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
602
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
603
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
604
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
605
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
606
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
607
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
608
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
|
|
609
|
+
</rdf:Description>
|
|
610
|
+
|
|
611
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/interview_date">
|
|
612
|
+
<rdfs:label xml:lang="en-US">Interview Date</rdfs:label>
|
|
613
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
614
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
615
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
616
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
617
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
618
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
619
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
620
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/>
|
|
621
|
+
</rdf:Description>
|
|
622
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/interview_location">
|
|
623
|
+
<rdfs:label xml:lang="en-US">Interview Location</rdfs:label>
|
|
624
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
625
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
626
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
627
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
628
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
629
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
630
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
631
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/spatial"/>
|
|
632
|
+
</rdf:Description>
|
|
633
|
+
|
|
634
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/interview_state">
|
|
635
|
+
<rdfs:label xml:lang="en-US">Interview State</rdfs:label>
|
|
636
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
637
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
638
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
639
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
640
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
641
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
642
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
643
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/spatial"/>
|
|
644
|
+
</rdf:Description>
|
|
645
|
+
|
|
646
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/interviewee_state_of_birth">
|
|
647
|
+
<rdfs:label xml:lang="en-US">Interviewee State of Birth</rdfs:label>
|
|
648
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
649
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
650
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
651
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
652
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
653
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
654
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
655
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/spatial"/>
|
|
656
|
+
</rdf:Description>
|
|
657
|
+
|
|
658
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/interviewee_date_of_birth">
|
|
659
|
+
<rdfs:label xml:lang="en-US">Interviewee Date of Birth</rdfs:label>
|
|
660
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
661
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
662
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
663
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
664
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
665
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
666
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
667
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/>
|
|
668
|
+
</rdf:Description>
|
|
669
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/interviewee_gender">
|
|
670
|
+
<rdfs:label xml:lang="en-US">Interviewee Gender</rdfs:label>
|
|
671
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
672
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
673
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
674
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
675
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
676
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
677
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
678
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
|
|
679
|
+
</rdf:Description>
|
|
680
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/interviewee_residence">
|
|
681
|
+
<rdfs:label xml:lang="en-US">Interviewee Residence</rdfs:label>
|
|
682
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
683
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
684
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
685
|
+
<dcterms:issued>2014-01-30</dcterms:issued>
|
|
686
|
+
<dcterms:modified>2014-01-30</dcterms:modified>
|
|
687
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
688
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
689
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/spatial"/>
|
|
690
|
+
</rdf:Description>
|
|
691
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/interviewee_occupation">
|
|
692
|
+
<rdfs:label xml:lang="en-US">Interviewee Occupation</rdfs:label>
|
|
693
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
694
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
695
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
696
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
697
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
698
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
699
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
700
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
|
|
701
|
+
</rdf:Description>
|
|
702
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/interviewee_birthplace">
|
|
703
|
+
<rdfs:label xml:lang="en-US">Interviewee Birthplace</rdfs:label>
|
|
704
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
705
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
706
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
707
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
708
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
709
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
710
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
711
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/spatial"/>
|
|
712
|
+
</rdf:Description>
|
|
713
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/interviewer_name">
|
|
714
|
+
<rdfs:label xml:lang="en-US">Interviewer Name</rdfs:label>
|
|
715
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
716
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
717
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
718
|
+
<dcterms:issued>2011-03-23</dcterms:issued>
|
|
719
|
+
<dcterms:modified>2011-03-23</dcterms:modified>
|
|
720
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
721
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
722
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/creator"/>
|
|
723
|
+
</rdf:Description>
|
|
724
|
+
|
|
725
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/print_number">
|
|
726
|
+
<rdfs:label xml:lang="en-US">Print Number</rdfs:label>
|
|
727
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
728
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
729
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
730
|
+
<dcterms:issued>2011-10-10</dcterms:issued>
|
|
731
|
+
<dcterms:modified>2011-10-10</dcterms:modified>
|
|
732
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
733
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
734
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
|
|
735
|
+
</rdf:Description>
|
|
736
|
+
|
|
737
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/source_collection">
|
|
738
|
+
<rdfs:label xml:lang="en-US">Source Collection</rdfs:label>
|
|
739
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
740
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
741
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
742
|
+
<dcterms:issued>2012-03-07</dcterms:issued>
|
|
743
|
+
<dcterms:modified>2012-03-07</dcterms:modified>
|
|
744
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
745
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
746
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/isPartOf"/>
|
|
747
|
+
</rdf:Description>
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/volume">
|
|
751
|
+
<rdfs:label xml:lang="en-US">Volume</rdfs:label>
|
|
752
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
753
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
754
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
755
|
+
<dcterms:issued>2013-06-25</dcterms:issued>
|
|
756
|
+
<dcterms:modified>2013-06-25</dcterms:modified>
|
|
757
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
758
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
759
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
|
|
760
|
+
</rdf:Description>
|
|
761
|
+
|
|
762
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/issue_number">
|
|
763
|
+
<rdfs:label xml:lang="en-US">Issue Number</rdfs:label>
|
|
764
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
765
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
766
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
767
|
+
<dcterms:issued>2012-03-07</dcterms:issued>
|
|
768
|
+
<dcterms:modified>2012-03-07</dcterms:modified>
|
|
769
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
770
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
771
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
|
|
772
|
+
</rdf:Description>
|
|
773
|
+
|
|
774
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/issue_date">
|
|
775
|
+
<rdfs:label xml:lang="en-US">Issue Date</rdfs:label>
|
|
776
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
777
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
778
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
779
|
+
<dcterms:issued>2012-03-07</dcterms:issued>
|
|
780
|
+
<dcterms:modified>2012-03-07</dcterms:modified>
|
|
781
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
782
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
783
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/>
|
|
784
|
+
</rdf:Description>
|
|
785
|
+
|
|
786
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/duke_opponent">
|
|
787
|
+
<rdfs:label xml:lang="en-US">Duke Opponent</rdfs:label>
|
|
788
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
789
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
790
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
791
|
+
<dcterms:issued>2012-03-07</dcterms:issued>
|
|
792
|
+
<dcterms:modified>2012-03-07</dcterms:modified>
|
|
793
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
794
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
795
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
|
|
796
|
+
</rdf:Description>
|
|
797
|
+
|
|
798
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/site_alignment">
|
|
799
|
+
<rdfs:label xml:lang="en-US">Site Alignment</rdfs:label>
|
|
800
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
801
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
802
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
803
|
+
<dcterms:issued>2012-03-07</dcterms:issued>
|
|
804
|
+
<dcterms:modified>2012-03-07</dcterms:modified>
|
|
805
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
806
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
807
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/spatial"/>
|
|
808
|
+
</rdf:Description>
|
|
809
|
+
|
|
810
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/venue">
|
|
811
|
+
<rdfs:label xml:lang="en-US">Venue</rdfs:label>
|
|
812
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
813
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
814
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
815
|
+
<dcterms:issued>2012-03-07</dcterms:issued>
|
|
816
|
+
<dcterms:modified>2012-03-07</dcterms:modified>
|
|
817
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
818
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
819
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/spatial"/>
|
|
820
|
+
</rdf:Description>
|
|
821
|
+
|
|
822
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/digitized">
|
|
823
|
+
<rdfs:label xml:lang="en-US">Digitized</rdfs:label>
|
|
824
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
825
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
826
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
827
|
+
<dcterms:issued>2012-03-07</dcterms:issued>
|
|
828
|
+
<dcterms:modified>2012-03-07</dcterms:modified>
|
|
829
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
830
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
831
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/hasVersion"/>
|
|
832
|
+
</rdf:Description>
|
|
833
|
+
|
|
834
|
+
<rdf:Description rdf:about="http://library.duke.edu/metadata/terms/category">
|
|
835
|
+
<rdfs:label xml:lang="en-US">Category</rdfs:label>
|
|
836
|
+
<rdfs:comment xml:lang="en-US"></rdfs:comment>
|
|
837
|
+
<dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
|
|
838
|
+
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
|
|
839
|
+
<dcterms:issued>2012-03-07</dcterms:issued>
|
|
840
|
+
<dcterms:modified>2012-03-07</dcterms:modified>
|
|
841
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
|
842
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
|
843
|
+
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/IsPartOf"/>
|
|
844
|
+
</rdf:Description>
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
</rdf:RDF>
|