bolognese 1.3.1 → 2.3.9

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 (527) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/build.yml +9 -0
  3. data/.github/workflows/changelog.yml +36 -0
  4. data/.github/workflows/ci.yml +22 -0
  5. data/.github/workflows/pull-request.yml +9 -0
  6. data/.github/workflows/release.yml +32 -0
  7. data/.gitignore +3 -0
  8. data/.rubocop.yml +658 -0
  9. data/CHANGELOG.md +1864 -0
  10. data/Gemfile.lock +163 -129
  11. data/README.md +3 -2
  12. data/bolognese.gemspec +22 -20
  13. data/lib/bolognese/author_utils.rb +49 -25
  14. data/lib/bolognese/cli.rb +6 -4
  15. data/lib/bolognese/datacite_utils.rb +143 -17
  16. data/lib/bolognese/doi_utils.rb +14 -9
  17. data/lib/bolognese/metadata.rb +27 -19
  18. data/lib/bolognese/metadata_utils.rb +25 -6
  19. data/lib/bolognese/readers/bibtex_reader.rb +29 -34
  20. data/lib/bolognese/readers/citeproc_reader.rb +27 -35
  21. data/lib/bolognese/readers/codemeta_reader.rb +12 -13
  22. data/lib/bolognese/readers/crosscite_reader.rb +4 -1
  23. data/lib/bolognese/readers/crossref_reader.rb +163 -67
  24. data/lib/bolognese/readers/datacite_json_reader.rb +4 -1
  25. data/lib/bolognese/readers/datacite_reader.rb +150 -38
  26. data/lib/bolognese/readers/npm_reader.rb +115 -0
  27. data/lib/bolognese/readers/ris_reader.rb +10 -14
  28. data/lib/bolognese/readers/schema_org_reader.rb +58 -25
  29. data/lib/bolognese/utils.rb +502 -63
  30. data/lib/bolognese/version.rb +1 -1
  31. data/lib/bolognese/writers/bibtex_writer.rb +4 -3
  32. data/lib/bolognese/writers/codemeta_writer.rb +6 -5
  33. data/lib/bolognese/writers/csv_writer.rb +1 -1
  34. data/lib/bolognese/writers/datacite_json_writer.rb +3 -1
  35. data/lib/bolognese/writers/jats_writer.rb +9 -4
  36. data/lib/bolognese/writers/ris_writer.rb +2 -2
  37. data/lib/bolognese/writers/schema_org_writer.rb +11 -7
  38. data/lib/bolognese.rb +2 -1
  39. data/package.json +12 -0
  40. data/resources/kernel-4/include/datacite-contributorType-v4.xsd +24 -22
  41. data/resources/kernel-4/include/datacite-dateType-v4.xsd +14 -12
  42. data/resources/kernel-4/include/datacite-descriptionType-v4.xsd +6 -6
  43. data/resources/kernel-4/include/datacite-funderIdentifierType-v4.xsd +5 -5
  44. data/resources/kernel-4/include/datacite-nameType-v4.xsd +2 -2
  45. data/resources/kernel-4/include/datacite-numberType-v4.xsd +12 -0
  46. data/resources/kernel-4/include/datacite-relatedIdentifierType-v4.xsd +24 -21
  47. data/resources/kernel-4/include/datacite-relationType-v4.xsd +43 -35
  48. data/resources/kernel-4/include/datacite-resourceType-v4.xsd +38 -17
  49. data/resources/kernel-4/include/datacite-titleType-v4.xsd +5 -5
  50. data/resources/kernel-4/metadata.xsd +349 -146
  51. data/resources/kernel-4.3/metadata.xsd +39 -8
  52. data/resources/kernel-4.4/include/datacite-contributorType-v4.xsd +35 -0
  53. data/resources/kernel-4.4/include/datacite-dateType-v4.xsd +25 -0
  54. data/resources/kernel-4.4/include/datacite-descriptionType-v4.xsd +19 -0
  55. data/resources/kernel-4.4/include/datacite-funderIdentifierType-v4.xsd +16 -0
  56. data/resources/kernel-4.4/include/datacite-nameType-v4.xsd +10 -0
  57. data/resources/kernel-4.4/include/datacite-numberType-v4.xsd +12 -0
  58. data/resources/kernel-4.4/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  59. data/resources/kernel-4.4/include/datacite-relationType-v4.xsd +51 -0
  60. data/resources/kernel-4.4/include/datacite-resourceType-v4.xsd +43 -0
  61. data/resources/kernel-4.4/include/datacite-titleType-v4.xsd +14 -0
  62. data/resources/kernel-4.4/include/xml.xsd +286 -0
  63. data/resources/kernel-4.4/metadata.xsd +707 -0
  64. data/resources/kernel-4.5/include/datacite-contributorType-v4.xsd +35 -0
  65. data/resources/kernel-4.5/include/datacite-dateType-v4.xsd +25 -0
  66. data/resources/kernel-4.5/include/datacite-descriptionType-v4.xsd +19 -0
  67. data/resources/kernel-4.5/include/datacite-funderIdentifierType-v4.xsd +16 -0
  68. data/resources/kernel-4.5/include/datacite-nameType-v4.xsd +10 -0
  69. data/resources/kernel-4.5/include/datacite-numberType-v4.xsd +12 -0
  70. data/resources/kernel-4.5/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  71. data/resources/kernel-4.5/include/datacite-relationType-v4.xsd +53 -0
  72. data/resources/kernel-4.5/include/datacite-resourceType-v4.xsd +45 -0
  73. data/resources/kernel-4.5/include/datacite-titleType-v4.xsd +14 -0
  74. data/resources/kernel-4.5/include/xml.xsd +286 -0
  75. data/resources/kernel-4.5/metadata.xsd +711 -0
  76. data/resources/kernel-4.6/include/datacite-contributorType-v4.xsd +37 -0
  77. data/resources/kernel-4.6/include/datacite-dateType-v4.xsd +27 -0
  78. data/resources/kernel-4.6/include/datacite-descriptionType-v4.xsd +19 -0
  79. data/resources/kernel-4.6/include/datacite-funderIdentifierType-v4.xsd +16 -0
  80. data/resources/kernel-4.6/include/datacite-nameType-v4.xsd +10 -0
  81. data/resources/kernel-4.6/include/datacite-numberType-v4.xsd +12 -0
  82. data/resources/kernel-4.6/include/datacite-relatedIdentifierType-v4.xsd +37 -0
  83. data/resources/kernel-4.6/include/datacite-relationType-v4.xsd +57 -0
  84. data/resources/kernel-4.6/include/datacite-resourceType-v4.xsd +49 -0
  85. data/resources/kernel-4.6/include/datacite-titleType-v4.xsd +14 -0
  86. data/resources/kernel-4.6/include/xml.xsd +286 -0
  87. data/resources/kernel-4.6/metadata.xsd +712 -0
  88. data/resources/oecd/dfg-mappings.json +1866 -0
  89. data/resources/oecd/for-mappings.json +1101 -0
  90. data/resources/oecd/fos-mappings.json +198 -0
  91. data/resources/schema_org/jsonldcontext.json +1069 -232
  92. data/resources/spdx/licenses.json +5297 -0
  93. metadata +160 -510
  94. data/.travis.yml +0 -33
  95. data/spec/array_spec.rb +0 -22
  96. data/spec/author_utils_spec.rb +0 -188
  97. data/spec/cli_spec.rb +0 -219
  98. data/spec/datacite_utils_spec.rb +0 -148
  99. data/spec/doi_utils_spec.rb +0 -302
  100. data/spec/find_from_format_spec.rb +0 -98
  101. data/spec/fixtures/aida.json +0 -82
  102. data/spec/fixtures/citeproc-no-author.json +0 -26
  103. data/spec/fixtures/citeproc-no-categories.json +0 -21
  104. data/spec/fixtures/citeproc.json +0 -30
  105. data/spec/fixtures/codemeta.json +0 -86
  106. data/spec/fixtures/codemeta_v2.json +0 -86
  107. data/spec/fixtures/crosscite.json +0 -63
  108. data/spec/fixtures/crossref.bib +0 -14
  109. data/spec/fixtures/crossref.ris +0 -15
  110. data/spec/fixtures/crossref.xml +0 -606
  111. data/spec/fixtures/datacite-example-affiliation.xml +0 -114
  112. data/spec/fixtures/datacite-example-complicated-v3.0.xml +0 -48
  113. data/spec/fixtures/datacite-example-complicated-v4.0.xml +0 -54
  114. data/spec/fixtures/datacite-example-complicated-v4.1.xml +0 -57
  115. data/spec/fixtures/datacite-example-geolocation-2.xml +0 -141
  116. data/spec/fixtures/datacite-example-geolocation.xml +0 -66
  117. data/spec/fixtures/datacite-example-polygon-v4.1.xml +0 -163
  118. data/spec/fixtures/datacite-geolocation-empty.xml +0 -159
  119. data/spec/fixtures/datacite-metadata-sample-complicated-v2.2.xml +0 -52
  120. data/spec/fixtures/datacite-multiple-language.xml +0 -38
  121. data/spec/fixtures/datacite-multiple-rights.xml +0 -59
  122. data/spec/fixtures/datacite-seriesinformation.xml +0 -41
  123. data/spec/fixtures/datacite-xml-lang.xml +0 -51
  124. data/spec/fixtures/datacite.json +0 -83
  125. data/spec/fixtures/datacite.xml +0 -40
  126. data/spec/fixtures/datacite_dataset.xml +0 -58
  127. data/spec/fixtures/datacite_malformed_creator.xml +0 -52
  128. data/spec/fixtures/datacite_missing_creator.xml +0 -33
  129. data/spec/fixtures/datacite_schema_3.xml +0 -58
  130. data/spec/fixtures/datacite_software.json +0 -21
  131. data/spec/fixtures/datacite_software_missing_comma.json +0 -18
  132. data/spec/fixtures/datacite_software_overlapping_keys.json +0 -18
  133. data/spec/fixtures/funding_reference.xml +0 -53
  134. data/spec/fixtures/gtex.xml +0 -71
  135. data/spec/fixtures/maremma/codemeta.json +0 -36
  136. data/spec/fixtures/nist.xml +0 -35
  137. data/spec/fixtures/ns0.xml +0 -2
  138. data/spec/fixtures/pure.bib +0 -14
  139. data/spec/fixtures/pure.ris +0 -15
  140. data/spec/fixtures/ris_bug.ris +0 -9
  141. data/spec/fixtures/schema_4.0.xml +0 -140
  142. data/spec/fixtures/schema_org.json +0 -44
  143. data/spec/fixtures/schema_org_geolocation.json +0 -82
  144. data/spec/fixtures/schema_org_geoshape.json +0 -550
  145. data/spec/fixtures/schema_org_gtex.json +0 -76
  146. data/spec/fixtures/schema_org_list.json +0 -12628
  147. data/spec/fixtures/schema_org_tdl_iodp_invalid_authors.json +0 -25
  148. data/spec/fixtures/schema_org_topmed.json +0 -54
  149. data/spec/fixtures/schema_org_type_as_array.json +0 -41
  150. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/crossref/default.yml +0 -95
  151. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/crossref/to_bibtex.yml +0 -95
  152. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/crossref/to_citation.yml +0 -95
  153. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/crossref/to_crossref.yml +0 -95
  154. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/crossref/to_datacite.yml +0 -95
  155. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/crossref/to_jats.yml +0 -95
  156. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/crossref/to_schema_org.yml +0 -95
  157. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/datacite/default.yml +0 -93
  158. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/datacite/to_bibtex.yml +0 -93
  159. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/datacite/to_citation.yml +0 -93
  160. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/datacite/to_datacite.yml +0 -93
  161. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/datacite/to_datacite_json.yml +0 -93
  162. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/datacite/to_jats.yml +0 -93
  163. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/datacite/to_schema_org.yml +0 -93
  164. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/schema_org/default.yml +0 -111
  165. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/schema_org/to_bibtex.yml +0 -111
  166. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/schema_org/to_datacite.yml +0 -111
  167. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/convert_from_id/schema_org/to_schema_org.yml +0 -111
  168. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/find_from_format_by_id/crossref.yml +0 -47
  169. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/find_from_format_by_id/datacite.yml +0 -47
  170. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/find_from_format_by_id/jalc.yml +0 -47
  171. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/find_from_format_by_id/kisti.yml +0 -47
  172. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/find_from_format_by_id/medra.yml +0 -47
  173. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/find_from_format_by_id/op.yml +0 -47
  174. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/authors_as_string/author.yml +0 -44
  175. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/authors_as_string/no_author.yml +0 -44
  176. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/authors_as_string/single_author.yml +0 -44
  177. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/authors_as_string/with_organization.yml +0 -44
  178. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/change_datacite_metadata/change_state.yml +0 -93
  179. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/change_datacite_metadata/change_title.yml +0 -93
  180. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/change_metadata_as_datacite_xml/change_description.yml +0 -51
  181. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/change_metadata_as_datacite_xml/change_license.yml +0 -51
  182. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/change_metadata_as_datacite_xml/change_license_name.yml +0 -51
  183. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/change_metadata_as_datacite_xml/change_license_url.yml +0 -51
  184. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/change_metadata_as_datacite_xml/change_state.yml +0 -51
  185. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/change_metadata_as_datacite_xml/validates_against_schema.yml +0 -51
  186. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml +0 -51
  187. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_api_url/doi.yml +0 -44
  188. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_api_url/doi_with_protocol.yml +0 -44
  189. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_api_url/dx_doi_org_url.yml +0 -44
  190. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_api_url/force_test_resolver.yml +0 -44
  191. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_api_url/https_url.yml +0 -44
  192. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_api_url/test_resolver.yml +0 -44
  193. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_api_url/test_resolver_http.yml +0 -44
  194. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_from_url/doi.yml +0 -44
  195. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_from_url/doi_with_special_characters.yml +0 -44
  196. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_from_url/not_a_doi.yml +0 -44
  197. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_from_url/sandbox_url.yml +0 -44
  198. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_from_url/url.yml +0 -44
  199. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_registration_agency/crossref.yml +0 -88
  200. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_registration_agency/datacite.yml +0 -88
  201. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_registration_agency/jalc.yml +0 -88
  202. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_registration_agency/kisti.yml +0 -88
  203. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_registration_agency/medra.yml +0 -88
  204. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_registration_agency/not_a_valid_prefix.yml +0 -44
  205. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_registration_agency/not_found.yml +0 -88
  206. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_registration_agency/op.yml +0 -88
  207. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_resolver/doi.yml +0 -44
  208. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_resolver/doi_with_protocol.yml +0 -44
  209. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_resolver/dx_doi_org_url.yml +0 -44
  210. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_resolver/force_test_resolver.yml +0 -44
  211. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_resolver/https_url.yml +0 -44
  212. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_resolver/test_resolver.yml +0 -44
  213. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/doi_resolver/test_resolver_http.yml +0 -44
  214. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_by_ID/crossref.yml +0 -143
  215. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_by_ID/crossref_doi_not_url.yml +0 -143
  216. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_by_ID/datacite.yml +0 -143
  217. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_by_ID/datacite_doi_http.yml +0 -143
  218. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_by_ID/github.yml +0 -99
  219. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_by_ID/orcid.yml +0 -99
  220. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_by_ID/schema_org.yml +0 -99
  221. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_by_ID/unknown_DOI_registration_agency.yml +0 -143
  222. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_from_file/bibtex.yml +0 -99
  223. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_from_file/citeproc.yml +0 -99
  224. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_from_file/codemeta.yml +0 -99
  225. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_from_file/crosscite.yml +0 -99
  226. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_from_file/crossref.yml +0 -99
  227. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_from_file/datacite.yml +0 -99
  228. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_from_file/datacite_json.yml +0 -99
  229. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_from_file/ris.yml +0 -99
  230. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_from_file/schema_org.yml +0 -99
  231. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_from_format_from_string/crosscite.yml +0 -99
  232. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/from_schema_org/with_id.yml +0 -44
  233. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_codemeta_metadata/maremma.yml +0 -73
  234. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_codemeta_metadata/metadata_reports.yml +0 -94
  235. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/DOI_with_ORCID_ID.yml +0 -92
  236. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/DOI_with_SICI_DOI.yml +0 -91
  237. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/DOI_with_data_citation.yml +0 -95
  238. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/JaLC.yml +0 -126
  239. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/KISTI.yml +0 -147
  240. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/OP.yml +0 -89
  241. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/another_book.yml +0 -127
  242. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/another_book_chapter.yml +0 -89
  243. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/book.yml +0 -88
  244. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/book_chapter.yml +0 -159
  245. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/component.yml +0 -109
  246. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/dataset.yml +0 -119
  247. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/dataset_usda.yml +0 -129
  248. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/date_in_future.yml +0 -90
  249. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/error_unknown.yml +0 -88
  250. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/jj.yml +0 -87
  251. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/journal_article.yml +0 -89
  252. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/journal_article_original_language_title.yml +0 -87
  253. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/journal_article_with.yml +0 -93
  254. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/journal_article_with_funding.yml +0 -89
  255. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/journal_issue.yml +0 -116
  256. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/mEDRA.yml +0 -125
  257. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/markup.yml +0 -92
  258. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/missing_creator.yml +0 -89
  259. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/multiple_t.yml +0 -47
  260. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/multiple_titles.yml +0 -87
  261. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/not_found_error.yml +0 -86
  262. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/posted_content.yml +0 -88
  263. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/vor_with_url.yml +0 -91
  264. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/yet_another_book.yml +0 -87
  265. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_crossref_metadata/yet_another_book_chapter.yml +0 -88
  266. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/BlogPosting.yml +0 -99
  267. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/DOI_in_test_system.yml +0 -100
  268. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/DOI_in_test_system_schema_3.yml +0 -95
  269. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/DOI_in_with_related_id_system.yml +0 -110
  270. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/DOI_not_found.yml +0 -89
  271. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/Dataset.yml +0 -93
  272. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/Funding.yml +0 -93
  273. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/Funding_empty_awardTitle.yml +0 -93
  274. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/Funding_schema_version_4.yml +0 -93
  275. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/Referee_report_in_test_system.yml +0 -97
  276. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/author_only_full_name.yml +0 -93
  277. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/author_with_scheme.yml +0 -93
  278. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/author_with_wrong_orcid_scheme.yml +0 -93
  279. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/content_url.yml +0 -101
  280. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/date.yml +0 -106
  281. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/dissertation.yml +0 -93
  282. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/doi_with_sign.yml +0 -97
  283. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/empty_subject.yml +0 -95
  284. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/funding_schema_version_3.yml +0 -119
  285. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/is_identical_to.yml +0 -93
  286. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/keywords_with_attributes.yml +0 -108
  287. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/leading_and_trailing_whitespace.yml +0 -121
  288. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/multiple_author_names_in_one_creatorsName.yml +0 -102
  289. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/multiple_licenses.yml +0 -119
  290. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/series-information.yml +0 -93
  291. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/subject_scheme.yml +0 -93
  292. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/xs_string_attributes.yml +0 -93
  293. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_date/publication_date.yml +0 -44
  294. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_date_from_date_parts/date.yml +0 -44
  295. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_date_from_date_parts/year-month.yml +0 -44
  296. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_date_from_date_parts/year.yml +0 -44
  297. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_date_from_parts/date.yml +0 -44
  298. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_date_from_parts/year-month.yml +0 -44
  299. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_date_from_parts/year.yml +0 -44
  300. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_date_parts/date.yml +0 -44
  301. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_date_parts/year-month.yml +0 -44
  302. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_date_parts/year.yml +0 -44
  303. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/has_familyName.yml +0 -55
  304. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/has_name_in_Thai.yml +0 -49
  305. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/has_name_in_display-order.yml +0 -75
  306. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/has_name_in_display-order_with_ORCID.yml +0 -49
  307. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/has_name_in_sort-order.yml +0 -49
  308. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/hyper-authorship.yml +0 -1222
  309. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/is_organization.yml +0 -44
  310. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/multiple_author_names_in_one_field.yml +0 -58
  311. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/multiple_name_identifier.yml +0 -49
  312. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/name_with_affiliation.yml +0 -49
  313. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/name_with_affiliation_and_country.yml +0 -75
  314. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/name_with_role.yml +0 -49
  315. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_one_author/only_familyName_and_givenName.yml +0 -49
  316. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_schema_org_metadata/BlogPosting.yml +0 -111
  317. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_schema_org_metadata/BlogPosting_with_new_DOI.yml +0 -111
  318. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_schema_org_metadata/harvard_dataverse.yml +0 -37
  319. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_schema_org_metadata/harvard_dataverse_via_identifiers_org.yml +0 -156
  320. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_schema_org_metadata/ornl.yml +0 -704
  321. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_schema_org_metadata/pangaea.yml +0 -49
  322. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_schema_org_metadata/zenodo.yml +0 -580
  323. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_series_information/only_title.yml +0 -44
  324. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_series_information/title_and_pages.yml +0 -44
  325. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_series_information/title_volume_and_pages.yml +0 -44
  326. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_series_information/title_volume_issue_and_pages.yml +0 -44
  327. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/github/github_as_codemeta_url.yml +0 -44
  328. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/github/github_from_url.yml +0 -44
  329. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/github/github_from_url_file.yml +0 -44
  330. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/handle_input/DOI_RA_not_Crossref_or_DataCite.yml +0 -47
  331. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/handle_input/unknown_DOI_prefix.yml +0 -47
  332. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_alternate_identifiers/insert.yml +0 -49
  333. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_contributors/none.yml +0 -49
  334. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_creators/insert.yml +0 -49
  335. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_descriptions/insert.yml +0 -55
  336. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_identifier/doi.yml +0 -49
  337. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_person/creator_only_name.yml +0 -49
  338. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_publication_year/insert.yml +0 -49
  339. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_publisher/insert.yml +0 -49
  340. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_related_identifiers/insert.yml +0 -49
  341. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_related_identifiers/related_identifier.yml +0 -49
  342. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_resource_type/insert.yml +0 -49
  343. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_rights_list/insert.yml +0 -49
  344. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_subjects/insert.yml +0 -49
  345. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_titles/insert.yml +0 -49
  346. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_version/insert.yml +0 -49
  347. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/is_personal_name_/has_comma.yml +0 -44
  348. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/is_personal_name_/has_family_name.yml +0 -44
  349. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/is_personal_name_/has_id.yml +0 -44
  350. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/is_personal_name_/has_known_given_name.yml +0 -44
  351. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/is_personal_name_/has_no_info.yml +0 -44
  352. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/is_personal_name_/has_orcid_id.yml +0 -44
  353. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/is_personal_name_/has_type_organization.yml +0 -44
  354. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/jsonlint/missing_comma.yml +0 -99
  355. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/jsonlint/nil.yml +0 -99
  356. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/jsonlint/overlapping_keys.yml +0 -99
  357. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/jsonlint/valid.yml +0 -99
  358. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_doi/SICI_doi.yml +0 -44
  359. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_doi/doi.yml +0 -44
  360. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_doi/doi_force_datacite_sandbox.yml +0 -44
  361. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_doi/doi_from_datacite_sandbox.yml +0 -44
  362. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_doi/doi_from_url_without_doi_proxy.yml +0 -44
  363. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_doi/doi_prefix_too_long.yml +0 -44
  364. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_doi/doi_prefix_with_string.yml +0 -44
  365. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_doi/doi_with_protocol.yml +0 -44
  366. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_doi/dx_doi_org_url.yml +0 -44
  367. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_doi/https_url.yml +0 -44
  368. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_doi/not_valid_doi_prefix.yml +0 -44
  369. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_doi/url_with_one_slash.yml +0 -44
  370. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_id/doi.yml +0 -44
  371. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_id/doi_as_url.yml +0 -44
  372. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_id/ftp.yml +0 -44
  373. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_id/invalid_url.yml +0 -44
  374. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_id/sandbox_via_options.yml +0 -44
  375. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_id/sandbox_via_url.yml +0 -44
  376. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_id/string.yml +0 -44
  377. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_id/url.yml +0 -44
  378. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_id/url_with_utf-8.yml +0 -44
  379. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_ids/doi.yml +0 -44
  380. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_ids/url.yml +0 -44
  381. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_issn/from_array.yml +0 -44
  382. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_issn/from_empty_array.yml +0 -44
  383. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_issn/from_hash.yml +0 -44
  384. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_issn/from_string.yml +0 -44
  385. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_url/uri.yml +0 -44
  386. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_url/with_trailing_slash.yml +0 -44
  387. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/parse_attributes/array.yml +0 -44
  388. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/parse_attributes/array_of_strings.yml +0 -44
  389. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/parse_attributes/first.yml +0 -44
  390. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/parse_attributes/hash.yml +0 -44
  391. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/parse_attributes/nil.yml +0 -44
  392. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/parse_attributes/string.yml +0 -44
  393. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/sanitize/should_only_keep_specific_tags.yml +0 -44
  394. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/sanitize/should_remove_a_tags.yml +0 -44
  395. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/to_schema_org/with_id.yml +0 -44
  396. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/to_schema_org_identifiers/with_identifiers.yml +0 -44
  397. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_doi/doi.yml +0 -44
  398. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_funder_doi/funder_doi.yml +0 -44
  399. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_funder_doi/funder_doi_without_prefix.yml +0 -44
  400. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_funder_doi/non-funder_doi.yml +0 -44
  401. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_orcid/validate_orcid.yml +0 -44
  402. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_orcid/validate_orcid_https.yml +0 -44
  403. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_orcid/validate_orcid_id.yml +0 -44
  404. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_orcid/validate_orcid_with_spaces.yml +0 -44
  405. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_orcid/validate_orcid_wrong_id.yml +0 -44
  406. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_orcid/validate_orcid_www.yml +0 -44
  407. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_orcid_scheme/validate_orcid_scheme.yml +0 -44
  408. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_orcid_scheme/validate_orcid_scheme_https.yml +0 -44
  409. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_orcid_scheme/validate_orcid_scheme_trailing_slash.yml +0 -44
  410. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_orcid_scheme/validate_orcid_scheme_www.yml +0 -44
  411. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_prefix/doi.yml +0 -44
  412. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_prefix/doi_as_url.yml +0 -44
  413. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_prefix/doi_with_protocol.yml +0 -44
  414. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_prefix/only_prefix.yml +0 -44
  415. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_url/DOI.yml +0 -44
  416. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_url/ISSN.yml +0 -44
  417. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_url/URL.yml +0 -44
  418. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_url/string.yml +0 -44
  419. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_bibtex/BlogPosting.yml +0 -55
  420. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_bibtex/Dataset.yml +0 -49
  421. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_bibtex/authors_with_affiliations.yml +0 -75
  422. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_bibtex/climate_data.yml +0 -52
  423. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_bibtex/from_schema_org.yml +0 -111
  424. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_bibtex/keywords_subject_scheme.yml +0 -119
  425. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_bibtex/maremma.yml +0 -73
  426. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_bibtex/text.yml +0 -49
  427. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_bibtex/with_data_citation.yml +0 -51
  428. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_bibtex/with_pages.yml +0 -48
  429. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citation/Dataset.yml +0 -49
  430. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citation/Journal_article.yml +0 -51
  431. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citation/Missing_author.yml +0 -45
  432. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/BlogPosting.yml +0 -55
  433. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/BlogPosting_schema_org.yml +0 -109
  434. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/Dataset.yml +0 -49
  435. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/container_title.yml +0 -49
  436. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/journal_article.yml +0 -51
  437. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/keywords_subject_scheme.yml +0 -119
  438. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/maremma.yml +0 -73
  439. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/missing_creator.yml +0 -45
  440. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/multiple_abstracts.yml +0 -49
  441. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/software.yml +0 -49
  442. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/with_first_page.yml +0 -46
  443. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/with_only_first_page.yml +0 -46
  444. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_citeproc/with_pages.yml +0 -48
  445. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite.yml +0 -54
  446. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite_check_codemeta_v2.yml +0 -54
  447. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_crosscite/datacite_database_attributes.yml +0 -49
  448. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_crosscite/maremma.yml +0 -73
  449. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_crosscite/with_ORCID_ID.yml +0 -48
  450. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_crosscite/with_data_citation.yml +0 -51
  451. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_crosscite/with_data_citation_schema_org.yml +0 -111
  452. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_crossref/from_DataCite.yml +0 -49
  453. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_csv/climate_data.yml +0 -52
  454. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_csv/maremma.yml +0 -73
  455. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_csv/text.yml +0 -49
  456. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_csv/with_data_citation.yml +0 -51
  457. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_csv/with_pages.yml +0 -48
  458. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_json/maremma.yml +0 -73
  459. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_json/with_ORCID_ID.yml +0 -48
  460. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_json/with_data_citation.yml +0 -51
  461. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_json/with_data_citation_schema_org.yml +0 -111
  462. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_xml/DOI_not_found.yml +0 -45
  463. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_xml/Dataset_in_schema_4_0.yml +0 -49
  464. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_xml/Text_pass-thru.yml +0 -81
  465. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_xml/Text_pass-thru_with_doi_in_options.yml +0 -81
  466. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_xml/maremma.yml +0 -73
  467. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_xml/with_ORCID_ID.yml +0 -48
  468. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_xml/with_data_citation.yml +0 -51
  469. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_xml/with_data_citation_schema_org.yml +0 -111
  470. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_datacite_xml/with_editor.yml +0 -45
  471. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_jats_xml/Dataset_in_schema_4_0.yml +0 -49
  472. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_jats_xml/Text_pass-thru.yml +0 -81
  473. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_jats_xml/book_chapter.yml +0 -84
  474. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_jats_xml/maremma.yml +0 -73
  475. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_jats_xml/with_ORCID_ID.yml +0 -48
  476. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_jats_xml/with_data_citation.yml +0 -51
  477. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_jats_xml/with_data_citation_schema_org.yml +0 -111
  478. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_jats_xml/with_editor.yml +0 -45
  479. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_ris/BlogPosting.yml +0 -55
  480. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_ris/BlogPosting_schema_org.yml +0 -111
  481. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_ris/Dataset.yml +0 -49
  482. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_ris/alternate_name.yml +0 -49
  483. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_ris/journal_article.yml +0 -51
  484. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_ris/keywords_with_subject_scheme.yml +0 -119
  485. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_ris/maremma.yml +0 -73
  486. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_ris/with_pages.yml +0 -48
  487. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/Funding.yml +0 -49
  488. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/Funding_OpenAIRE.yml +0 -75
  489. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/Schema_org_JSON.yml +0 -75
  490. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/Schema_org_JSON_IsSupplementTo.yml +0 -49
  491. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/Schema_org_JSON_isReferencedBy.yml +0 -49
  492. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/alternate_identifiers.yml +0 -57
  493. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/data_catalog.yml +0 -62
  494. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/geo_location_box.yml +0 -98
  495. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/journal_article.yml +0 -51
  496. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/maremma_schema_org_JSON.yml +0 -73
  497. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/series_information.yml +0 -49
  498. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/subject_scheme.yml +0 -49
  499. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_schema_org/subject_scheme_multiple_keywords.yml +0 -119
  500. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/write_metadata_as_turtle/Dataset.yml +0 -49
  501. data/spec/fixtures/vivli.xml +0 -1
  502. data/spec/metadata_spec.rb +0 -165
  503. data/spec/readers/bibtex_reader_spec.rb +0 -59
  504. data/spec/readers/citeproc_reader_spec.rb +0 -61
  505. data/spec/readers/codemeta_reader_spec.rb +0 -117
  506. data/spec/readers/crosscite_reader_spec.rb +0 -41
  507. data/spec/readers/crossref_reader_spec.rb +0 -509
  508. data/spec/readers/datacite_json_reader_spec.rb +0 -61
  509. data/spec/readers/datacite_reader_spec.rb +0 -1041
  510. data/spec/readers/ris_reader_spec.rb +0 -73
  511. data/spec/readers/schema_org_reader_spec.rb +0 -325
  512. data/spec/spec_helper.rb +0 -94
  513. data/spec/utils_spec.rb +0 -417
  514. data/spec/writers/bibtex_writer_spec.rb +0 -163
  515. data/spec/writers/citation_writer_spec.rb +0 -35
  516. data/spec/writers/citeproc_writer_spec.rb +0 -223
  517. data/spec/writers/codemeta_writer_spec.rb +0 -46
  518. data/spec/writers/crosscite_writer_spec.rb +0 -118
  519. data/spec/writers/crossref_writer_spec.rb +0 -21
  520. data/spec/writers/csv_writer_spec.rb +0 -93
  521. data/spec/writers/datacite_json_writer_spec.rb +0 -86
  522. data/spec/writers/datacite_writer_spec.rb +0 -366
  523. data/spec/writers/jats_writer_spec.rb +0 -179
  524. data/spec/writers/rdf_xml_writer_spec.rb +0 -100
  525. data/spec/writers/ris_writer_spec.rb +0 -203
  526. data/spec/writers/schema_org_writer_spec.rb +0 -322
  527. data/spec/writers/turtle_writer_spec.rb +0 -84
