ddr-core 0.2.1

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.
Files changed (132) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +12 -0
  3. data/README.md +27 -0
  4. data/Rakefile +30 -0
  5. data/app/assets/config/ddr_core_manifest.js +0 -0
  6. data/app/controllers/users/omniauth_callbacks_controller.rb +11 -0
  7. data/app/controllers/users/sessions_controller.rb +15 -0
  8. data/app/models/concerns/ddr/captionable.rb +25 -0
  9. data/app/models/concerns/ddr/describable.rb +108 -0
  10. data/app/models/concerns/ddr/governable.rb +25 -0
  11. data/app/models/concerns/ddr/has_admin_metadata.rb +141 -0
  12. data/app/models/concerns/ddr/has_attachments.rb +10 -0
  13. data/app/models/concerns/ddr/has_children.rb +10 -0
  14. data/app/models/concerns/ddr/has_content.rb +132 -0
  15. data/app/models/concerns/ddr/has_extracted_text.rb +10 -0
  16. data/app/models/concerns/ddr/has_intermediate_file.rb +25 -0
  17. data/app/models/concerns/ddr/has_multires_image.rb +14 -0
  18. data/app/models/concerns/ddr/has_parent.rb +18 -0
  19. data/app/models/concerns/ddr/has_struct_metadata.rb +21 -0
  20. data/app/models/concerns/ddr/has_thumbnail.rb +33 -0
  21. data/app/models/concerns/ddr/solr_document_behavior.rb +429 -0
  22. data/app/models/concerns/ddr/streamable.rb +25 -0
  23. data/app/models/ddr/admin_set.rb +28 -0
  24. data/app/models/ddr/attachment.rb +14 -0
  25. data/app/models/ddr/collection.rb +28 -0
  26. data/app/models/ddr/component.rb +31 -0
  27. data/app/models/ddr/contact.rb +23 -0
  28. data/app/models/ddr/digest.rb +8 -0
  29. data/app/models/ddr/file.rb +40 -0
  30. data/app/models/ddr/item.rb +36 -0
  31. data/app/models/ddr/language.rb +31 -0
  32. data/app/models/ddr/media_type.rb +22 -0
  33. data/app/models/ddr/resource.rb +94 -0
  34. data/app/models/ddr/rights_statement.rb +25 -0
  35. data/app/models/ddr/target.rb +17 -0
  36. data/config/initializers/devise.rb +262 -0
  37. data/config/locales/ddr-core.en.yml +85 -0
  38. data/config/routes.rb +3 -0
  39. data/db/migrate/20141104181418_create_users.rb +34 -0
  40. data/db/migrate/20141107124012_add_columns_to_user.rb +46 -0
  41. data/lib/ddr-core.rb +1 -0
  42. data/lib/ddr/auth.rb +80 -0
  43. data/lib/ddr/auth/ability.rb +18 -0
  44. data/lib/ddr/auth/ability_definitions.rb +26 -0
  45. data/lib/ddr/auth/ability_definitions/admin_set_ability_definitions.rb +9 -0
  46. data/lib/ddr/auth/ability_definitions/alias_ability_definitions.rb +23 -0
  47. data/lib/ddr/auth/ability_definitions/attachment_ability_definitions.rb +13 -0
  48. data/lib/ddr/auth/ability_definitions/collection_ability_definitions.rb +28 -0
  49. data/lib/ddr/auth/ability_definitions/component_ability_definitions.rb +13 -0
  50. data/lib/ddr/auth/ability_definitions/item_ability_definitions.rb +13 -0
  51. data/lib/ddr/auth/ability_definitions/lock_ability_definitions.rb +13 -0
  52. data/lib/ddr/auth/ability_definitions/publication_ability_definitions.rb +16 -0
  53. data/lib/ddr/auth/ability_definitions/role_based_ability_definitions.rb +39 -0
  54. data/lib/ddr/auth/ability_definitions/superuser_ability_definitions.rb +9 -0
  55. data/lib/ddr/auth/ability_factory.rb +10 -0
  56. data/lib/ddr/auth/abstract_ability.rb +48 -0
  57. data/lib/ddr/auth/affiliation.rb +14 -0
  58. data/lib/ddr/auth/affiliation_groups.rb +20 -0
  59. data/lib/ddr/auth/anonymous_ability.rb +7 -0
  60. data/lib/ddr/auth/auth_context.rb +109 -0
  61. data/lib/ddr/auth/auth_context_factory.rb +13 -0
  62. data/lib/ddr/auth/detached_auth_context.rb +19 -0
  63. data/lib/ddr/auth/dynamic_groups.rb +13 -0
  64. data/lib/ddr/auth/effective_permissions.rb +12 -0
  65. data/lib/ddr/auth/effective_roles.rb +9 -0
  66. data/lib/ddr/auth/failure_app.rb +16 -0
  67. data/lib/ddr/auth/group.rb +40 -0
  68. data/lib/ddr/auth/grouper_gateway.rb +70 -0
  69. data/lib/ddr/auth/groups.rb +32 -0
  70. data/lib/ddr/auth/ldap_gateway.rb +74 -0
  71. data/lib/ddr/auth/permissions.rb +18 -0
  72. data/lib/ddr/auth/remote_groups.rb +14 -0
  73. data/lib/ddr/auth/role_based_access_controls_enforcement.rb +56 -0
  74. data/lib/ddr/auth/roles.rb +28 -0
  75. data/lib/ddr/auth/roles/role.rb +121 -0
  76. data/lib/ddr/auth/roles/role_type.rb +23 -0
  77. data/lib/ddr/auth/roles/role_types.rb +52 -0
  78. data/lib/ddr/auth/superuser_ability.rb +7 -0
  79. data/lib/ddr/auth/test_helpers.rb +22 -0
  80. data/lib/ddr/auth/user.rb +54 -0
  81. data/lib/ddr/auth/web_auth_context.rb +29 -0
  82. data/lib/ddr/core.rb +110 -0
  83. data/lib/ddr/core/engine.rb +8 -0
  84. data/lib/ddr/core/version.rb +5 -0
  85. data/lib/ddr/error.rb +16 -0
  86. data/lib/ddr/files.rb +13 -0
  87. data/lib/ddr/fits.rb +189 -0
  88. data/lib/ddr/index.rb +29 -0
  89. data/lib/ddr/index/abstract_query_result.rb +22 -0
  90. data/lib/ddr/index/connection.rb +38 -0
  91. data/lib/ddr/index/csv_query_result.rb +84 -0
  92. data/lib/ddr/index/document_builder.rb +9 -0
  93. data/lib/ddr/index/field.rb +35 -0
  94. data/lib/ddr/index/field_attribute.rb +22 -0
  95. data/lib/ddr/index/fields.rb +154 -0
  96. data/lib/ddr/index/filter.rb +139 -0
  97. data/lib/ddr/index/query.rb +82 -0
  98. data/lib/ddr/index/query_builder.rb +185 -0
  99. data/lib/ddr/index/query_clause.rb +112 -0
  100. data/lib/ddr/index/query_params.rb +40 -0
  101. data/lib/ddr/index/query_result.rb +102 -0
  102. data/lib/ddr/index/response.rb +30 -0
  103. data/lib/ddr/index/sort_order.rb +28 -0
  104. data/lib/ddr/index/unique_key_field.rb +12 -0
  105. data/lib/ddr/managers.rb +9 -0
  106. data/lib/ddr/managers/manager.rb +13 -0
  107. data/lib/ddr/managers/technical_metadata_manager.rb +141 -0
  108. data/lib/ddr/structure.rb +188 -0
  109. data/lib/ddr/structures/agent.rb +49 -0
  110. data/lib/ddr/structures/component_type_term.rb +29 -0
  111. data/lib/ddr/structures/div.rb +64 -0
  112. data/lib/ddr/structures/f_locat.rb +54 -0
  113. data/lib/ddr/structures/file.rb +52 -0
  114. data/lib/ddr/structures/file_grp.rb +35 -0
  115. data/lib/ddr/structures/file_sec.rb +22 -0
  116. data/lib/ddr/structures/fptr.rb +31 -0
  117. data/lib/ddr/structures/mets_hdr.rb +37 -0
  118. data/lib/ddr/structures/mptr.rb +49 -0
  119. data/lib/ddr/structures/struct_map.rb +40 -0
  120. data/lib/ddr/utils.rb +185 -0
  121. data/lib/ddr/vocab.rb +22 -0
  122. data/lib/ddr/vocab/asset.rb +51 -0
  123. data/lib/ddr/vocab/contact.rb +9 -0
  124. data/lib/ddr/vocab/display.rb +9 -0
  125. data/lib/ddr/vocab/duke_terms.rb +13 -0
  126. data/lib/ddr/vocab/rdf_vocabulary_parser.rb +43 -0
  127. data/lib/ddr/vocab/roles.rb +25 -0
  128. data/lib/ddr/vocab/sources/duketerms.rdf +870 -0
  129. data/lib/ddr/vocab/vocabulary.rb +37 -0
  130. data/lib/ddr/workflow.rb +8 -0
  131. data/lib/tasks/ddr/core_tasks.rake +4 -0
  132. metadata +428 -0
