briard 2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (730) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/build.yml +37 -0
  3. data/.github/workflows/changelog.yml +37 -0
  4. data/.github/workflows/release.yml +47 -0
  5. data/.gitignore +59 -0
  6. data/.rubocop.yml +658 -0
  7. data/CHANGELOG.md +1 -0
  8. data/CITATION +16 -0
  9. data/Gemfile +3 -0
  10. data/Gemfile.lock +226 -0
  11. data/LICENSE.md +21 -0
  12. data/README.md +1030 -0
  13. data/Rakefile +13 -0
  14. data/bin/briard +9 -0
  15. data/bolognese.gemspec +59 -0
  16. data/lib/briard/.env.example +3 -0
  17. data/lib/briard/array.rb +13 -0
  18. data/lib/briard/author_utils.rb +166 -0
  19. data/lib/briard/cli.rb +58 -0
  20. data/lib/briard/crossref_utils.rb +336 -0
  21. data/lib/briard/datacite_utils.rb +395 -0
  22. data/lib/briard/doi_utils.rb +65 -0
  23. data/lib/briard/metadata.rb +285 -0
  24. data/lib/briard/metadata_utils.rb +215 -0
  25. data/lib/briard/pubmed.rb +36 -0
  26. data/lib/briard/readers/bibtex_reader.rb +100 -0
  27. data/lib/briard/readers/citeproc_reader.rb +119 -0
  28. data/lib/briard/readers/codemeta_reader.rb +108 -0
  29. data/lib/briard/readers/crosscite_reader.rb +14 -0
  30. data/lib/briard/readers/crossref_reader.rb +368 -0
  31. data/lib/briard/readers/datacite_json_reader.rb +14 -0
  32. data/lib/briard/readers/datacite_reader.rb +341 -0
  33. data/lib/briard/readers/npm_reader.rb +115 -0
  34. data/lib/briard/readers/ris_reader.rb +114 -0
  35. data/lib/briard/readers/schema_org_reader.rb +263 -0
  36. data/lib/briard/string.rb +7 -0
  37. data/lib/briard/utils.rb +1369 -0
  38. data/lib/briard/version.rb +3 -0
  39. data/lib/briard/whitelist_scrubber.rb +47 -0
  40. data/lib/briard/writers/bibtex_writer.rb +32 -0
  41. data/lib/briard/writers/citation_writer.rb +14 -0
  42. data/lib/briard/writers/citeproc_writer.rb +11 -0
  43. data/lib/briard/writers/codemeta_writer.rb +29 -0
  44. data/lib/briard/writers/crosscite_writer.rb +11 -0
  45. data/lib/briard/writers/crossref_writer.rb +11 -0
  46. data/lib/briard/writers/csv_writer.rb +26 -0
  47. data/lib/briard/writers/datacite_json_writer.rb +11 -0
  48. data/lib/briard/writers/datacite_writer.rb +12 -0
  49. data/lib/briard/writers/jats_writer.rb +134 -0
  50. data/lib/briard/writers/rdf_xml_writer.rb +11 -0
  51. data/lib/briard/writers/ris_writer.rb +29 -0
  52. data/lib/briard/writers/schema_org_writer.rb +51 -0
  53. data/lib/briard/writers/turtle_writer.rb +11 -0
  54. data/lib/briard.rb +31 -0
  55. data/resources/2008/09/xsd.xsl +997 -0
  56. data/resources/crossref/AccessIndicators.xsd +47 -0
  57. data/resources/crossref/JATS-journalpublishing1-3d2-mathml3-elements.xsd +10130 -0
  58. data/resources/crossref/JATS-journalpublishing1-3d2-mathml3.xsd +48 -0
  59. data/resources/crossref/JATS-journalpublishing1-elements.xsd +8705 -0
  60. data/resources/crossref/JATS-journalpublishing1-mathml3-elements.xsd +8608 -0
  61. data/resources/crossref/JATS-journalpublishing1-mathml3.xsd +49 -0
  62. data/resources/crossref/JATS-journalpublishing1.xsd +6176 -0
  63. data/resources/crossref/clinicaltrials.xsd +61 -0
  64. data/resources/crossref/common5.3.1.xsd +1530 -0
  65. data/resources/crossref/crossref5.3.1.xsd +1949 -0
  66. data/resources/crossref/crossref_query_output3.0.xsd +1097 -0
  67. data/resources/crossref/fundref.xsd +49 -0
  68. data/resources/crossref/module-ali.xsd +39 -0
  69. data/resources/crossref/relations.xsd +444 -0
  70. data/resources/datacite-contributorType-v4.xsd +35 -0
  71. data/resources/datacite-dateType-v4.xsd +25 -0
  72. data/resources/datacite-descriptionType-v4.xsd +19 -0
  73. data/resources/datacite-funderIdentifierType-v4.xsd +15 -0
  74. data/resources/datacite-nameType-v4.xsd +10 -0
  75. data/resources/datacite-relatedIdentifierType-v4.xsd +34 -0
  76. data/resources/datacite-relationType-v4.xsd +49 -0
  77. data/resources/datacite-resourceType-v4.xsd +28 -0
  78. data/resources/datacite-titleType-v4.xsd +14 -0
  79. data/resources/kernel-2.1/include/datacite-contributorType-v1.1.xsd +22 -0
  80. data/resources/kernel-2.1/include/datacite-contributorType-v2.xsd +3 -0
  81. data/resources/kernel-2.1/include/datacite-dateType-v1.1.xsd +31 -0
  82. data/resources/kernel-2.1/include/datacite-dateType-v2.xsd +3 -0
  83. data/resources/kernel-2.1/include/datacite-descriptionType-v1.1.xsd +14 -0
  84. data/resources/kernel-2.1/include/datacite-descriptionType-v2.xsd +3 -0
  85. data/resources/kernel-2.1/include/datacite-relatedIdentifierType-v1.1.xsd +24 -0
  86. data/resources/kernel-2.1/include/datacite-relatedIdentifierType-v2.xsd +3 -0
  87. data/resources/kernel-2.1/include/datacite-relationType-v1.1.xsd +29 -0
  88. data/resources/kernel-2.1/include/datacite-relationType-v2.xsd +3 -0
  89. data/resources/kernel-2.1/include/datacite-resourceType-v1.1.xsd +22 -0
  90. data/resources/kernel-2.1/include/datacite-resourceType-v2.xsd +3 -0
  91. data/resources/kernel-2.1/include/datacite-titleType-v1.1.xsd +11 -0
  92. data/resources/kernel-2.1/include/datacite-titleType-v2.xsd +3 -0
  93. data/resources/kernel-2.1/metadata.xsd +315 -0
  94. data/resources/kernel-2.2/include/datacite-contributorType-v2.xsd +29 -0
  95. data/resources/kernel-2.2/include/datacite-dateType-v2.xsd +21 -0
  96. data/resources/kernel-2.2/include/datacite-descriptionType-v2.xsd +15 -0
  97. data/resources/kernel-2.2/include/datacite-relatedIdentifierType-v2.xsd +25 -0
  98. data/resources/kernel-2.2/include/datacite-relationType-v2.xsd +29 -0
  99. data/resources/kernel-2.2/include/datacite-resourceType-v2.xsd +23 -0
  100. data/resources/kernel-2.2/include/datacite-titleType-v2.xsd +10 -0
  101. data/resources/kernel-2.2/metadata.xsd +316 -0
  102. data/resources/kernel-3/include/datacite-contributorType-v3.1.xsd +35 -0
  103. data/resources/kernel-3/include/datacite-dateType-v3.xsd +21 -0
  104. data/resources/kernel-3/include/datacite-descriptionType-v3.xsd +17 -0
  105. data/resources/kernel-3/include/datacite-relatedIdentifierType-v3.1.xsd +30 -0
  106. data/resources/kernel-3/include/datacite-relationType-v3.1.xsd +38 -0
  107. data/resources/kernel-3/include/datacite-resourceType-v3.xsd +26 -0
  108. data/resources/kernel-3/include/datacite-titleType-v3.xsd +12 -0
  109. data/resources/kernel-3/include/xml.xsd +286 -0
  110. data/resources/kernel-3/metadata.xsd +380 -0
  111. data/resources/kernel-3.0/include/datacite-contributorType-v3.xsd +33 -0
  112. data/resources/kernel-3.0/include/datacite-dateType-v3.xsd +21 -0
  113. data/resources/kernel-3.0/include/datacite-descriptionType-v3.xsd +17 -0
  114. data/resources/kernel-3.0/include/datacite-relatedIdentifierType-v3.xsd +27 -0
  115. data/resources/kernel-3.0/include/datacite-relationType-v3.xsd +33 -0
  116. data/resources/kernel-3.0/include/datacite-resourceType-v3.xsd +26 -0
  117. data/resources/kernel-3.0/include/datacite-titleType-v3.xsd +12 -0
  118. data/resources/kernel-3.0/include/xml.xsd +286 -0
  119. data/resources/kernel-3.0/metadata.xsd +377 -0
  120. data/resources/kernel-3.1/include/datacite-contributorType-v3.1.xsd +35 -0
  121. data/resources/kernel-3.1/include/datacite-dateType-v3.xsd +21 -0
  122. data/resources/kernel-3.1/include/datacite-descriptionType-v3.xsd +17 -0
  123. data/resources/kernel-3.1/include/datacite-relatedIdentifierType-v3.1.xsd +30 -0
  124. data/resources/kernel-3.1/include/datacite-relationType-v3.1.xsd +38 -0
  125. data/resources/kernel-3.1/include/datacite-resourceType-v3.xsd +26 -0
  126. data/resources/kernel-3.1/include/datacite-titleType-v3.xsd +12 -0
  127. data/resources/kernel-3.1/include/xml.xsd +286 -0
  128. data/resources/kernel-3.1/metadata.xsd +380 -0
  129. data/resources/kernel-4/include/datacite-contributorType-v4.xsd +35 -0
  130. data/resources/kernel-4/include/datacite-dateType-v4.xsd +25 -0
  131. data/resources/kernel-4/include/datacite-descriptionType-v4.xsd +19 -0
  132. data/resources/kernel-4/include/datacite-funderIdentifierType-v4.xsd +16 -0
  133. data/resources/kernel-4/include/datacite-nameType-v4.xsd +10 -0
  134. data/resources/kernel-4/include/datacite-numberType-v4.xsd +12 -0
  135. data/resources/kernel-4/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  136. data/resources/kernel-4/include/datacite-relationType-v4.xsd +51 -0
  137. data/resources/kernel-4/include/datacite-resourceType-v4.xsd +43 -0
  138. data/resources/kernel-4/include/datacite-titleType-v4.xsd +14 -0
  139. data/resources/kernel-4/include/xml.xsd +286 -0
  140. data/resources/kernel-4/metadata.xsd +707 -0
  141. data/resources/kernel-4.0/include/datacite-contributorType-v4.xsd +35 -0
  142. data/resources/kernel-4.0/include/datacite-dateType-v4.xsd +21 -0
  143. data/resources/kernel-4.0/include/datacite-descriptionType-v4.xsd +19 -0
  144. data/resources/kernel-4.0/include/datacite-funderIdentifierType-v4.xsd +15 -0
  145. data/resources/kernel-4.0/include/datacite-relatedIdentifierType-v4.xsd +32 -0
  146. data/resources/kernel-4.0/include/datacite-relationType-v4.xsd +39 -0
  147. data/resources/kernel-4.0/include/datacite-resourceType-v4.xsd +26 -0
  148. data/resources/kernel-4.0/include/datacite-titleType-v4.xsd +14 -0
  149. data/resources/kernel-4.0/include/xml.xsd +286 -0
  150. data/resources/kernel-4.0/metadata.xsd +470 -0
  151. data/resources/kernel-4.1/include/datacite-contributorType-v4.xsd +35 -0
  152. data/resources/kernel-4.1/include/datacite-dateType-v4.1.xsd +23 -0
  153. data/resources/kernel-4.1/include/datacite-descriptionType-v4.xsd +19 -0
  154. data/resources/kernel-4.1/include/datacite-funderIdentifierType-v4.xsd +15 -0
  155. data/resources/kernel-4.1/include/datacite-nameType-v4.1.xsd +10 -0
  156. data/resources/kernel-4.1/include/datacite-relatedIdentifierType-v4.xsd +32 -0
  157. data/resources/kernel-4.1/include/datacite-relationType-v4.1.xsd +46 -0
  158. data/resources/kernel-4.1/include/datacite-resourceType-v4.1.xsd +28 -0
  159. data/resources/kernel-4.1/include/datacite-titleType-v4.xsd +14 -0
  160. data/resources/kernel-4.1/include/xml.xsd +286 -0
  161. data/resources/kernel-4.1/metadata.xsd +483 -0
  162. data/resources/kernel-4.2/include/datacite-contributorType-v4.xsd +35 -0
  163. data/resources/kernel-4.2/include/datacite-dateType-v4.xsd +25 -0
  164. data/resources/kernel-4.2/include/datacite-descriptionType-v4.xsd +19 -0
  165. data/resources/kernel-4.2/include/datacite-funderIdentifierType-v4.xsd +15 -0
  166. data/resources/kernel-4.2/include/datacite-nameType-v4.xsd +10 -0
  167. data/resources/kernel-4.2/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  168. data/resources/kernel-4.2/include/datacite-relationType-v4.xsd +49 -0
  169. data/resources/kernel-4.2/include/datacite-resourceType-v4.xsd +28 -0
  170. data/resources/kernel-4.2/include/datacite-titleType-v4.xsd +14 -0
  171. data/resources/kernel-4.2/include/xml.xsd +286 -0
  172. data/resources/kernel-4.2/metadata.xsd +479 -0
  173. data/resources/kernel-4.3/include/datacite-contributorType-v4.xsd +35 -0
  174. data/resources/kernel-4.3/include/datacite-dateType-v4.xsd +25 -0
  175. data/resources/kernel-4.3/include/datacite-descriptionType-v4.xsd +19 -0
  176. data/resources/kernel-4.3/include/datacite-funderIdentifierType-v4.xsd +16 -0
  177. data/resources/kernel-4.3/include/datacite-nameType-v4.xsd +10 -0
  178. data/resources/kernel-4.3/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  179. data/resources/kernel-4.3/include/datacite-relationType-v4.xsd +49 -0
  180. data/resources/kernel-4.3/include/datacite-resourceType-v4.xsd +28 -0
  181. data/resources/kernel-4.3/include/datacite-titleType-v4.xsd +14 -0
  182. data/resources/kernel-4.3/include/xml.xsd +286 -0
  183. data/resources/kernel-4.3/metadata.xsd +515 -0
  184. data/resources/kernel-4.4/include/datacite-contributorType-v4.xsd +35 -0
  185. data/resources/kernel-4.4/include/datacite-dateType-v4.xsd +25 -0
  186. data/resources/kernel-4.4/include/datacite-descriptionType-v4.xsd +19 -0
  187. data/resources/kernel-4.4/include/datacite-funderIdentifierType-v4.xsd +16 -0
  188. data/resources/kernel-4.4/include/datacite-nameType-v4.xsd +10 -0
  189. data/resources/kernel-4.4/include/datacite-numberType-v4.xsd +12 -0
  190. data/resources/kernel-4.4/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  191. data/resources/kernel-4.4/include/datacite-relationType-v4.xsd +51 -0
  192. data/resources/kernel-4.4/include/datacite-resourceType-v4.xsd +43 -0
  193. data/resources/kernel-4.4/include/datacite-titleType-v4.xsd +14 -0
  194. data/resources/kernel-4.4/include/xml.xsd +286 -0
  195. data/resources/kernel-4.4/metadata.xsd +707 -0
  196. data/resources/oecd/dfg-mappings.json +1866 -0
  197. data/resources/oecd/for-mappings.json +1099 -0
  198. data/resources/oecd/fos-mappings.json +198 -0
  199. data/resources/schema_org/jsonldcontext.json +7477 -0
  200. data/resources/spdx/licenses.json +5297 -0
  201. data/resources/xml.xsd +286 -0
  202. data/spec/array_spec.rb +22 -0
  203. data/spec/author_utils_spec.rb +193 -0
  204. data/spec/cli_spec.rb +226 -0
  205. data/spec/datacite_utils_spec.rb +178 -0
  206. data/spec/doi_utils_spec.rb +314 -0
  207. data/spec/find_from_format_spec.rb +114 -0
  208. data/spec/fixtures/aida.json +82 -0
  209. data/spec/fixtures/cgimp_package.json +18 -0
  210. data/spec/fixtures/cit_package.json +19 -0
  211. data/spec/fixtures/citeproc-no-author.json +26 -0
  212. data/spec/fixtures/citeproc-no-categories.json +21 -0
  213. data/spec/fixtures/citeproc.json +30 -0
  214. data/spec/fixtures/codemeta.json +86 -0
  215. data/spec/fixtures/codemeta_v2.json +86 -0
  216. data/spec/fixtures/crosscite.json +63 -0
  217. data/spec/fixtures/crossref.bib +14 -0
  218. data/spec/fixtures/crossref.ris +15 -0
  219. data/spec/fixtures/crossref.xml +606 -0
  220. data/spec/fixtures/datacite-empty-sizes.xml +57 -0
  221. data/spec/fixtures/datacite-example-affiliation.xml +114 -0
  222. data/spec/fixtures/datacite-example-ancientdates-v4.3.xml +29 -0
  223. data/spec/fixtures/datacite-example-complicated-tba.xml +56 -0
  224. data/spec/fixtures/datacite-example-complicated-v3.0.xml +48 -0
  225. data/spec/fixtures/datacite-example-complicated-v4.0.xml +54 -0
  226. data/spec/fixtures/datacite-example-complicated-v4.1.xml +57 -0
  227. data/spec/fixtures/datacite-example-dissertation-v4.4.xml +56 -0
  228. data/spec/fixtures/datacite-example-escaped-text.xml +56 -0
  229. data/spec/fixtures/datacite-example-full-v4.4.xml +114 -0
  230. data/spec/fixtures/datacite-example-geolocation-2.xml +141 -0
  231. data/spec/fixtures/datacite-example-geolocation.xml +66 -0
  232. data/spec/fixtures/datacite-example-polygon-v4.1.xml +163 -0
  233. data/spec/fixtures/datacite-example-relateditems.xml +61 -0
  234. data/spec/fixtures/datacite-example-xs-string.xml +28 -0
  235. data/spec/fixtures/datacite-formats-with-xs.xml +22 -0
  236. data/spec/fixtures/datacite-funderIdentifier.xml +78 -0
  237. data/spec/fixtures/datacite-geolocation-empty.xml +159 -0
  238. data/spec/fixtures/datacite-geolocationpolygons-multiple.xml +76 -0
  239. data/spec/fixtures/datacite-metadata-sample-complicated-v2.2.xml +52 -0
  240. data/spec/fixtures/datacite-multiple-language.xml +38 -0
  241. data/spec/fixtures/datacite-multiple-rights.xml +59 -0
  242. data/spec/fixtures/datacite-schema-2.2.xml +80 -0
  243. data/spec/fixtures/datacite-seriesinformation.xml +41 -0
  244. data/spec/fixtures/datacite-space-in-sizes.xml +52 -0
  245. data/spec/fixtures/datacite-xml-lang.xml +51 -0
  246. data/spec/fixtures/datacite.json +83 -0
  247. data/spec/fixtures/datacite.xml +40 -0
  248. data/spec/fixtures/datacite_dataset.xml +58 -0
  249. data/spec/fixtures/datacite_malformed_creator.xml +52 -0
  250. data/spec/fixtures/datacite_missing_creator.xml +33 -0
  251. data/spec/fixtures/datacite_schema_3.xml +58 -0
  252. data/spec/fixtures/datacite_software.json +21 -0
  253. data/spec/fixtures/datacite_software_missing_comma.json +18 -0
  254. data/spec/fixtures/datacite_software_overlapping_keys.json +18 -0
  255. data/spec/fixtures/datacite_software_version.json +74 -0
  256. data/spec/fixtures/edam_package.json +12 -0
  257. data/spec/fixtures/funding_reference.xml +53 -0
  258. data/spec/fixtures/gtex.xml +71 -0
  259. data/spec/fixtures/maremma/codemeta.json +36 -0
  260. data/spec/fixtures/nist.xml +35 -0
  261. data/spec/fixtures/ns0.xml +2 -0
  262. data/spec/fixtures/pure.bib +14 -0
  263. data/spec/fixtures/pure.ris +15 -0
  264. data/spec/fixtures/pure.xml +188 -0
  265. data/spec/fixtures/ris_bug.ris +9 -0
  266. data/spec/fixtures/schema_4.0.xml +140 -0
  267. data/spec/fixtures/schema_org.json +49 -0
  268. data/spec/fixtures/schema_org_front-matter.json +32 -0
  269. data/spec/fixtures/schema_org_geolocation.json +82 -0
  270. data/spec/fixtures/schema_org_geoshape.json +550 -0
  271. data/spec/fixtures/schema_org_gtex.json +75 -0
  272. data/spec/fixtures/schema_org_list.json +12623 -0
  273. data/spec/fixtures/schema_org_tdl_iodp_invalid_authors.json +25 -0
  274. data/spec/fixtures/schema_org_topmed.json +53 -0
  275. data/spec/fixtures/schema_org_type_as_array.json +41 -0
  276. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/default.yml +121 -0
  277. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_bibtex.yml +121 -0
  278. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_citation.yml +121 -0
  279. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_crossref.yml +121 -0
  280. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_datacite.yml +121 -0
  281. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_jats.yml +121 -0
  282. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_schema_org.yml +121 -0
  283. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/default.yml +110 -0
  284. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_bibtex.yml +110 -0
  285. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_citation.yml +110 -0
  286. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_datacite.yml +110 -0
  287. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_datacite_json.yml +110 -0
  288. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_jats.yml +110 -0
  289. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_schema_org.yml +110 -0
  290. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/default.yml +117 -0
  291. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/to_datacite.yml +117 -0
  292. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/to_schema_org.yml +117 -0
  293. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/crossref.yml +52 -0
  294. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/datacite.yml +52 -0
  295. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/jalc.yml +52 -0
  296. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/kisti.yml +52 -0
  297. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/medra.yml +52 -0
  298. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/op.yml +52 -0
  299. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/author.yml +65 -0
  300. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/no_author.yml +65 -0
  301. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/single_author.yml +65 -0
  302. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/with_organization.yml +65 -0
  303. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_datacite_metadata/change_state.yml +110 -0
  304. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_datacite_metadata/change_title.yml +110 -0
  305. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/change_description.yml +72 -0
  306. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/change_identifiers.yml +72 -0
  307. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/change_license.yml +72 -0
  308. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/change_license_name.yml +72 -0
  309. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/change_license_url.yml +72 -0
  310. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/change_state.yml +72 -0
  311. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/validates_against_schema.yml +72 -0
  312. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml +72 -0
  313. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_api_url/doi.yml +65 -0
  314. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_api_url/doi_with_protocol.yml +65 -0
  315. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_api_url/dx_doi_org_url.yml +65 -0
  316. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_api_url/force_test_resolver.yml +65 -0
  317. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_api_url/https_url.yml +65 -0
  318. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_api_url/test_resolver.yml +65 -0
  319. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_api_url/test_resolver_http.yml +65 -0
  320. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_from_url/doi.yml +65 -0
  321. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_from_url/doi_with_special_characters.yml +65 -0
  322. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_from_url/not_a_doi.yml +65 -0
  323. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_from_url/sandbox_url.yml +65 -0
  324. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_from_url/url.yml +65 -0
  325. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/crossref.yml +114 -0
  326. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/datacite.yml +114 -0
  327. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/jalc.yml +114 -0
  328. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/kisti.yml +114 -0
  329. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/medra.yml +114 -0
  330. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/not_a_valid_prefix.yml +65 -0
  331. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/not_found.yml +114 -0
  332. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/op.yml +114 -0
  333. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_resolver/doi.yml +65 -0
  334. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_resolver/doi_with_protocol.yml +65 -0
  335. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_resolver/dx_doi_org_url.yml +65 -0
  336. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_resolver/force_stage_resolver.yml +65 -0
  337. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_resolver/https_url.yml +65 -0
  338. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_resolver/stage_resolver.yml +65 -0
  339. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_resolver/stage_resolver_http.yml +65 -0
  340. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/crossref.yml +159 -0
  341. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/crossref_doi_not_url.yml +159 -0
  342. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/datacite.yml +159 -0
  343. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/datacite_doi_http.yml +159 -0
  344. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/github.yml +110 -0
  345. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/orcid.yml +110 -0
  346. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/schema_org.yml +110 -0
  347. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/unknown_DOI_registration_agency.yml +159 -0
  348. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_from_file/bibtex.yml +110 -0
  349. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_from_file/citeproc.yml +110 -0
  350. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_from_file/codemeta.yml +110 -0
  351. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_from_file/crosscite.yml +110 -0
  352. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_from_file/crossref.yml +110 -0
  353. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_from_file/datacite.yml +110 -0
  354. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_from_file/datacite_json.yml +110 -0
  355. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_from_file/ris.yml +110 -0
  356. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_from_file/schema_org.yml +110 -0
  357. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_from_string/crosscite.yml +110 -0
  358. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_for_match.yml +65 -0
  359. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_for_with_schemeUri_in_hash.yml +65 -0
  360. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_match.yml +65 -0
  361. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_no_match.yml +65 -0
  362. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_for_match.yml +65 -0
  363. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_match.yml +65 -0
  364. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_no_match.yml +65 -0
  365. data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org/with_id.yml +65 -0
  366. data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org_creators/with_affiliation.yml +65 -0
  367. data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org_creators/without_affiliation.yml +65 -0
  368. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_codemeta_metadata/maremma.yml +75 -0
  369. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_codemeta_metadata/metadata_reports.yml +75 -0
  370. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_ORCID_ID.yml +118 -0
  371. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_SICI_DOI.yml +117 -0
  372. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_data_citation.yml +121 -0
  373. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/JaLC.yml +114 -0
  374. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/KISTI.yml +114 -0
  375. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/OP.yml +115 -0
  376. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/affiliation_is_space.yml +116 -0
  377. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/another_book.yml +113 -0
  378. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/another_book_chapter.yml +115 -0
  379. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/article_id_as_page_number.yml +116 -0
  380. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/author_literal.yml +123 -0
  381. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book.yml +114 -0
  382. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_chapter.yml +114 -0
  383. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_chapter_with_RDF_for_container.yml +114 -0
  384. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_oup.yml +113 -0
  385. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/component.yml +113 -0
  386. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dataset.yml +113 -0
  387. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dataset_usda.yml +115 -0
  388. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/date_in_future.yml +116 -0
  389. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dissertation.yml +114 -0
  390. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/empty_given_name.yml +116 -0
  391. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/invalid_date.yml +116 -0
  392. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article.yml +115 -0
  393. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_original_language_title.yml +114 -0
  394. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with.yml +119 -0
  395. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with_RDF_for_container.yml +114 -0
  396. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with_funding.yml +115 -0
  397. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_issue.yml +113 -0
  398. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/mEDRA.yml +113 -0
  399. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/markup.yml +120 -0
  400. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/missing_creator.yml +117 -0
  401. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_issn.yml +114 -0
  402. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_titles.yml +113 -0
  403. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_titles_with_missing.yml +117 -0
  404. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/not_found_error.yml +108 -0
  405. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/peer_review.yml +118 -0
  406. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/posted_content.yml +114 -0
  407. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/posted_content_copernicus.yml +117 -0
  408. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/report_osti.yml +113 -0
  409. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/vor_with_url.yml +117 -0
  410. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/yet_another_book.yml +114 -0
  411. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/yet_another_book_chapter.yml +114 -0
  412. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_json_metadata/metadata_from_api.yml +110 -0
  413. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/BlogPosting.yml +110 -0
  414. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/DOI_in_staging_system.yml +110 -0
  415. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/DOI_in_staging_system_schema_3.yml +110 -0
  416. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/DOI_in_with_related_id_system.yml +110 -0
  417. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/DOI_not_found.yml +106 -0
  418. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/Dataset.yml +110 -0
  419. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/Funding.yml +110 -0
  420. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/Funding_empty_awardTitle.yml +110 -0
  421. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/Funding_schema_version_4.yml +110 -0
  422. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/Referee_report_in_staging_system.yml +110 -0
  423. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/Schema_org_type.yml +110 -0
  424. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/author_only_full_name.yml +110 -0
  425. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/author_with_scheme.yml +110 -0
  426. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/author_with_wrong_orcid_scheme.yml +110 -0
  427. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/cc-by_3_0_us.yml +110 -0
  428. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/content_url.yml +110 -0
  429. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/date.yml +110 -0
  430. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/dissertation.yml +110 -0
  431. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/doi_with_sign.yml +110 -0
  432. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/empty_subject.yml +110 -0
  433. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/even_more_subject_scheme_FOR.yml +110 -0
  434. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/funding_references.yml +110 -0
  435. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/funding_schema_version_3.yml +110 -0
  436. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/is_identical_to.yml +110 -0
  437. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/keywords_with_attributes.yml +110 -0
  438. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/leading_and_trailing_whitespace.yml +110 -0
  439. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/more_subject_scheme_FOR.yml +110 -0
  440. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/multiple_author_names_in_one_creatorsName.yml +110 -0
  441. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/multiple_licenses.yml +110 -0
  442. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/series-information.yml +110 -0
  443. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/subject_scheme.yml +110 -0
  444. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/subject_scheme_FOR.yml +110 -0
  445. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date/publication_date.yml +65 -0
  446. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/date.yml +65 -0
  447. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/year-month.yml +65 -0
  448. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/year.yml +65 -0
  449. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/date.yml +65 -0
  450. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/year-month.yml +65 -0
  451. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/year.yml +65 -0
  452. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/date.yml +65 -0
  453. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/year-month.yml +65 -0
  454. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/year.yml +65 -0
  455. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/future.yml +65 -0
  456. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/invalid.yml +65 -0
  457. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/nil.yml +65 -0
  458. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/past.yml +65 -0
  459. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/present.yml +65 -0
  460. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_familyName.yml +61 -0
  461. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_name_in_Thai.yml +61 -0
  462. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_name_in_display-order.yml +61 -0
  463. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_name_in_display-order_with_ORCID.yml +61 -0
  464. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_name_in_sort-order.yml +61 -0
  465. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/hyper-authorship.yml +61 -0
  466. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/is_organization.yml +65 -0
  467. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/multiple_author_names_in_one_field.yml +61 -0
  468. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/multiple_name_identifier.yml +61 -0
  469. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/name_with_affiliation.yml +61 -0
  470. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/name_with_affiliation_and_country.yml +66 -0
  471. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/name_with_role.yml +61 -0
  472. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/only_familyName_and_givenName.yml +57 -0
  473. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/BlogPosting.yml +117 -0
  474. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/BlogPosting_with_new_DOI.yml +117 -0
  475. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/get_schema_org_metadata_front_matter/BlogPosting.yml +55 -0
  476. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/harvard_dataverse.yml +40 -0
  477. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/pangaea.yml +57 -0
  478. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/zenodo.yml +62 -0
  479. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/only_title.yml +65 -0
  480. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_and_pages.yml +65 -0
  481. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_volume_and_pages.yml +65 -0
  482. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_volume_issue_and_pages.yml +65 -0
  483. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_as_codemeta_url.yml +65 -0
  484. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url.yml +65 -0
  485. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url_file.yml +65 -0
  486. data/spec/fixtures/vcr_cassettes/Briard_Metadata/handle_input/DOI_RA_not_Crossref_or_DataCite.yml +52 -0
  487. data/spec/fixtures/vcr_cassettes/Briard_Metadata/handle_input/unknown_DOI_prefix.yml +52 -0
  488. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_contributors/none.yml +61 -0
  489. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_creators/insert.yml +61 -0
  490. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_dates/insert.yml +61 -0
  491. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_descriptions/insert.yml +61 -0
  492. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_identifier/doi.yml +61 -0
  493. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_language/insert.yml +61 -0
  494. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_person/creator_only_name.yml +61 -0
  495. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_publication_year/insert.yml +61 -0
  496. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_publisher/insert.yml +61 -0
  497. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_related_identifiers/insert.yml +61 -0
  498. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_related_identifiers/related_identifier.yml +61 -0
  499. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_resource_type/insert.yml +61 -0
  500. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_rights_list/insert.yml +61 -0
  501. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_sizes/insert.yml +61 -0
  502. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_subjects/insert.yml +61 -0
  503. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_titles/insert.yml +61 -0
  504. data/spec/fixtures/vcr_cassettes/Briard_Metadata/insert_version/insert.yml +61 -0
  505. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_comma.yml +65 -0
  506. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_family_name.yml +65 -0
  507. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_id.yml +65 -0
  508. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_known_given_name.yml +65 -0
  509. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_no_info.yml +65 -0
  510. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_orcid_id.yml +65 -0
  511. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_type_organization.yml +65 -0
  512. data/spec/fixtures/vcr_cassettes/Briard_Metadata/jsonlint/missing_comma.yml +110 -0
  513. data/spec/fixtures/vcr_cassettes/Briard_Metadata/jsonlint/nil.yml +110 -0
  514. data/spec/fixtures/vcr_cassettes/Briard_Metadata/jsonlint/overlapping_keys.yml +110 -0
  515. data/spec/fixtures/vcr_cassettes/Briard_Metadata/jsonlint/valid.yml +110 -0
  516. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/not_found.yml +65 -0
  517. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/with_trailing_slash.yml +65 -0
  518. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/with_trailing_slash_and_to_https.yml +65 -0
  519. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_doi/SICI_doi.yml +65 -0
  520. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_doi/doi.yml +65 -0
  521. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_doi/doi_force_datacite_sandbox.yml +65 -0
  522. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_doi/doi_from_datacite_sandbox.yml +65 -0
  523. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_doi/doi_from_url_without_doi_proxy.yml +65 -0
  524. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_doi/doi_prefix_too_long.yml +65 -0
  525. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_doi/doi_prefix_with_string.yml +65 -0
  526. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_doi/doi_with_protocol.yml +65 -0
  527. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_doi/dx_doi_org_url.yml +65 -0
  528. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_doi/https_url.yml +65 -0
  529. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_doi/not_valid_doi_prefix.yml +65 -0
  530. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_doi/url_with_one_slash.yml +65 -0
  531. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/doi.yml +65 -0
  532. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/doi_as_url.yml +65 -0
  533. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/ftp.yml +65 -0
  534. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/invalid_url.yml +65 -0
  535. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/sandbox_via_options.yml +65 -0
  536. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/sandbox_via_url.yml +65 -0
  537. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/string.yml +65 -0
  538. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/url.yml +65 -0
  539. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/url_with_utf-8.yml +65 -0
  540. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_ids/doi.yml +65 -0
  541. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_ids/url.yml +65 -0
  542. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_array.yml +65 -0
  543. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_empty_array.yml +65 -0
  544. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_hash.yml +65 -0
  545. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_string.yml +65 -0
  546. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/uri.yml +65 -0
  547. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/with_trailing_slash.yml +65 -0
  548. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/with_trailing_slash_and_to_https.yml +65 -0
  549. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/array.yml +65 -0
  550. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/array_of_strings.yml +65 -0
  551. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/first.yml +65 -0
  552. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/hash.yml +65 -0
  553. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/nil.yml +65 -0
  554. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/string.yml +65 -0
  555. data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/should_only_keep_specific_tags.yml +65 -0
  556. data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/should_remove_a_tags.yml +65 -0
  557. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_id.yml +65 -0
  558. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_not_found.yml +65 -0
  559. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_url.yml +65 -0
  560. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/name_to_spdx_exists.yml +65 -0
  561. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/name_to_spdx_id.yml +65 -0
  562. data/spec/fixtures/vcr_cassettes/Briard_Metadata/to_schema_org/with_id.yml +65 -0
  563. data/spec/fixtures/vcr_cassettes/Briard_Metadata/to_schema_org_identifiers/with_identifiers.yml +65 -0
  564. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_doi/doi.yml +65 -0
  565. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/1_7_10.yml +65 -0
  566. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/1_7_11.yml +65 -0
  567. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/1_7_12.yml +65 -0
  568. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/1_7_13.yml +65 -0
  569. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/1_7_14.yml +65 -0
  570. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/1_7_4.yml +65 -0
  571. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/1_7_5.yml +65 -0
  572. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/1_7_6.yml +65 -0
  573. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/1_7_7.yml +65 -0
  574. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/1_7_8.yml +65 -0
  575. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/1_7_9.yml +65 -0
  576. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/funder_doi.yml +65 -0
  577. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/funder_doi_without_prefix.yml +65 -0
  578. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_funder_doi/non-funder_doi.yml +65 -0
  579. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid.yml +65 -0
  580. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_https.yml +65 -0
  581. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_id.yml +65 -0
  582. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_sandbox.yml +65 -0
  583. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_sandbox_https.yml +65 -0
  584. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_with_spaces.yml +65 -0
  585. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_wrong_id.yml +65 -0
  586. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_www.yml +65 -0
  587. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme.yml +65 -0
  588. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_https.yml +65 -0
  589. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_trailing_slash.yml +65 -0
  590. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_www.yml +65 -0
  591. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_prefix/doi.yml +65 -0
  592. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_prefix/doi_as_url.yml +65 -0
  593. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_prefix/doi_with_protocol.yml +65 -0
  594. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_prefix/only_prefix.yml +65 -0
  595. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/DOI.yml +65 -0
  596. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/ISSN.yml +65 -0
  597. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/URL.yml +65 -0
  598. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/string.yml +65 -0
  599. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/BlogPosting.yml +61 -0
  600. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/Dataset.yml +61 -0
  601. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/authors_with_affiliations.yml +66 -0
  602. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/climate_data.yml +61 -0
  603. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/from_schema_org.yml +117 -0
  604. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/keywords_subject_scheme.yml +61 -0
  605. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/maremma.yml +75 -0
  606. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/text.yml +61 -0
  607. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/with_data_citation.yml +72 -0
  608. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/with_pages.yml +69 -0
  609. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Dataset.yml +61 -0
  610. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Journal_article.yml +72 -0
  611. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Journal_article_vancouver_style.yml +72 -0
  612. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Missing_author.yml +68 -0
  613. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/interactive_resource_without_dates.yml +61 -0
  614. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/software_w/version.yml +61 -0
  615. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/Another_dataset.yml +61 -0
  616. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/BlogPosting.yml +61 -0
  617. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/BlogPosting_schema_org.yml +117 -0
  618. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/Dataset.yml +61 -0
  619. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/container_title.yml +61 -0
  620. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/interactive_resource_without_dates.yml +61 -0
  621. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/journal_article.yml +72 -0
  622. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/keywords_subject_scheme.yml +61 -0
  623. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/maremma.yml +75 -0
  624. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/missing_creator.yml +68 -0
  625. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/multiple_abstracts.yml +61 -0
  626. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/organization_author.yml +69 -0
  627. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/software.yml +61 -0
  628. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/software_w/version.yml +61 -0
  629. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/with_only_first_page.yml +67 -0
  630. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citeproc/with_pages.yml +69 -0
  631. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite.yml +61 -0
  632. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite_check_codemeta_v2.yml +61 -0
  633. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crosscite/datacite_database_attributes.yml +61 -0
  634. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crosscite/maremma.yml +75 -0
  635. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crosscite/with_ORCID_ID.yml +69 -0
  636. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crosscite/with_data_citation.yml +72 -0
  637. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crosscite/with_data_citation_schema_org.yml +117 -0
  638. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/posted_content.yml +114 -0
  639. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_datacite.yml +117 -0
  640. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_front_matter.yml +55 -0
  641. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/climate_data.yml +61 -0
  642. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/maremma.yml +75 -0
  643. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/text.yml +61 -0
  644. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/with_data_citation.yml +72 -0
  645. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/with_pages.yml +69 -0
  646. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/maremma.yml +75 -0
  647. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_ORCID_ID.yml +69 -0
  648. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_data_citation.yml +72 -0
  649. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_data_citation_schema_org.yml +117 -0
  650. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_xml/DOI_not_found.yml +57 -0
  651. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_xml/Dataset_in_schema_4_0.yml +61 -0
  652. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_xml/Text_pass-thru.yml +61 -0
  653. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_xml/Text_pass-thru_with_doi_in_options.yml +61 -0
  654. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_xml/maremma.yml +75 -0
  655. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_xml/with_ORCID_ID.yml +69 -0
  656. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_xml/with_data_citation.yml +72 -0
  657. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_xml/with_data_citation_schema_org.yml +117 -0
  658. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_xml/with_editor.yml +66 -0
  659. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_xml/with_version.yml +61 -0
  660. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/Dataset_in_schema_4_0.yml +61 -0
  661. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/Text_pass-thru.yml +61 -0
  662. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/book_chapter.yml +64 -0
  663. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/interactive_resource_without_dates.yml +61 -0
  664. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/maremma.yml +75 -0
  665. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_ORCID_ID.yml +69 -0
  666. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_data_citation.yml +72 -0
  667. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_data_citation_schema_org.yml +117 -0
  668. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_editor.yml +66 -0
  669. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/BlogPosting.yml +61 -0
  670. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/BlogPosting_schema_org.yml +117 -0
  671. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/journal_article.yml +72 -0
  672. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/maremma.yml +75 -0
  673. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/with_pages.yml +69 -0
  674. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/BlogPosting.yml +61 -0
  675. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/BlogPosting_schema_org.yml +117 -0
  676. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/Dataset.yml +61 -0
  677. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/alternate_name.yml +61 -0
  678. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/journal_article.yml +72 -0
  679. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/keywords_with_subject_scheme.yml +61 -0
  680. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/maremma.yml +75 -0
  681. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/with_pages.yml +69 -0
  682. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Funding.yml +110 -0
  683. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Funding_OpenAIRE.yml +110 -0
  684. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON.yml +61 -0
  685. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_Cyark.yml +110 -0
  686. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_IsSupplementTo.yml +110 -0
  687. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_isReferencedBy.yml +61 -0
  688. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/alternate_identifiers.yml +61 -0
  689. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/data_catalog.yml +61 -0
  690. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/geo_location_box.yml +61 -0
  691. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/interactive_resource_without_dates.yml +61 -0
  692. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/journal_article.yml +72 -0
  693. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/maremma_schema_org_JSON.yml +75 -0
  694. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/series_information.yml +61 -0
  695. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/subject_scheme.yml +61 -0
  696. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/subject_scheme_multiple_keywords.yml +61 -0
  697. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/BlogPosting.yml +61 -0
  698. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/BlogPosting_schema_org.yml +117 -0
  699. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/Dataset.yml +61 -0
  700. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/journal_article.yml +72 -0
  701. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/with_pages.yml +69 -0
  702. data/spec/fixtures/vivli.xml +1 -0
  703. data/spec/metadata_spec.rb +165 -0
  704. data/spec/readers/bibtex_reader_spec.rb +63 -0
  705. data/spec/readers/citeproc_reader_spec.rb +61 -0
  706. data/spec/readers/codemeta_reader_spec.rb +138 -0
  707. data/spec/readers/crosscite_reader_spec.rb +41 -0
  708. data/spec/readers/crossref_reader_spec.rb +1117 -0
  709. data/spec/readers/datacite_json_reader_spec.rb +80 -0
  710. data/spec/readers/datacite_reader_spec.rb +1655 -0
  711. data/spec/readers/npm_reader_spec.rb +66 -0
  712. data/spec/readers/ris_reader_spec.rb +75 -0
  713. data/spec/readers/schema_org_reader_spec.rb +376 -0
  714. data/spec/spec_helper.rb +94 -0
  715. data/spec/utils_spec.rb +617 -0
  716. data/spec/writers/bibtex_writer_spec.rb +195 -0
  717. data/spec/writers/citation_writer_spec.rb +52 -0
  718. data/spec/writers/citeproc_writer_spec.rb +296 -0
  719. data/spec/writers/codemeta_writer_spec.rb +45 -0
  720. data/spec/writers/crosscite_writer_spec.rb +122 -0
  721. data/spec/writers/crossref_writer_spec.rb +88 -0
  722. data/spec/writers/csv_writer_spec.rb +94 -0
  723. data/spec/writers/datacite_json_writer_spec.rb +90 -0
  724. data/spec/writers/datacite_writer_spec.rb +428 -0
  725. data/spec/writers/jats_writer_spec.rb +193 -0
  726. data/spec/writers/rdf_xml_writer_spec.rb +86 -0
  727. data/spec/writers/ris_writer_spec.rb +208 -0
  728. data/spec/writers/schema_org_writer_spec.rb +369 -0
  729. data/spec/writers/turtle_writer_spec.rb +84 -0
  730. metadata +1347 -0