@@ -2,7 +2,7 @@
2
2
  <!-- Revision history
3
3
  2010-08-26 Complete revision according to new common specification by the metadata work group after review. AJH, DTIC
4
4
  2010-11-17 Revised to current state of kernel review, FZ, TIB
5
- 2011-01-17 Complete revsion after community review. FZ, TIB
5
+ 2011-01-17 Complete revision after community review. FZ, TIB
6
6
  2011-03-17 Release of v2.1: added a namespace; mandatory properties got minLength; changes in the definitions of relationTypes IsDocumentedBy/Documents and isCompiledBy/Compiles; changes type of property "Date" from xs:date to xs:string. FZ, TIB
7
7
  2011-06-27 v2.2: namespace: kernel-2.2, additions to controlled lists "resourceType", "contributorType", "relatedIdentifierType", and "descriptionType". Removal of intermediate include-files.
8
8
  2013-07-24 v3.0: namespace: kernel-3.0; delete LastMetadataUpdate & MetadateVersionNumber; additions to controlled lists "contributorType", "dateType", "descriptionType", "relationType", "relatedIdentifierType" & "resourceType"; deletion of "StartDate" & "EndDate" from list "dateType" and "Film" from "resourceType"; allow arbitrary order of elements; allow optional wrapper elements to be empty; include xml:lang attribute for title, subject & description; include attribute schemeURI for nameIdentifier of creator, contributor & subject; added new attributes "relatedMetadataScheme", "schemeURI" & "schemeType" to relatedIdentifier; included new property "geoLocation"