@@ -0,0 +1,22 @@
1
+ require "rdf/vocab"
2
+
3
+ module Ddr::Vocab
4
+ extend ActiveSupport::Autoload
5
+
6
+ BASE_URI = "http://repository.lib.duke.edu/vocab"
7
+
8
+ PREMIS = begin
9
+ RDF::Vocab::PREMIS::V1
10
+ rescue NameError
11
+ RDF::Vocab::PREMIS
12
+ end
13
+
14
+ autoload :Asset
15
+ autoload :Contact
16
+ autoload :Display
17
+ autoload :DukeTerms
18
+ autoload :RDFVocabularyParser
19
+ autoload :Roles
20
+ autoload :Vocabulary
21
+
22
+ end
@@ -0,0 +1,51 @@
1
+ module Ddr::Vocab
2
+ class Asset < RDF::StrictVocabulary("http://repository.lib.duke.edu/vocab/asset/")
3
+
4
+ property "permanentId",
5
+ label: "Permanent Identifier"
6
+
7
+ property "permanentUrl",
8
+ label: "Permanent URL"
9
+
10
+ property "workflowState",
11
+ label: "Workflow State"
12
+
13
+ property "adminSet",
14
+ label: "Administrative Set",
15
+ comment: "A name under which objects (principally collections) are grouped for administrative purposes."
16
+
17
+ property "eadId",
18
+ label: "EAD ID"
19
+
20
+ property "archivesSpaceId",
21
+ label: "ArchivesSpace Identifier"
22
+
23
+ property "isLocked",
24
+ label: "Is Locked?"
25
+
26
+ property "ingestedBy",
27
+ label: "Ingested By",
28
+ comment: "The agent (person or software) that initiated or performed the ingestion of the object."
29
+
30
+ property "ingestionDate",
31
+ label: "Ingestion Date",
32
+ comment: "The date/time at which the object was originally ingested into the repository."
33
+
34
+ property "rightsNote",
35
+ label: "Rights Note",
36
+ comment: "Free-text statement about the rights status of the resource."
37
+
38
+ property "alephId",
39
+ label: "Aleph ID",
40
+ comment: "The Aleph identifier for a catalog record corresponding to the object."
41
+
42
+ property "affiliation",
43
+ label: "Affiliation",
44
+ comment: "An organizational entity associated with the object content."
45
+
46
+ property "nestedPath",
47
+ label: "Nested Path",
48
+ comment: "The nested/tree path to the object to be reflected in structural metadata."
49
+
50
+ end
51
+ end
@@ -0,0 +1,9 @@
1
+ module Ddr::Vocab
2
+ class Contact < RDF::StrictVocabulary("#{BASE_URI}/contact/")
3
+
4
+ property "assistance",
5
+ label: "Research Assistance",
6
+ comment: "Contact for research assistance with this object."
7
+
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Ddr::Vocab
2
+ class Display < RDF::StrictVocabulary("#{BASE_URI}/display/")
3
+
4
+ property "format",
5
+ label: "Display Format",
6
+ comment: "Format to use when displaying the object."
7
+
8
+ end
9
+ end
@@ -0,0 +1,13 @@
1
+ module Ddr::Vocab
2
+
3
+ class DukeTerms < RDF::StrictVocabulary("http://library.duke.edu/metadata/terms/")
4
+
5
+ RDFVocabularyParser.new(
6
+ File.join(File.dirname( __FILE__ ), "sources", "duketerms.rdf"),
7
+ "http://library.duke.edu/metadata/terms/").
8
+ term_symbols.sort.each do |term|
9
+ property term, type: "rdf:Property".freeze
10
+ end
11
+
12
+ end
13
+ end
@@ -0,0 +1,43 @@
1
+ require 'rdf/rdfxml'
2
+
3
+ module Ddr::Vocab
4
+ class RDFVocabularyParser
5
+
6
+ attr_reader :source, :prefix
7
+
8
+ def initialize(source, prefix = "")
9
+ @source = source
10
+ @prefix = prefix
11
+ end
12
+
13
+ def term_names
14
+ @term_names ||= terms.collect { |t| t[:resource].to_s.sub(prefix, "") }.freeze
15
+ end
16
+
17
+ def term_symbols
18
+ term_names.map(&:to_sym)
19
+ end
20
+
21
+ def terms
22
+ properties.map(&:to_h)
23
+ end
24
+
25
+ def properties
26
+ RDF::Query.execute(graph, properties_query)
27
+ end
28
+
29
+ def properties_query
30
+ {:resource => {
31
+ RDF.type => RDF.Property,
32
+ RDF::RDFS.label => :label,
33
+ RDF::RDFS.comment => :comment
34
+ }
35
+ }
36
+ end
37
+
38
+ def graph
39
+ @graph ||= RDF::Graph.load(source).freeze
40
+ end
41
+
42
+ end
43
+ end
@@ -0,0 +1,25 @@
1
+ module Ddr::Vocab
2
+ class Roles < RDF::StrictVocabulary("#{BASE_URI}/roles/")
3
+
4
+ term :Role,
5
+ label: "Role",
6
+ comment: "An assertion of a role granted to an agent."
7
+
8
+ property :hasRole,
9
+ label: "Has Role",
10
+ comment: "Asserts the granting of a role on the subject to an agent."
11
+
12
+ property :type,
13
+ label: "Type",
14
+ comment: "The type of role granted to the agent."
15
+
16
+ property :agent,
17
+ label: "Agent",
18
+ comment: "The agent to whom the role is granted."
19
+
20
+ property :scope,
21
+ label: "Scope",
22
+ comment: "The scope within which the role applies."
23
+
24
+ end
25
+ end
@@ -0,0 +1,870 @@
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
+ <rdf:Description rdf:about="http://library.duke.edu/metadata/terms/biblical_book">
847
+ <rdfs:label xml:lang="en-US">Biblical Book</rdfs:label>
848
+ <rdfs:comment xml:lang="en-US"></rdfs:comment>
849
+ <dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
850
+ <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
851
+ <dcterms:issued>2018-06-01</dcterms:issued>
852
+ <dcterms:modified>2018-06-01</dcterms:modified>
853
+ <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
854
+ <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
855
+ <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
856
+ </rdf:Description>
857
+
858
+ <rdf:Description rdf:about="http://library.duke.edu/metadata/terms/chapter_and_verse">
859
+ <rdfs:label xml:lang="en-US">Chapter and Verse</rdfs:label>
860
+ <rdfs:comment xml:lang="en-US"></rdfs:comment>
861
+ <dcterms:description xml:lang="en-US">Recommended best practice is to </dcterms:description>
862
+ <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
863
+ <dcterms:issued>2018-06-01</dcterms:issued>
864
+ <dcterms:modified>2018-06-01</dcterms:modified>
865
+ <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
866
+ <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
867
+ <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
868
+ </rdf:Description>
869
+
870
+ </rdf:RDF>