@@ -0,0 +1,1099 @@
1
+ {
2
+ "mappingListVersion": "1.0",
3
+ "originalUrl": "https://www.abs.gov.au/AUSSTATS/subscriber.nsf/log?openagent&12970%20(2008)%20FOS%20(2007)%20Correspondence%20Table.xls",
4
+ "forFields": [{
5
+ "forId": "060102",
6
+ "forLabel": "Bioinformatics",
7
+ "fosId": "1.2",
8
+ "fosLabel": "Computer and information sciences"
9
+ },
10
+ {
11
+ "forId": "029901",
12
+ "forLabel": "Biological Physics",
13
+ "fosId": "1.6",
14
+ "fosLabel": "Biological sciences"
15
+ },
16
+ {
17
+ "forId": "050202",
18
+ "forLabel": "Conservation and Biodiversity",
19
+ "fosId": "1.6",
20
+ "fosLabel": "Biological sciences"
21
+ },
22
+ {
23
+ "forId": "091007",
24
+ "forLabel": "Manufacturing Robotics and Mechatronics (excl. Automotive Mechatronics)",
25
+ "fosId": "2.2",
26
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
27
+ },
28
+ {
29
+ "forId": "091302",
30
+ "forLabel": "Automation and Control Engineering",
31
+ "fosId": "2.2",
32
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
33
+ },
34
+ {
35
+ "forId": "020304",
36
+ "forLabel": "Thermodynamics and Statistical Physics",
37
+ "fosId": "2.3",
38
+ "fosLabel": "Mechanical engineering"
39
+ },
40
+ {
41
+ "forId": "091012",
42
+ "forLabel": "Textile Technology",
43
+ "fosId": "2.5",
44
+ "fosLabel": "Materials engineering"
45
+ },
46
+ {
47
+ "forId": "090201",
48
+ "forLabel": "Automotive Combustion and Fuel Engineering (incl. Alternative/Renewable Fuels)",
49
+ "fosId": "2.7",
50
+ "fosLabel": "Environmental engineering"
51
+ },
52
+ {
53
+ "forId": "090405",
54
+ "forLabel": "Non-automotive Combustion and Fuel Engineering",
55
+ "fosId": "2.7",
56
+ "fosLabel": "Environmental engineering"
57
+ },
58
+ {
59
+ "forId": "030405",
60
+ "forLabel": "Molecular Medicine",
61
+ "fosId": "3.1",
62
+ "fosLabel": "Basic medicine"
63
+ },
64
+ {
65
+ "forId": "110311",
66
+ "forLabel": "Medical Genetics (excl. Cancer Genetics)",
67
+ "fosId": "3.1",
68
+ "fosLabel": "Basic medicine"
69
+ },
70
+ {
71
+ "forId": "110701",
72
+ "forLabel": "Allergy",
73
+ "fosId": "3.2",
74
+ "fosLabel": "Clinical medicine"
75
+ },
76
+ {
77
+ "forId": "110708",
78
+ "forLabel": "Transplantation Immunology",
79
+ "fosId": "3.2",
80
+ "fosLabel": "Clinical medicine"
81
+ },
82
+ {
83
+ "forId": "110904",
84
+ "forLabel": "Neurology and Neuromuscular Diseases",
85
+ "fosId": "3.2",
86
+ "fosLabel": "Clinical medicine"
87
+ },
88
+ {
89
+ "forId": "110309",
90
+ "forLabel": "Infectious Diseases",
91
+ "fosId": "3.3",
92
+ "fosLabel": "Health sciences"
93
+ },
94
+ {
95
+ "forId": "110803",
96
+ "forLabel": "Medical Parasitology",
97
+ "fosId": "3.3",
98
+ "fosLabel": "Health sciences"
99
+ },
100
+ {
101
+ "forId": "120101",
102
+ "forLabel": "Architectural Design",
103
+ "fosId": "6.4",
104
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
105
+ },
106
+ {
107
+ "forId": "220106",
108
+ "forLabel": "Medical Ethics",
109
+ "fosId": "3.3",
110
+ "fosLabel": "Health sciences"
111
+ },
112
+ {
113
+ "forId": "111404",
114
+ "forLabel": "Reproduction",
115
+ "fosId": "3.4",
116
+ "fosLabel": "Medical biotechnology"
117
+ },
118
+ {
119
+ "forId": "111505",
120
+ "forLabel": "Pharmacogenomics",
121
+ "fosId": "3.4",
122
+ "fosLabel": "Medical biotechnology"
123
+ },
124
+ {
125
+ "forId": "039902",
126
+ "forLabel": "Forensic Chemistry",
127
+ "fosId": "3.5",
128
+ "fosLabel": "Other medical sciences"
129
+ },
130
+ {
131
+ "forId": "069901",
132
+ "forLabel": "Forensic Biology",
133
+ "fosId": "3.5",
134
+ "fosLabel": "Other medical sciences"
135
+ },
136
+ {
137
+ "forId": "170104",
138
+ "forLabel": "Forensic Psychology",
139
+ "fosId": "3.5",
140
+ "fosLabel": "Other medical sciences"
141
+ },
142
+ {
143
+ "forId": "220205",
144
+ "forLabel": "History and Philosophy of Medicine",
145
+ "fosId": "3.5",
146
+ "fosLabel": "Other medical sciences"
147
+ },
148
+ {
149
+ "forId": "080602",
150
+ "forLabel": "Computer-Human Interaction",
151
+ "fosId": "5.1",
152
+ "fosLabel": "Psychology"
153
+ }
154
+ ],
155
+ "forDisciplines": [{
156
+ "forId": "0101",
157
+ "forLabel": "Pure Mathematics",
158
+ "fosId": "1.1",
159
+ "fosLabel": "Mathematics"
160
+ },
161
+ {
162
+ "forId": "0102",
163
+ "forLabel": "Applied Mathematics",
164
+ "fosId": "1.1",
165
+ "fosLabel": "Mathematics"
166
+ },
167
+ {
168
+ "forId": "0103",
169
+ "forLabel": "Numerical and Computational Mathematics",
170
+ "fosId": "1.1",
171
+ "fosLabel": "Mathematics"
172
+ },
173
+ {
174
+ "forId": "0104",
175
+ "forLabel": "Statistics",
176
+ "fosId": "1.1",
177
+ "fosLabel": "Mathematics"
178
+ },
179
+ {
180
+ "forId": "0105",
181
+ "forLabel": "Mathematical Physics",
182
+ "fosId": "1.1",
183
+ "fosLabel": "Mathematics"
184
+ },
185
+ {
186
+ "forId": "0199",
187
+ "forLabel": "Other Mathematical Sciences",
188
+ "fosId": "1.1",
189
+ "fosLabel": "Mathematics"
190
+ },
191
+ {
192
+ "forId": "0201",
193
+ "forLabel": "Astronomical and Space Sciences",
194
+ "fosId": "1.3",
195
+ "fosLabel": "Physical sciences"
196
+ },
197
+ {
198
+ "forId": "0202",
199
+ "forLabel": "Atomic, Molecular, Nuclear, Particle and Plasma Physics",
200
+ "fosId": "1.3",
201
+ "fosLabel": "Physical sciences"
202
+ },
203
+ {
204
+ "forId": "0203",
205
+ "forLabel": "Classical Physics",
206
+ "fosId": "1.3",
207
+ "fosLabel": "Physical sciences"
208
+ },
209
+ {
210
+ "forId": "0204",
211
+ "forLabel": "Condensed Matter Physics",
212
+ "fosId": "1.3",
213
+ "fosLabel": "Physical sciences"
214
+ },
215
+ {
216
+ "forId": "0205",
217
+ "forLabel": "Optical Physics",
218
+ "fosId": "1.3",
219
+ "fosLabel": "Physical sciences"
220
+ },
221
+ {
222
+ "forId": "0206",
223
+ "forLabel": "Quantum Physics",
224
+ "fosId": "1.3",
225
+ "fosLabel": "Physical sciences"
226
+ },
227
+ {
228
+ "forId": "0299",
229
+ "forLabel": "Other Physical Sciences",
230
+ "fosId": "1.3",
231
+ "fosLabel": "Physical sciences"
232
+ },
233
+ {
234
+ "forId": "0301",
235
+ "forLabel": "Analytical Chemistry",
236
+ "fosId": "1.4",
237
+ "fosLabel": "Chemical sciences"
238
+ },
239
+ {
240
+ "forId": "0302",
241
+ "forLabel": "Inorganic Chemistry",
242
+ "fosId": "1.4",
243
+ "fosLabel": "Chemical sciences"
244
+ },
245
+ {
246
+ "forId": "0303",
247
+ "forLabel": "Macromolecular and Materials Chemistry",
248
+ "fosId": "1.4",
249
+ "fosLabel": "Chemical sciences"
250
+ },
251
+ {
252
+ "forId": "0304",
253
+ "forLabel": "Medicinal and Biomolecular Chemistry",
254
+ "fosId": "1.4",
255
+ "fosLabel": "Chemical sciences"
256
+ },
257
+ {
258
+ "forId": "0305",
259
+ "forLabel": "Organic Chemistry",
260
+ "fosId": "1.4",
261
+ "fosLabel": "Chemical sciences"
262
+ },
263
+ {
264
+ "forId": "0306",
265
+ "forLabel": "Physical Chemistry (incl. Structural)",
266
+ "fosId": "1.4",
267
+ "fosLabel": "Chemical sciences"
268
+ },
269
+ {
270
+ "forId": "0307",
271
+ "forLabel": "Theoretical and Computational Chemistry",
272
+ "fosId": "1.4",
273
+ "fosLabel": "Chemical sciences"
274
+ },
275
+ {
276
+ "forId": "0399",
277
+ "forLabel": "Other Chemical Sciences",
278
+ "fosId": "1.4",
279
+ "fosLabel": "Chemical sciences"
280
+ },
281
+ {
282
+ "forId": "0401",
283
+ "forLabel": "Atmospheric Sciences",
284
+ "fosId": "1.5",
285
+ "fosLabel": "Earth and related environmental sciences"
286
+ },
287
+ {
288
+ "forId": "0402",
289
+ "forLabel": "Geochemistry",
290
+ "fosId": "1.5",
291
+ "fosLabel": "Earth and related environmental sciences"
292
+ },
293
+ {
294
+ "forId": "0403",
295
+ "forLabel": "Geology",
296
+ "fosId": "1.5",
297
+ "fosLabel": "Earth and related environmental sciences"
298
+ },
299
+ {
300
+ "forId": "0404",
301
+ "forLabel": "Geophysics",
302
+ "fosId": "1.5",
303
+ "fosLabel": "Earth and related environmental sciences"
304
+ },
305
+ {
306
+ "forId": "0405",
307
+ "forLabel": "Oceanography",
308
+ "fosId": "1.5",
309
+ "fosLabel": "Earth and related environmental sciences"
310
+ },
311
+ {
312
+ "forId": "0406",
313
+ "forLabel": "Physical Geography and Environmental Geoscience",
314
+ "fosId": "1.5",
315
+ "fosLabel": "Earth and related environmental sciences"
316
+ },
317
+ {
318
+ "forId": "0499",
319
+ "forLabel": "Other Earth Sciences",
320
+ "fosId": "1.5",
321
+ "fosLabel": "Earth and related environmental sciences"
322
+ },
323
+ {
324
+ "forId": "0501",
325
+ "forLabel": "Ecological Applications",
326
+ "fosId": "1.5",
327
+ "fosLabel": "Earth and related environmental sciences"
328
+ },
329
+ {
330
+ "forId": "0502",
331
+ "forLabel": "Environmental Science and Management",
332
+ "fosId": "1.5",
333
+ "fosLabel": "Earth and related environmental sciences"
334
+ },
335
+ {
336
+ "forId": "0503",
337
+ "forLabel": "Soil Sciences",
338
+ "fosId": "4.1",
339
+ "fosLabel": "Agriculture, forestry and fisheries"
340
+ },
341
+ {
342
+ "forId": "0599",
343
+ "forLabel": "Other Environmental Sciences",
344
+ "fosId": "1.5",
345
+ "fosLabel": "Earth and related environmental sciences"
346
+ },
347
+ {
348
+ "forId": "0601",
349
+ "forLabel": "Biochemistry and Cell Biology",
350
+ "fosId": "1.6",
351
+ "fosLabel": "Biological sciences"
352
+ },
353
+ {
354
+ "forId": "0602",
355
+ "forLabel": "Ecology",
356
+ "fosId": "1.6",
357
+ "fosLabel": "Biological sciences"
358
+ },
359
+ {
360
+ "forId": "0603",
361
+ "forLabel": "Evolutionary Biology",
362
+ "fosId": "1.6",
363
+ "fosLabel": "Biological sciences"
364
+ },
365
+ {
366
+ "forId": "0604",
367
+ "forLabel": "Genetics",
368
+ "fosId": "1.6",
369
+ "fosLabel": "Biological sciences"
370
+ },
371
+ {
372
+ "forId": "0605",
373
+ "forLabel": "Microbiology",
374
+ "fosId": "1.6",
375
+ "fosLabel": "Biological sciences"
376
+ },
377
+ {
378
+ "forId": "0606",
379
+ "forLabel": "Physiology",
380
+ "fosId": "1.6",
381
+ "fosLabel": "Biological sciences"
382
+ },
383
+ {
384
+ "forId": "0607",
385
+ "forLabel": "Plant Biology",
386
+ "fosId": "1.6",
387
+ "fosLabel": "Biological sciences"
388
+ },
389
+ {
390
+ "forId": "0608",
391
+ "forLabel": "Zoology",
392
+ "fosId": "1.6",
393
+ "fosLabel": "Biological sciences"
394
+ },
395
+ {
396
+ "forId": "0699",
397
+ "forLabel": "Other Biological Sciences",
398
+ "fosId": "1.6",
399
+ "fosLabel": "Biological sciences"
400
+ },
401
+ {
402
+ "forId": "0701",
403
+ "forLabel": "Agriculture, Land,and Farm Management",
404
+ "fosId": "4.5",
405
+ "fosLabel": "Other agricultural sciences"
406
+ },
407
+ {
408
+ "forId": "0702",
409
+ "forLabel": "Animal Production",
410
+ "fosId": "4.2",
411
+ "fosLabel": "Animal and dairy science"
412
+ },
413
+ {
414
+ "forId": "0703",
415
+ "forLabel": "Crop and Pasture Production",
416
+ "fosId": "4.1",
417
+ "fosLabel": "Agriculture, forestry and fisheries"
418
+ },
419
+ {
420
+ "forId": "0704",
421
+ "forLabel": "Fisheries Sciences",
422
+ "fosId": "4.1",
423
+ "fosLabel": "Agriculture, forestry and fisheries"
424
+ },
425
+
426
+ {
427
+ "forId": "0705",
428
+ "forLabel": "Forestry Sciences",
429
+ "fosId": "4.1",
430
+ "fosLabel": "Agriculture, forestry and fisheries"
431
+ },
432
+ {
433
+ "forId": "0706",
434
+ "forLabel": "Horticultural Production",
435
+ "fosId": "4.1",
436
+ "fosLabel": "Agriculture, forestry and fisheries"
437
+ },
438
+ {
439
+ "forId": "0707",
440
+ "forLabel": "Veterinary Sciences",
441
+ "fosId": "4.3",
442
+ "fosLabel": "Veterinary sciences"
443
+ },
444
+ {
445
+ "forId": "0799",
446
+ "forLabel": "Other Agricultural and Veterinary Sciences",
447
+ "fosId": "4.5",
448
+ "fosLabel": "Other agricultural sciences"
449
+ },
450
+ {
451
+ "forId": "0801",
452
+ "forLabel": "Artificial Intelligence and Image Processing",
453
+ "fosId": "1.2",
454
+ "fosLabel": "Computer and information sciences"
455
+ },
456
+ {
457
+ "forId": "0802",
458
+ "forLabel": "Computation Theory and Mathematics",
459
+ "fosId": "1.2",
460
+ "fosLabel": "Computer and information sciences"
461
+ },
462
+ {
463
+ "forId": "0803",
464
+ "forLabel": "Computer Software",
465
+ "fosId": "1.2",
466
+ "fosLabel": "Computer and information sciences"
467
+ },
468
+ {
469
+ "forId": "0804",
470
+ "forLabel": "Data Format",
471
+ "fosId": "1.2",
472
+ "fosLabel": "Computer and information sciences"
473
+ },
474
+ {
475
+ "forId": "0805",
476
+ "forLabel": "Distributed Computing",
477
+ "fosId": "1.2",
478
+ "fosLabel": "Computer and information sciences"
479
+ },
480
+ {
481
+ "forId": "0806",
482
+ "forLabel": "Information Systems",
483
+ "fosId": "1.2",
484
+ "fosLabel": "Computer and information sciences"
485
+ },
486
+ {
487
+ "forId": "0807",
488
+ "forLabel": "Library and Information Studies",
489
+ "fosId": "5.8",
490
+ "fosLabel": "Media and communications"
491
+ },
492
+ {
493
+ "forId": "0899",
494
+ "forLabel": "Other Information and Computing Sciences",
495
+ "fosId": "1.2",
496
+ "fosLabel": "Computer and information sciences"
497
+ },
498
+ {
499
+ "forId": "0901",
500
+ "forLabel": "Aerospace Engineering",
501
+ "fosId": "2.3",
502
+ "fosLabel": "Mechanical engineering"
503
+ },
504
+ {
505
+ "forId": "0902",
506
+ "forLabel": "Automotive Engineering",
507
+ "fosId": "2.3",
508
+ "fosLabel": "Mechanical engineering"
509
+ },
510
+ {
511
+ "forId": "0903",
512
+ "forLabel": "Biomedical Engineering",
513
+ "fosId": "2.6",
514
+ "fosLabel": "Medical engineering"
515
+ },
516
+ {
517
+ "forId": "0904",
518
+ "forLabel": "Chemical Engineering",
519
+ "fosId": "2.4",
520
+ "fosLabel": "Chemical engineering"
521
+ },
522
+ {
523
+ "forId": "0905",
524
+ "forLabel": "Civil Engineering",
525
+ "fosId": "2.1",
526
+ "fosLabel": "Civil engineering"
527
+ },
528
+ {
529
+ "forId": "0906",
530
+ "forLabel": "Electrical and Electronic Engineering",
531
+ "fosId": "2.2",
532
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
533
+ },
534
+ {
535
+ "forId": "0907",
536
+ "forLabel": "Environmental Engineering",
537
+ "fosId": "2.7",
538
+ "fosLabel": "Environmental engineering"
539
+ },
540
+ {
541
+ "forId": "0908",
542
+ "forLabel": "Food Sciences",
543
+ "fosId": "2.11",
544
+ "fosLabel": "Other engineering and technologies"
545
+ },
546
+ {
547
+ "forId": "0909",
548
+ "forLabel": "Geomatic Engineering",
549
+ "fosId": "2.7",
550
+ "fosLabel": "Environmental engineering"
551
+ },
552
+ {
553
+ "forId": "0910",
554
+ "forLabel": "Manufacturing Engineering",
555
+ "fosId": "2.2",
556
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
557
+ },
558
+ {
559
+ "forId": "0911",
560
+ "forLabel": "Maritime Engineering",
561
+ "fosId": "2.7",
562
+ "fosLabel": "Environmental engineering"
563
+ },
564
+ {
565
+ "forId": "0912",
566
+ "forLabel": "Materials Engineering",
567
+ "fosId": "2.5",
568
+ "fosLabel": "Materials engineering"
569
+ },
570
+ {
571
+ "forId": "0913",
572
+ "forLabel": "Mechanical Engineering",
573
+ "fosId": "2.3",
574
+ "fosLabel": "Mechanical engineering"
575
+ },
576
+ {
577
+ "forId": "0914",
578
+ "forLabel": "Resources Engineering and Extractive Metallurgy",
579
+ "fosId": "2.7",
580
+ "fosLabel": "Environmental engineering"
581
+ },
582
+ {
583
+ "forId": "0915",
584
+ "forLabel": "Interdisciplinary Engineering",
585
+ "fosId": "2.11",
586
+ "fosLabel": "Other engineering and technologies"
587
+ },
588
+ {
589
+ "forId": "0999",
590
+ "forLabel": "Other Engineering",
591
+ "fosId": "2.11",
592
+ "fosLabel": "Other engineering and technologies"
593
+ },
594
+ {
595
+ "forId": "1001",
596
+ "forLabel": "Agricultural Biotechnology",
597
+ "fosId": "4.4",
598
+ "fosLabel": "Agricultural biotechnology"
599
+ },
600
+ {
601
+ "forId": "1002",
602
+ "forLabel": "Environmental Biotechnology",
603
+ "fosId": "2.8",
604
+ "fosLabel": "Environmental biotechnology"
605
+ },
606
+ {
607
+ "forId": "1003",
608
+ "forLabel": "Industrial Biotechnology",
609
+ "fosId": "2.9",
610
+ "fosLabel": "Industrial biotechnology"
611
+ },
612
+ {
613
+ "forId": "1004",
614
+ "forLabel": "Medical Biotechnology",
615
+ "fosId": "3.4",
616
+ "fosLabel": "Medical biotechnology"
617
+ },
618
+ {
619
+ "forId": "1005",
620
+ "forLabel": "Communication Technologies",
621
+ "fosId": "2.2",
622
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
623
+ },
624
+ {
625
+ "forId": "1006",
626
+ "forLabel": "Computer Hardware",
627
+ "fosId": "2.2",
628
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
629
+ },
630
+ {
631
+ "forId": "1007",
632
+ "forLabel": "Nanotechnology",
633
+ "fosId": "2.10",
634
+ "fosLabel": "Nanotechnology"
635
+ },
636
+ {
637
+ "forId": "1099",
638
+ "forLabel": "Other Technology",
639
+ "fosId": "2.11",
640
+ "fosLabel": "Other engineering and technologies"
641
+ },
642
+ {
643
+ "forId": "1101",
644
+ "forLabel": "Medical Biochemistry and Metabolomics",
645
+ "fosId": "3.2",
646
+ "fosLabel": "Clinical medicine"
647
+ },
648
+ {
649
+ "forId": "1102",
650
+ "forLabel": "Cardiorespiratory Medicine and Haematology",
651
+ "fosId": "3.2",
652
+ "fosLabel": "Clinical medicine"
653
+ },
654
+ {
655
+ "forId": "1103",
656
+ "forLabel": "Clinical Sciences",
657
+ "fosId": "3.2",
658
+ "fosLabel": "Clinical medicine"
659
+ },
660
+ {
661
+ "forId": "1104",
662
+ "forLabel": "Complementary and Alternative Medicine",
663
+ "fosId": "3.2",
664
+ "fosLabel": "Clinical medicine"
665
+ },
666
+ {
667
+ "forId": "1105",
668
+ "forLabel": "Dentistry",
669
+ "fosId": "3.2",
670
+ "fosLabel": "Clinical medicine"
671
+ },
672
+ {
673
+ "forId": "1106",
674
+ "forLabel": "Human Movement and Sports Science",
675
+ "fosId": "3.3",
676
+ "fosLabel": "Health sciences"
677
+ },
678
+ {
679
+ "forId": "1107",
680
+ "forLabel": "Immunology",
681
+ "fosId": "3.2",
682
+ "fosLabel": "Clinical medicine"
683
+ },
684
+ {
685
+ "forId": "1108",
686
+ "forLabel": "Medical Microbiology",
687
+ "fosId": "3.3",
688
+ "fosLabel": "Health sciences"
689
+ },
690
+ {
691
+ "forId": "1109",
692
+ "forLabel": "Neurosciences",
693
+ "fosId": "3.2",
694
+ "fosLabel": "Clinical medicine"
695
+ },
696
+ {
697
+ "forId": "1110",
698
+ "forLabel": "Nursing",
699
+ "fosId": "3.3",
700
+ "fosLabel": "Health sciences"
701
+ },
702
+ {
703
+ "forId": "1111",
704
+ "forLabel": "Nutrition and Dietetics",
705
+ "fosId": "3.3",
706
+ "fosLabel": "Health sciences"
707
+ },
708
+ {
709
+ "forId": "1112",
710
+ "forLabel": "Oncology and Carcinogenesis",
711
+ "fosId": "3.2",
712
+ "fosLabel": "Clinical medicine"
713
+ },
714
+ {
715
+ "forId": "1113",
716
+ "forLabel": "Ophthalmology and Optometry",
717
+ "fosId": "3.2",
718
+ "fosLabel": "Clinical medicine"
719
+ },
720
+ {
721
+ "forId": "1114",
722
+ "forLabel": "Paediatrics and Reproductive Medicine",
723
+ "fosId": "3.2",
724
+ "fosLabel": "Clinical medicine"
725
+ },
726
+ {
727
+ "forId": "1115",
728
+ "forLabel": "Pharmacology and Pharmaceutical Sciences",
729
+ "fosId": "3.2",
730
+ "fosLabel": "Clinical medicine"
731
+ },
732
+ {
733
+ "forId": "1116",
734
+ "forLabel": "Medical Physiology",
735
+ "fosId": "3.1",
736
+ "fosLabel": "Basic medicine"
737
+ },
738
+ {
739
+ "forId": "1117",
740
+ "forLabel": "Public Health and Health Services",
741
+ "fosId": "3.3",
742
+ "fosLabel": "Health sciences"
743
+ },
744
+ {
745
+ "forId": "1199",
746
+ "forLabel": "Other Medical and Health Sciences",
747
+ "fosId": "3.5",
748
+ "fosLabel": "Other medical sciences"
749
+ },
750
+ {
751
+ "forId": "1201",
752
+ "forLabel": "Architecture",
753
+ "fosId": "2.1",
754
+ "fosLabel": "Civil engineering"
755
+ },
756
+ {
757
+ "forId": "1202",
758
+ "forLabel": "Building",
759
+ "fosId": "2.1",
760
+ "fosLabel": "Civil engineering"
761
+ },
762
+ {
763
+ "forId": "1204",
764
+ "forLabel": "Engineering Design",
765
+ "fosId": "2.11",
766
+ "fosLabel": "Other engineering and technologies"
767
+ },
768
+ {
769
+ "forId": "1203",
770
+ "forLabel": "Design Practice and Management",
771
+ "fosId": "6.4",
772
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
773
+ },
774
+ {
775
+ "forId": "1205",
776
+ "forLabel": "Urban and Regional Planning",
777
+ "fosId": "5.7",
778
+ "fosLabel": "Social and economic geography"
779
+ },
780
+ {
781
+ "forId": "1299",
782
+ "forLabel": "Other Built Environment and Design",
783
+ "fosId": "2.1",
784
+ "fosLabel": "Civil engineering"
785
+ },
786
+ {
787
+ "forId": "1301",
788
+ "forLabel": "Education Systems",
789
+ "fosId": "5.3",
790
+ "fosLabel": "Educational sciences"
791
+ },
792
+ {
793
+ "forId": "1302",
794
+ "forLabel": "Curriculum and Pedagogy",
795
+ "fosId": "5.3",
796
+ "fosLabel": "Educational sciences"
797
+ },
798
+ {
799
+ "forId": "1303",
800
+ "forLabel": "Specialist Studies in Education",
801
+ "fosId": "5.3",
802
+ "fosLabel": "Educational sciences"
803
+ },
804
+ {
805
+ "forId": "1399",
806
+ "forLabel": "Other Education",
807
+ "fosId": "5.3",
808
+ "fosLabel": "Educational sciences"
809
+ },
810
+ {
811
+ "forId": "1401",
812
+ "forLabel": "Economic Theory",
813
+ "fosId": "5.2",
814
+ "fosLabel": "Economics and business"
815
+ },
816
+ {
817
+ "forId": "1402",
818
+ "forLabel": "Applied Economics",
819
+ "fosId": "5.2",
820
+ "fosLabel": "Economics and business"
821
+ },
822
+ {
823
+ "forId": "1403",
824
+ "forLabel": "Econometrics",
825
+ "fosId": "5.2",
826
+ "fosLabel": "Economics and business"
827
+ },
828
+ {
829
+ "forId": "1499",
830
+ "forLabel": "Other Economics",
831
+ "fosId": "5.2",
832
+ "fosLabel": "Economics and business"
833
+ },
834
+ {
835
+ "forId": "1501",
836
+ "forLabel": "Accounting, Auditing and Accountability",
837
+ "fosId": "5.2",
838
+ "fosLabel": "Economics and business"
839
+ },
840
+ {
841
+ "forId": "1502",
842
+ "forLabel": "Banking, Finance and Investment",
843
+ "fosId": "5.2",
844
+ "fosLabel": "Economics and business"
845
+ },
846
+ {
847
+ "forId": "1503",
848
+ "forLabel": "Business and Management",
849
+ "fosId": "5.2",
850
+ "fosLabel": "Economics and business"
851
+ },
852
+ {
853
+ "forId": "1504",
854
+ "forLabel": "Commercial Services",
855
+ "fosId": "5.2",
856
+ "fosLabel": "Economics and business"
857
+ },
858
+ {
859
+ "forId": "1505",
860
+ "forLabel": "Marketing",
861
+ "fosId": "5.2",
862
+ "fosLabel": "Economics and business"
863
+ },
864
+ {
865
+ "forId": "1506",
866
+ "forLabel": "Tourism",
867
+ "fosId": "5.2",
868
+ "fosLabel": "Economics and business"
869
+ },
870
+ {
871
+ "forId": "1507",
872
+ "forLabel": "Transportation and Freight Services",
873
+ "fosId": "5.2",
874
+ "fosLabel": "Economics and business"
875
+ },
876
+ {
877
+ "forId": "1599",
878
+ "forLabel": "Other Commerce, Management, Tourism and Services",
879
+ "fosId": "5.2",
880
+ "fosLabel": "Economics and business"
881
+ },
882
+ {
883
+ "forId": "1601",
884
+ "forLabel": "Anthropology",
885
+ "fosId": "5.4",
886
+ "fosLabel": "Sociology"
887
+ },
888
+ {
889
+ "forId": "1602",
890
+ "forLabel": "Criminology",
891
+ "fosId": "5.5",
892
+ "fosLabel": "Law"
893
+ },
894
+ {
895
+ "forId": "1603",
896
+ "forLabel": "Demography",
897
+ "fosId": "5.4",
898
+ "fosLabel": "Sociology"
899
+ },
900
+ {
901
+ "forId": "1604",
902
+ "forLabel": "Human Geography",
903
+ "fosId": "5.7",
904
+ "fosLabel": "Social and economic geography"
905
+ },
906
+ {
907
+ "forId": "1605",
908
+ "forLabel": "Policy and Administration",
909
+ "fosId": "5.6",
910
+ "fosLabel": "Political science"
911
+ },
912
+ {
913
+ "forId": "1606",
914
+ "forLabel": "Political Science",
915
+ "fosId": "5.6",
916
+ "fosLabel": "Political science"
917
+ },
918
+ {
919
+ "forId": "1607",
920
+ "forLabel": "Social Work",
921
+ "fosId": "5.4",
922
+ "fosLabel": "Sociology"
923
+ },
924
+ {
925
+ "forId": "1608",
926
+ "forLabel": "Sociology",
927
+ "fosId": "5.4",
928
+ "fosLabel": "Sociology"
929
+ },
930
+ {
931
+ "forId": "1699",
932
+ "forLabel": "Other Studies in Human Society",
933
+ "fosId": "5.4",
934
+ "fosLabel": "Sociology"
935
+ },
936
+ {
937
+ "forId": "1701",
938
+ "forLabel": "Psychology",
939
+ "fosId": "5.1",
940
+ "fosLabel": "Psychology"
941
+ },
942
+ {
943
+ "forId": "1702",
944
+ "forLabel": "Cognitive Sciences",
945
+ "fosId": "5.1",
946
+ "fosLabel": "Psychology"
947
+ },
948
+ {
949
+ "forId": "1799",
950
+ "forLabel": "Other Psychology and Cognitive Sciences",
951
+ "fosId": "5.1",
952
+ "fosLabel": "Psychology"
953
+ },
954
+ {
955
+ "forId": "1801",
956
+ "forLabel": "Law",
957
+ "fosId": "5.5",
958
+ "fosLabel": "Law"
959
+ },
960
+ {
961
+ "forId": "1802",
962
+ "forLabel": "Maori Law",
963
+ "fosId": "5.5",
964
+ "fosLabel": "Law"
965
+ },
966
+ {
967
+ "forId": "1899",
968
+ "forLabel": "Other Law and Legal Studies",
969
+ "fosId": "5.5",
970
+ "fosLabel": "Law"
971
+ },
972
+ {
973
+ "forId": "1901",
974
+ "forLabel": "Art Theory and Criticism",
975
+ "fosId": "6.4",
976
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
977
+ },
978
+ {
979
+ "forId": "1902",
980
+ "forLabel": "Film, Television and Digital Media",
981
+ "fosId": "6.4",
982
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
983
+ },
984
+ {
985
+ "forId": "1903",
986
+ "forLabel": "Journalism and Professional Writing",
987
+ "fosId": "5.8",
988
+ "fosLabel": "Media and communications"
989
+ },
990
+ {
991
+ "forId": "1904",
992
+ "forLabel": "Performing Arts and Creative Writing",
993
+ "fosId": "6.4",
994
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
995
+ },
996
+ {
997
+ "forId": "1905",
998
+ "forLabel": "Visual Arts and Crafts",
999
+ "fosId": "6.4",
1000
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
1001
+ },
1002
+ {
1003
+ "forId": "1999",
1004
+ "forLabel": "Other Studies in Creative Arts and Writing",
1005
+ "fosId": "6.4",
1006
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
1007
+ },
1008
+ {
1009
+ "forId": "2001",
1010
+ "forLabel": "Communication and Media Studies",
1011
+ "fosId": "5.8",
1012
+ "fosLabel": "Media and communications"
1013
+ },
1014
+ {
1015
+ "forId": "2002",
1016
+ "forLabel": "Cultural Studies",
1017
+ "fosId": "6.5",
1018
+ "fosLabel": "Other humanities"
1019
+ },
1020
+ {
1021
+ "forId": "2003",
1022
+ "forLabel": "Language Studies",
1023
+ "fosId": "6.2",
1024
+ "fosLabel": "Languages and literature"
1025
+ },
1026
+ {
1027
+ "forId": "2004",
1028
+ "forLabel": "Linguistics",
1029
+ "fosId": "6.2",
1030
+ "fosLabel": "Languages and literature"
1031
+ },
1032
+ {
1033
+ "forId": "2005",
1034
+ "forLabel": "Literary Studies",
1035
+ "fosId": "6.2",
1036
+ "fosLabel": "Languages and literature"
1037
+ },
1038
+ {
1039
+ "forId": "2099",
1040
+ "forLabel": "Other Language, Communication and Culture",
1041
+ "fosId": "6.2",
1042
+ "fosLabel": "Languages and literature"
1043
+ },
1044
+ {
1045
+ "forId": "2101",
1046
+ "forLabel": "Archaelogy",
1047
+ "fosId": "6.1",
1048
+ "fosLabel": "History and archaeology"
1049
+ },
1050
+ {
1051
+ "forId": "2102",
1052
+ "forLabel": "Curatorial and Related Studies",
1053
+ "fosId": "5.8",
1054
+ "fosLabel": "Media and communications"
1055
+ },
1056
+ {
1057
+ "forId": "2103",
1058
+ "forLabel": "Historical Studies",
1059
+ "fosId": "6.1",
1060
+ "fosLabel": "History and archaeology"
1061
+ },
1062
+ {
1063
+ "forId": "2199",
1064
+ "forLabel": "Other History and Archaelogy",
1065
+ "fosId": "6.1",
1066
+ "fosLabel": "History and archaeology"
1067
+ },
1068
+ {
1069
+ "forId": "2201",
1070
+ "forLabel": "Applied Ethics",
1071
+ "fosId": "6.3",
1072
+ "fosLabel": "Philosophy, ethics and religion"
1073
+ },
1074
+ {
1075
+ "forId": "2202",
1076
+ "forLabel": "History and Philosophy of Specific Fields",
1077
+ "fosId": "6.3",
1078
+ "fosLabel": "Philosophy, ethics and religion"
1079
+ },
1080
+ {
1081
+ "forId": "2203",
1082
+ "forLabel": "Philosophy",
1083
+ "fosId": "6.3",
1084
+ "fosLabel": "Philosophy, ethics and religion"
1085
+ },
1086
+ {
1087
+ "forId": "2204",
1088
+ "forLabel": "Religion and Religious Studies",
1089
+ "fosId": "6.3",
1090
+ "fosLabel": "Philosophy, ethics and religion"
1091
+ },
1092
+ {
1093
+ "forId": "2299",
1094
+ "forLabel": "Other Philosophy and Religious Studies",
1095
+ "fosId": "6.3",
1096
+ "fosLabel": "Philosophy, ethics and religion"
1097
+ }
1098
+ ]
1099
+ }