@@ -11,18 +11,22 @@
11
11
  2017-10-23 v4.1: Addition of dateType value "Other", relationType values "Describes", "IsDescribedBy", "HasVersion", "IsVersionOf", "Requires", "IsRequiredBy", resourceType value "DataPaper", new subproperties "dateInformation", "inPolygonPoint", new attribute "nameType", optional attribute "resourceTypeGeneral" for relatedIdentifier
12
12
  2018-09-08 v4.1.1 Make schema 4.1 backwards compatible to 4.0 by allowing geolocation elements in any order
13
13
  2019-02-14 v4.2: Addition of dateType value "Withdrawn", relationType values "Obsoletes", "isObsoletedBy", addition of new subproperties for Rights: rightsIdentifier, rightsIdentifierScheme, schemeURI, addition of the XML language attribute to the properties Creator, Contributor and Publisher for organizational names, don't check format of DOI
14
- 2019-07-13 v4.3: Addition of new subproperties for Affiliation: "affiliationIdentifier", "affiliationIdentifierScheme", "schemeURI", addition of new sub-property for funderIdentifier: "schemeURI", addition of new funderIdentifierScheme: "ROR", added documentation for nameIdentifier -->
15
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://datacite.org/schema/kernel-4" targetNamespace="http://datacite.org/schema/kernel-4" elementFormDefault="qualified" xml:lang="EN">
16
- <xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="include/xml.xsd"/>
17
- <xs:include schemaLocation="include/datacite-titleType-v4.xsd"/>
18
- <xs:include schemaLocation="include/datacite-contributorType-v4.xsd"/>
19
- <xs:include schemaLocation="include/datacite-dateType-v4.xsd"/>
20
- <xs:include schemaLocation="include/datacite-resourceType-v4.xsd"/>
21
- <xs:include schemaLocation="include/datacite-relationType-v4.xsd"/>
22
- <xs:include schemaLocation="include/datacite-relatedIdentifierType-v4.xsd"/>
23
- <xs:include schemaLocation="include/datacite-funderIdentifierType-v4.xsd"/>
24
- <xs:include schemaLocation="include/datacite-descriptionType-v4.xsd"/>
25
- <xs:include schemaLocation="include/datacite-nameType-v4.xsd"/>
14
+ 2019-07-13 v4.3: Addition of new subproperties for Affiliation: "affiliationIdentifier", "affiliationIdentifierScheme", "schemeURI", addition of new sub-property for funderIdentifier: "schemeURI", addition of new funderIdentifierScheme: "ROR", added documentation for nameIdentifier
15
+ 2021-03-08 v4.4: Addition of new property relatedItem, relationType value "isPublishedIn", subject subproperty "classificationCode", controlled list "numberType", additional 13 properties for controlled list "resourceType"
16
+ 2024-01-22 v4.5: Addition of new subproperties for publisher: "publisherIdentifier", "publisherIdentifierScheme", and "schemeURI"; addition of new resourceTypeGeneral values "Instrument" and "StudyRegistration"; addition of new relationType values "Collects" and "IsCollectedBy".
17
+ 2024-12-31 v4.6: Addition of new resourceTypeGeneral values "Award" and "Project"; addiition of new relatedIdentifierType values "CSTR" and "RRID"; addition of new contributorType "Translator"; addition of new relationTypes "HasTranslation" and "IsTranslationOf"; addition of new dateType "Coverage".-->
18
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://datacite.org/schema/kernel-4" targetNamespace="http://datacite.org/schema/kernel-4" elementFormDefault="qualified" xml:lang="EN">
19
+ <xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="include/xml.xsd" />
20
+ <xs:include schemaLocation="include/datacite-titleType-v4.xsd" />
21
+ <xs:include schemaLocation="include/datacite-contributorType-v4.xsd" />
22
+ <xs:include schemaLocation="include/datacite-dateType-v4.xsd" />
23
+ <xs:include schemaLocation="include/datacite-resourceType-v4.xsd" />
24
+ <xs:include schemaLocation="include/datacite-relationType-v4.xsd" />
25
+ <xs:include schemaLocation="include/datacite-relatedIdentifierType-v4.xsd" />
26
+ <xs:include schemaLocation="include/datacite-funderIdentifierType-v4.xsd" />
27
+ <xs:include schemaLocation="include/datacite-descriptionType-v4.xsd" />
28
+ <xs:include schemaLocation="include/datacite-nameType-v4.xsd" />
29
+ <xs:include schemaLocation="include/datacite-numberType-v4.xsd" />
26
30
  <xs:element name="resource">
27
31
  <xs:annotation>
28
32
  <xs:documentation>
@@ -40,7 +44,7 @@
40
44
  <xs:complexType>
41
45
  <xs:simpleContent>
42
46
  <xs:extension base="nonemptycontentStringType">
43
- <xs:attribute name="identifierType" use="required"/>
47
+ <xs:attribute name="identifierType" use="required" />
44
48
  </xs:extension>
45
49
  </xs:simpleContent>
46
50
  </xs:complexType>
@@ -60,41 +64,16 @@
60
64
  <xs:complexType>
61
65
  <xs:simpleContent>
62
66
  <xs:extension base="xs:string">
63
- <xs:attribute name="nameType" type="nameType" use="optional"/>
64
- <xs:attribute ref="xml:lang"/>
65
- </xs:extension>
66
- </xs:simpleContent>
67
- </xs:complexType>
68
- </xs:element>
69
- <xs:element name="givenName" minOccurs="0"/>
70
- <xs:element name="familyName" minOccurs="0"/>
71
- <xs:element name="nameIdentifier" minOccurs="0" maxOccurs="unbounded">
72
- <xs:complexType>
73
- <xs:annotation>
74
- <xs:documentation>Uniquely identifies a creator or contributor, according to various identifier schemes.</xs:documentation>
75
- </xs:annotation>
76
- <xs:simpleContent>
77
- <xs:extension base="nonemptycontentStringType">
78
- <xs:attribute name="nameIdentifierScheme" use="required"/>
79
- <xs:attribute name="schemeURI" type="xs:anyURI" use="optional"/>
80
- </xs:extension>
81
- </xs:simpleContent>
82
- </xs:complexType>
83
- </xs:element>
84
- <xs:element name="affiliation" minOccurs="0" maxOccurs="unbounded">
85
- <xs:complexType>
86
- <xs:annotation>
87
- <xs:documentation>Uniquely identifies an affiliation, according to various identifier schemes.</xs:documentation>
88
- </xs:annotation>
89
- <xs:simpleContent>
90
- <xs:extension base="nonemptycontentStringType">
91
- <xs:attribute name="affiliationIdentifier" use="optional"/>
92
- <xs:attribute name="affiliationIdentifierScheme" use="optional"/>
93
- <xs:attribute name="schemeURI" type="xs:anyURI" use="optional"/>
67
+ <xs:attribute name="nameType" type="nameType" use="optional" />
68
+ <xs:attribute ref="xml:lang" />
94
69
  </xs:extension>
95
70
  </xs:simpleContent>
96
71
  </xs:complexType>
97
72
  </xs:element>
73
+ <xs:element name="givenName" minOccurs="0" />
74
+ <xs:element name="familyName" minOccurs="0" />
75
+ <xs:element name="nameIdentifier" xsi:type="nameIdentifier" minOccurs="0" maxOccurs="unbounded" />
76
+ <xs:element name="affiliation" xsi:type="affiliation" minOccurs="0" maxOccurs="unbounded" />
98
77
  </xs:sequence>
99
78
  </xs:complexType>
100
79
  </xs:element>
@@ -111,8 +90,8 @@
111
90
  <xs:complexType>
112
91
  <xs:simpleContent>
113
92
  <xs:extension base="xs:string">
114
- <xs:attribute name="titleType" type="titleType" use="optional"/>
115
- <xs:attribute ref="xml:lang"/>
93
+ <xs:attribute name="titleType" type="titleType" use="optional" />
94
+ <xs:attribute ref="xml:lang" />
116
95
  </xs:extension>
117
96
  </xs:simpleContent>
118
97
  </xs:complexType>
@@ -128,7 +107,10 @@
128
107
  <xs:complexType>
129
108
  <xs:simpleContent>
130
109
  <xs:extension base="nonemptycontentStringType">
131
- <xs:attribute ref="xml:lang"/>
110
+ <xs:attribute name="publisherIdentifier" type="xs:string" use="optional" />
111
+ <xs:attribute name="publisherIdentifierScheme" type="xs:string" use="optional" />
112
+ <xs:attribute name="schemeURI" type="xs:anyURI" use="optional" />
113
+ <xs:attribute ref="xml:lang" />
132
114
  </xs:extension>
133
115
  </xs:simpleContent>
134
116
  </xs:complexType>
@@ -140,7 +122,7 @@
140
122
  <xs:documentation>YYYY</xs:documentation>
141
123
  </xs:annotation>
142
124
  <xs:simpleType>
143
- <xs:restriction base="yearType"/>
125
+ <xs:restriction base="yearType" />
144
126
  </xs:simpleType>
145
127
  </xs:element>
146
128
  <xs:element name="resourceType">
@@ -151,7 +133,7 @@
151
133
  <xs:complexType>
152
134
  <xs:simpleContent>
153
135
  <xs:extension base="xs:string">
154
- <xs:attribute name="resourceTypeGeneral" type="resourceType" use="required"/>
136
+ <xs:attribute name="resourceTypeGeneral" type="resourceType" use="required" />
155
137
  </xs:extension>
156
138
  </xs:simpleContent>
157
139
  </xs:complexType>
@@ -161,19 +143,20 @@
161
143
  <xs:complexType>
162
144
  <xs:sequence>
163
145
  <xs:element name="subject" minOccurs="0" maxOccurs="unbounded">
164
- <xs:annotation>
165
- <xs:documentation>Subject, keywords, classification codes, or key phrases describing the resource.</xs:documentation>
166
- </xs:annotation>
167
- <xs:complexType>
168
- <xs:simpleContent>
169
- <xs:extension base="xs:string">
170
- <xs:attribute name="subjectScheme" use="optional"/>
171
- <xs:attribute name="schemeURI" type="xs:anyURI" use="optional"/>
172
- <xs:attribute name="valueURI" type="xs:anyURI" use="optional"/>
173
- <xs:attribute ref="xml:lang"/>
174
- </xs:extension>
175
- </xs:simpleContent>
176
- </xs:complexType>
146
+ <xs:annotation>
147
+ <xs:documentation>Subject, keywords, classification codes, or key phrases describing the resource.</xs:documentation>
148
+ </xs:annotation>
149
+ <xs:complexType>
150
+ <xs:simpleContent>
151
+ <xs:extension base="xs:string">
152
+ <xs:attribute name="subjectScheme" use="optional" />
153
+ <xs:attribute name="schemeURI" type="xs:anyURI" use="optional" />
154
+ <xs:attribute name="valueURI" type="xs:anyURI" use="optional" />
155
+ <xs:attribute name="classificationCode" type="xs:anyURI" use="optional" />
156
+ <xs:attribute ref="xml:lang" />
157
+ </xs:extension>
158
+ </xs:simpleContent>
159
+ </xs:complexType>
177
160
  </xs:element>
178
161
  </xs:sequence>
179
162
  </xs:complexType>
@@ -182,54 +165,29 @@
182
165
  <xs:complexType>
183
166
  <xs:sequence>
184
167
  <xs:element name="contributor" minOccurs="0" maxOccurs="unbounded">
185
- <xs:annotation>
186
- <xs:documentation>The institution or person responsible for collecting, creating, or otherwise contributing to the developement of the dataset.</xs:documentation>
187
- <xs:documentation>The personal name format should be: Family, Given.</xs:documentation>
188
- </xs:annotation>
189
- <xs:complexType>
190
- <xs:sequence>
191
- <xs:element name="contributorName">
192
- <xs:complexType>
193
- <xs:simpleContent>
194
- <xs:extension base="nonemptycontentStringType">
195
- <xs:attribute name="nameType" type="nameType" use="optional"/>
196
- <xs:attribute ref="xml:lang"/>
197
- </xs:extension>
198
- </xs:simpleContent>
199
- </xs:complexType>
200
- </xs:element>
201
- <xs:element name="givenName" minOccurs="0"/>
202
- <xs:element name="familyName" minOccurs="0"/>
203
- <xs:element name="nameIdentifier" minOccurs="0" maxOccurs="unbounded">
204
- <xs:complexType>
205
- <xs:annotation>
206
- <xs:documentation>Uniquely identifies a creator or contributor, according to various identifier schemes.</xs:documentation>
207
- </xs:annotation>
208
- <xs:simpleContent>
209
- <xs:extension base="nonemptycontentStringType">
210
- <xs:attribute name="nameIdentifierScheme" use="required"/>
211
- <xs:attribute name="schemeURI" type="xs:anyURI" use="optional"/>
212
- </xs:extension>
213
- </xs:simpleContent>
214
- </xs:complexType>
215
- </xs:element>
216
- <xs:element name="affiliation" minOccurs="0" maxOccurs="unbounded">
217
- <xs:complexType>
218
- <xs:annotation>
219
- <xs:documentation>Uniquely identifies an affiliation, according to various identifier schemes.</xs:documentation>
220
- </xs:annotation>
221
- <xs:simpleContent>
222
- <xs:extension base="nonemptycontentStringType">
223
- <xs:attribute name="affiliationIdentifier" use="optional"/>
224
- <xs:attribute name="affiliationIdentifierScheme" use="optional"/>
225
- <xs:attribute name="schemeURI" type="xs:anyURI" use="optional"/>
226
- </xs:extension>
227
- </xs:simpleContent>
228
- </xs:complexType>
229
- </xs:element>
230
- </xs:sequence>
231
- <xs:attribute name="contributorType" type="contributorType" use="required"/>
232
- </xs:complexType>
168
+ <xs:annotation>
169
+ <xs:documentation>The institution or person responsible for collecting, creating, or otherwise contributing to the development of the dataset.</xs:documentation>
170
+ <xs:documentation>The personal name format should be: Family, Given.</xs:documentation>
171
+ </xs:annotation>
172
+ <xs:complexType>
173
+ <xs:sequence>
174
+ <xs:element name="contributorName">
175
+ <xs:complexType>
176
+ <xs:simpleContent>
177
+ <xs:extension base="nonemptycontentStringType">
178
+ <xs:attribute name="nameType" type="nameType" use="optional" />
179
+ <xs:attribute ref="xml:lang" />
180
+ </xs:extension>
181
+ </xs:simpleContent>
182
+ </xs:complexType>
183
+ </xs:element>
184
+ <xs:element name="givenName" minOccurs="0" />
185
+ <xs:element name="familyName" minOccurs="0" />
186
+ <xs:element name="nameIdentifier" xsi:type="nameIdentifier" minOccurs="0" maxOccurs="unbounded" />
187
+ <xs:element name="affiliation" xsi:type="affiliation" minOccurs="0" maxOccurs="unbounded" />
188
+ </xs:sequence>
189
+ <xs:attribute name="contributorType" type="contributorType" use="required" />
190
+ </xs:complexType>
233
191
  </xs:element>
234
192
  </xs:sequence>
235
193
  </xs:complexType>
@@ -245,8 +203,8 @@
245
203
  <xs:complexType>
246
204
  <xs:simpleContent>
247
205
  <xs:extension base="xs:string">
248
- <xs:attribute name="dateType" type="dateType" use="required"/>
249
- <xs:attribute name="dateInformation" use="optional"/>
206
+ <xs:attribute name="dateType" type="dateType" use="required" />
207
+ <xs:attribute name="dateInformation" use="optional" />
250
208
  </xs:extension>
251
209
  </xs:simpleContent>
252
210
  </xs:complexType>
@@ -269,7 +227,7 @@
269
227
  <xs:complexType>
270
228
  <xs:simpleContent>
271
229
  <xs:extension base="xs:string">
272
- <xs:attribute name="alternateIdentifierType" use="required"/>
230
+ <xs:attribute name="alternateIdentifierType" use="required" />
273
231
  </xs:extension>
274
232
  </xs:simpleContent>
275
233
  </xs:complexType>
@@ -287,12 +245,12 @@
287
245
  <xs:complexType>
288
246
  <xs:simpleContent>
289
247
  <xs:extension base="xs:string">
290
- <xs:attribute name="resourceTypeGeneral" type="resourceType" use="optional"/>
291
- <xs:attribute name="relatedIdentifierType" type="relatedIdentifierType" use="required"/>
292
- <xs:attribute name="relationType" type="relationType" use="required"/>
293
- <xs:attribute name="relatedMetadataScheme" use="optional"/>
294
- <xs:attribute name="schemeURI" type="xs:anyURI" use="optional"/>
295
- <xs:attribute name="schemeType" use="optional"/>
248
+ <xs:attribute name="resourceTypeGeneral" type="resourceType" use="optional" />
249
+ <xs:attribute name="relatedIdentifierType" type="relatedIdentifierType" use="required" />
250
+ <xs:attribute name="relationType" type="relationType" use="required" />
251
+ <xs:attribute name="relatedMetadataScheme" use="optional" />
252
+ <xs:attribute name="schemeURI" type="xs:anyURI" use="optional" />
253
+ <xs:attribute name="schemeType" use="optional" />
296
254
  </xs:extension>
297
255
  </xs:simpleContent>
298
256
  </xs:complexType>
@@ -340,11 +298,11 @@ Use the complete title of a license and include version information if applicabl
340
298
  <xs:complexType>
341
299
  <xs:simpleContent>
342
300
  <xs:extension base="xs:string">
343
- <xs:attribute name="rightsURI" type="xs:anyURI" use="optional"/>
344
- <xs:attribute name="rightsIdentifier" use="optional"/>
345
- <xs:attribute name="rightsIdentifierScheme" use="optional"/>
346
- <xs:attribute name="schemeURI" type="xs:anyURI" use="optional"/>
347
- <xs:attribute ref="xml:lang"/>
301
+ <xs:attribute name="rightsURI" type="xs:anyURI" use="optional" />
302
+ <xs:attribute name="rightsIdentifier" use="optional" />
303
+ <xs:attribute name="rightsIdentifierScheme" use="optional" />
304
+ <xs:attribute name="schemeURI" type="xs:anyURI" use="optional" />
305
+ <xs:attribute ref="xml:lang" />
348
306
  </xs:extension>
349
307
  </xs:simpleContent>
350
308
  </xs:complexType>
@@ -362,11 +320,11 @@ Use the complete title of a license and include version information if applicabl
362
320
  <xs:complexType mixed="true">
363
321
  <xs:choice>
364
322
  <xs:element name="br" minOccurs="0" maxOccurs="unbounded">
365
- <xs:complexType/>
323
+ <xs:complexType />
366
324
  </xs:element>
367
325
  </xs:choice>
368
- <xs:attribute name="descriptionType" type="descriptionType" use="required"/>
369
- <xs:attribute ref="xml:lang"/>
326
+ <xs:attribute name="descriptionType" type="descriptionType" use="required" />
327
+ <xs:attribute ref="xml:lang" />
370
328
  </xs:complexType>
371
329
  </xs:element>
372
330
  </xs:sequence>
@@ -399,8 +357,8 @@ Use the complete title of a license and include version information if applicabl
399
357
  </xs:annotation>
400
358
  <xs:complexType>
401
359
  <xs:sequence>
402
- <xs:element name="polygonPoint" type="point" minOccurs="4" maxOccurs="unbounded"/>
403
- <xs:element name="inPolygonPoint" type="point" minOccurs="0" maxOccurs="1"/>
360
+ <xs:element name="polygonPoint" type="point" minOccurs="4" maxOccurs="unbounded" />
361
+ <xs:element name="inPolygonPoint" type="point" minOccurs="0" maxOccurs="1" />
404
362
  </xs:sequence>
405
363
  </xs:complexType>
406
364
  </xs:element>
@@ -424,7 +382,7 @@ Use the complete title of a license and include version information if applicabl
424
382
  <xs:documentation>Name of the funding provider.</xs:documentation>
425
383
  </xs:annotation>
426
384
  <xs:simpleType>
427
- <xs:restriction base="nonemptycontentStringType"/>
385
+ <xs:restriction base="nonemptycontentStringType" />
428
386
  </xs:simpleType>
429
387
  </xs:element>
430
388
  <xs:element name="funderIdentifier" minOccurs="0">
@@ -434,8 +392,8 @@ Use the complete title of a license and include version information if applicabl
434
392
  <xs:complexType>
435
393
  <xs:simpleContent>
436
394
  <xs:extension base="xs:string">
437
- <xs:attribute name="funderIdentifierType" type="funderIdentifierType" use="required"/>
438
- <xs:attribute name="schemeURI" type="xs:anyURI" use="optional"/>
395
+ <xs:attribute name="funderIdentifierType" type="funderIdentifierType" use="required" />
396
+ <xs:attribute name="schemeURI" type="xs:anyURI" use="optional" />
439
397
  </xs:extension>
440
398
  </xs:simpleContent>
441
399
  </xs:complexType>
@@ -447,7 +405,7 @@ Use the complete title of a license and include version information if applicabl
447
405
  <xs:complexType>
448
406
  <xs:simpleContent>
449
407
  <xs:extension base="xs:string">
450
- <xs:attribute name="awardURI" type="xs:anyURI" use="optional"/>
408
+ <xs:attribute name="awardURI" type="xs:anyURI" use="optional" />
451
409
  </xs:extension>
452
410
  </xs:simpleContent>
453
411
  </xs:complexType>
@@ -463,47 +421,292 @@ Use the complete title of a license and include version information if applicabl
463
421
  </xs:sequence>
464
422
  </xs:complexType>
465
423
  </xs:element>
424
+ <xs:element name="relatedItems" minOccurs="0">
425
+ <xs:complexType>
426
+ <xs:sequence>
427
+ <xs:element name="relatedItem" minOccurs="0" maxOccurs="unbounded">
428
+ <xs:annotation>
429
+ <xs:documentation>Information about a resource related to the one being registered e.g. a journal or book of which the article or chapter is part.</xs:documentation>
430
+ </xs:annotation>
431
+ <xs:complexType>
432
+ <xs:sequence>
433
+ <xs:element name="relatedItemIdentifier" minOccurs="0">
434
+ <xs:annotation>
435
+ <xs:documentation>The identifier for the related item.</xs:documentation>
436
+ </xs:annotation>
437
+ <xs:complexType>
438
+ <xs:simpleContent>
439
+ <xs:extension base="xs:string">
440
+ <xs:attribute name="relatedItemIdentifierType" type="relatedIdentifierType" use="optional">
441
+ <xs:annotation>
442
+ <xs:documentation>The type of the Identifier for the related item e.g. DOI.</xs:documentation>
443
+ </xs:annotation>
444
+ </xs:attribute>
445
+ <xs:attribute name="relatedMetadataScheme" use="optional">
446
+ <xs:annotation>
447
+ <xs:documentation>The name of the scheme.</xs:documentation>
448
+ </xs:annotation>
449
+ </xs:attribute>
450
+ <xs:attribute name="schemeURI" type="xs:anyURI" use="optional">
451
+ <xs:annotation>
452
+ <xs:documentation>The URI of the relatedMetadataScheme.</xs:documentation>
453
+ </xs:annotation>
454
+ </xs:attribute>
455
+ <xs:attribute name="schemeType" use="optional">
456
+ <xs:annotation>
457
+ <xs:documentation>The type of the relatedMetadataScheme, linked with the schemeURI.</xs:documentation>
458
+ </xs:annotation>
459
+ </xs:attribute>
460
+ </xs:extension>
461
+ </xs:simpleContent>
462
+ </xs:complexType>
463
+ </xs:element>
464
+ <xs:element name="creators" minOccurs="0">
465
+ <xs:complexType>
466
+ <xs:sequence>
467
+ <xs:element name="creator" minOccurs="0" maxOccurs="unbounded">
468
+ <xs:annotation>
469
+ <xs:documentation>The institution or person responsible for creating the
470
+ related resource. To supply multiple creators, repeat this property.
471
+ </xs:documentation>
472
+ </xs:annotation>
473
+ <xs:complexType>
474
+ <xs:sequence>
475
+ <xs:element name="creatorName">
476
+ <xs:complexType>
477
+ <xs:simpleContent>
478
+ <xs:extension base="xs:string">
479
+ <xs:attribute name="nameType" type="nameType" use="optional" />
480
+ <xs:attribute ref="xml:lang" />
481
+ </xs:extension>
482
+ </xs:simpleContent>
483
+ </xs:complexType>
484
+ </xs:element>
485
+ <xs:element name="givenName" minOccurs="0" />
486
+ <xs:element name="familyName" minOccurs="0" />
487
+ </xs:sequence>
488
+ </xs:complexType>
489
+ </xs:element>
490
+ </xs:sequence>
491
+ </xs:complexType>
492
+ </xs:element>
493
+ <xs:element name="titles" minOccurs="0">
494
+ <xs:complexType>
495
+ <xs:sequence>
496
+ <xs:element name="title" minOccurs="0" maxOccurs="unbounded">
497
+ <xs:annotation>
498
+ <xs:documentation>Title of the related item.</xs:documentation>
499
+ </xs:annotation>
500
+ <xs:complexType>
501
+ <xs:simpleContent>
502
+ <xs:extension base="xs:string">
503
+ <xs:attribute name="titleType" type="titleType" use="optional" />
504
+ <xs:attribute ref="xml:lang" />
505
+ </xs:extension>
506
+ </xs:simpleContent>
507
+ </xs:complexType>
508
+ </xs:element>
509
+ </xs:sequence>
510
+ </xs:complexType>
511
+ </xs:element>
512
+ <xs:element name="publicationYear" minOccurs="0">
513
+ <xs:annotation>
514
+ <xs:documentation>The year when the item was or will be made publicly available.</xs:documentation>
515
+ </xs:annotation>
516
+ <xs:simpleType>
517
+ <xs:restriction base="yearType" />
518
+ </xs:simpleType>
519
+ </xs:element>
520
+ <xs:element name="volume" minOccurs="0">
521
+ <xs:annotation>
522
+ <xs:documentation>Volume of the related item.</xs:documentation>
523
+ </xs:annotation>
524
+ </xs:element>
525
+ <xs:element name="issue" minOccurs="0">
526
+ <xs:annotation>
527
+ <xs:documentation>Issue number or name of the related item.</xs:documentation>
528
+ </xs:annotation>
529
+ </xs:element>
530
+ <xs:element name="number" minOccurs="0">
531
+ <xs:annotation>
532
+ <xs:documentation>Number of the related item e.g. report number of article number.</xs:documentation>
533
+ </xs:annotation>
534
+ <xs:complexType>
535
+ <xs:simpleContent>
536
+ <xs:extension base="xs:string">
537
+ <xs:attribute name="numberType" type="numberType" use="optional" />
538
+ </xs:extension>
539
+ </xs:simpleContent>
540
+ </xs:complexType>
541
+ </xs:element>
542
+ <xs:element name="firstPage" minOccurs="0">
543
+ <xs:annotation>
544
+ <xs:documentation>First page of the related item e.g. of the chapter, article, or conference paper.</xs:documentation>
545
+ </xs:annotation>
546
+ </xs:element>
547
+ <xs:element name="lastPage" minOccurs="0">
548
+ <xs:annotation>
549
+ <xs:documentation>Last page of the related item e.g. of the chapter, article, or conference paper.</xs:documentation>
550
+ </xs:annotation>
551
+ </xs:element>
552
+ <xs:element name="publisher" minOccurs="0">
553
+ <xs:annotation>
554
+ <xs:documentation>The name of the entity that holds, archives, publishes prints, distributes, releases, issues, or produces the resource. This property will be used to formulate the citation, so consider the prominence of the role.</xs:documentation>
555
+ </xs:annotation>
556
+ </xs:element>
557
+ <xs:element name="edition" minOccurs="0">
558
+ <xs:annotation>
559
+ <xs:documentation>Edition or version of the related item.</xs:documentation>
560
+ </xs:annotation>
561
+ </xs:element>
562
+ <xs:element name="contributors" minOccurs="0">
563
+ <xs:complexType>
564
+ <xs:sequence>
565
+ <xs:element name="contributor" minOccurs="0" maxOccurs="unbounded">
566
+ <xs:annotation>
567
+ <xs:documentation>The institution or person responsible for collecting,
568
+ managing, distributing, or otherwise contributing to the development of
569
+ the resource.</xs:documentation>
570
+ </xs:annotation>
571
+ <xs:complexType>
572
+ <xs:sequence>
573
+ <xs:element name="contributorName">
574
+ <xs:complexType>
575
+ <xs:simpleContent>
576
+ <xs:extension base="xs:string">
577
+ <xs:attribute name="nameType" type="nameType" use="optional" />
578
+ <xs:attribute ref="xml:lang" />
579
+ </xs:extension>
580
+ </xs:simpleContent>
581
+ </xs:complexType>
582
+ </xs:element>
583
+ <xs:element name="givenName" minOccurs="0" />
584
+ <xs:element name="familyName" minOccurs="0" />
585
+ </xs:sequence>
586
+ <xs:attribute name="contributorType" type="contributorType" use="required">
587
+ <xs:annotation>
588
+ <xs:documentation>The type of contributor of the resource.</xs:documentation>
589
+ </xs:annotation>
590
+ </xs:attribute>
591
+ </xs:complexType>
592
+ </xs:element>
593
+ </xs:sequence>
594
+ </xs:complexType>
595
+ </xs:element>
596
+ </xs:sequence>
597
+ <xs:attribute name="relatedItemType" type="resourceType" use="required">
598
+ <xs:annotation>
599
+ <xs:documentation>The type of the related item, e.g. journal article, book or chapter.</xs:documentation>
600
+ </xs:annotation>
601
+ </xs:attribute>
602
+ <xs:attribute name="relationType" type="relationType" use="required">
603
+ <xs:annotation>
604
+ <xs:documentation>Description of the relationship of the resource being registered (A) and the related resource (B).</xs:documentation>
605
+ </xs:annotation>
606
+ </xs:attribute>
607
+ </xs:complexType>
608
+ </xs:element>
609
+ </xs:sequence>
610
+ </xs:complexType>
611
+ </xs:element>
466
612
  </xs:all>
467
613
  </xs:complexType>
468
614
  </xs:element>
615
+
469
616
  <!-- TYPE DECLARATIONS -->
470
617
  <!-- defines value for mandatory fields -->
471
618
  <xs:simpleType name="nonemptycontentStringType">
472
619
  <xs:restriction base="xs:string">
473
- <xs:minLength value="1"/>
620
+ <xs:minLength value="1" />
621
+ </xs:restriction>
622
+ </xs:simpleType>
623
+ <!-- definition for nameIdentifier -->
624
+ <xs:complexType name="nameIdentifier">
625
+ <xs:annotation>
626
+ <xs:documentation>Uniquely identifies a creator or contributor, according to various identifier schemes.</xs:documentation>
627
+ </xs:annotation>
628
+ <xs:simpleContent>
629
+ <xs:extension base="nonemptycontentStringType">
630
+ <xs:attribute name="nameIdentifierScheme" type="xs:string" use="required" />
631
+ <xs:attribute name="schemeURI" type="xs:anyURI" use="optional" />
632
+ </xs:extension>
633
+ </xs:simpleContent>
634
+ </xs:complexType>
635
+ <!-- definition for EDTF dates, modified from PREMIS 2.0 -->
636
+ <xs:simpleType name="edtf">
637
+ <xs:restriction base="xs:string">
638
+ <!-- pattern for iso8601 dateTime -->
639
+ <xs:pattern value="(-)?[0-9]{4}(-[0-9]{2})?(-[0-9]{2})?(T([0-9]{2}:){2}[0-9]{2}Z)?" />
640
+
641
+ <!--
642
+ The following pattern is for year (yyyy) or year-month (yyyy-mm)
643
+ The last or last two digits of year may be '?' meaning "one year in that range but not sure which year", for example 19?? means some year from 1990 to 1999. Similarly month may be '??' so that 2004-?? "means some month in 2004". And the entire string may end with '?' or '~' for "uncertain" or "approximate".
644
+ Hyphen must separate year and month.
645
+ -->
646
+ <xs:pattern value="\d{2}(\d{2}|\?\?|\d(\d|\?))(-(\d{2}|\?\?))?~?\??" />
647
+ <!--
648
+ The following pattern is for yearMonthDay - yyyymmdd, where 'dd' may be '??' so '200412??' means "some day during the month of 12/2004".
649
+ The whole string may be followed by '?' or '~' to mean "questionable" or "approximate". Hyphens are not allowed for this pattern.
650
+ -->
651
+ <xs:pattern value="\d{6}(\d{2}|\?\?)~?\??" />
652
+ <!--
653
+
654
+ The following pattern is for date and time with T separator:'yyyymmddThhmmss'.
655
+ Hyphens in date and colons in time not allowed for this pattern.
656
+ -->
657
+ <xs:pattern value="\d{8}T\d{6}" />
658
+ <!--
659
+
660
+ The following pattern is for a date range. in years: 'yyyy/yyyy'; or year/month: yyyy-mm/yyyy-mm, or year/month/day: yyyy-mm-dd/yyyy-mm-dd. Beginning or end of range value may be 'unknown'. End of range value may be 'open'.
661
+ Hyphens mandatory when month is present.
662
+ -->
663
+ <xs:pattern value="((-)?(\d{4}(-\d{2})?(-\d{2})?)|unknown)/((-)?(\d{4}(-\d{2})?(-\d{2})?)|unknown|open)" />
474
664
  </xs:restriction>
475
665
  </xs:simpleType>
666
+ <!-- definition for affiliation -->
667
+ <xs:complexType name="affiliation">
668
+ <xs:annotation>
669
+ <xs:documentation>Uniquely identifies an affiliation, according to various identifier schemes.</xs:documentation>
670
+ </xs:annotation>
671
+ <xs:simpleContent>
672
+ <xs:extension base="nonemptycontentStringType">
673
+ <xs:attribute name="affiliationIdentifier" type="xs:string" use="optional" />
674
+ <xs:attribute name="affiliationIdentifierScheme" type="xs:string" use="optional" />
675
+ <xs:attribute name="schemeURI" type="xs:anyURI" use="optional" />
676
+ </xs:extension>
677
+ </xs:simpleContent>
678
+ </xs:complexType>
476
679
  <!-- defines the value for a year -->
477
680
  <xs:simpleType name="yearType">
478
681
  <xs:restriction base="xs:token">
479
- <xs:pattern value="[\d]{4}"/>
682
+ <xs:pattern value="[\d]{4}" />
480
683
  </xs:restriction>
481
684
  </xs:simpleType>
482
685
  <!-- definitions for geoLocation -->
483
686
  <xs:complexType name="point">
484
687
  <xs:all>
485
- <xs:element name="pointLongitude" type="longitudeType" minOccurs="1"/>
486
- <xs:element name="pointLatitude" type="latitudeType" minOccurs="1"/>
688
+ <xs:element name="pointLongitude" type="longitudeType" minOccurs="1" />
689
+ <xs:element name="pointLatitude" type="latitudeType" minOccurs="1" />
487
690
  </xs:all>
488
691
  </xs:complexType>
489
692
  <xs:complexType name="box">
490
693
  <xs:all>
491
- <xs:element name="westBoundLongitude" type="longitudeType" minOccurs="1"/>
492
- <xs:element name="eastBoundLongitude" type="longitudeType" minOccurs="1"/>
493
- <xs:element name="southBoundLatitude" type="latitudeType" minOccurs="1"/>
494
- <xs:element name="northBoundLatitude" type="latitudeType" minOccurs="1"/>
694
+ <xs:element name="westBoundLongitude" type="longitudeType" minOccurs="1" />
695
+ <xs:element name="eastBoundLongitude" type="longitudeType" minOccurs="1" />
696
+ <xs:element name="southBoundLatitude" type="latitudeType" minOccurs="1" />
697
+ <xs:element name="northBoundLatitude" type="latitudeType" minOccurs="1" />
495
698
  </xs:all>
496
699
  </xs:complexType>
497
700
  <xs:simpleType name="longitudeType">
498
701
  <xs:restriction base="xs:float">
499
- <xs:minInclusive value="-180"/>
500
- <xs:maxInclusive value="180"/>
702
+ <xs:minInclusive value="-180" />
703
+ <xs:maxInclusive value="180" />
501
704
  </xs:restriction>
502
705
  </xs:simpleType>
503
706
  <xs:simpleType name="latitudeType">
504
707
  <xs:restriction base="xs:float">
505
- <xs:minInclusive value="-90"/>
506
- <xs:maxInclusive value="90"/>
708
+ <xs:minInclusive value="-90" />
709
+ <xs:maxInclusive value="90" />
507
710
  </xs:restriction>
508
711
  </xs:simpleType>
509
712
  </xs:schema>