commonmeta-ruby 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (791) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/build.yml +38 -0
  3. data/.github/workflows/changelog.yml +36 -0
  4. data/.github/workflows/codeql-analysis.yml +72 -0
  5. data/.github/workflows/rubocop.yml +50 -0
  6. data/.gitignore +59 -0
  7. data/.rubocop.yml +182 -0
  8. data/.rubocop_todo.yml +76 -0
  9. data/.tool-versions +1 -0
  10. data/CHANGELOG.md +124 -0
  11. data/CITATION +16 -0
  12. data/CITATION.cff +20 -0
  13. data/Gemfile +5 -0
  14. data/Gemfile.lock +270 -0
  15. data/LICENSE.md +21 -0
  16. data/README.md +733 -0
  17. data/Rakefile +13 -0
  18. data/bin/commonmeta +9 -0
  19. data/commonmeta.gemspec +68 -0
  20. data/lib/commonmeta/array.rb +13 -0
  21. data/lib/commonmeta/author_utils.rb +172 -0
  22. data/lib/commonmeta/cli.rb +70 -0
  23. data/lib/commonmeta/crossref_utils.rb +343 -0
  24. data/lib/commonmeta/doi_utils.rb +81 -0
  25. data/lib/commonmeta/metadata.rb +269 -0
  26. data/lib/commonmeta/metadata_utils.rb +184 -0
  27. data/lib/commonmeta/pubmed.rb +36 -0
  28. data/lib/commonmeta/readers/bibtex_reader.rb +62 -0
  29. data/lib/commonmeta/readers/cff_reader.rb +146 -0
  30. data/lib/commonmeta/readers/codemeta_reader.rb +90 -0
  31. data/lib/commonmeta/readers/crossref_reader.rb +186 -0
  32. data/lib/commonmeta/readers/crossref_xml_reader.rb +379 -0
  33. data/lib/commonmeta/readers/csl_reader.rb +85 -0
  34. data/lib/commonmeta/readers/datacite_reader.rb +169 -0
  35. data/lib/commonmeta/readers/npm_reader.rb +94 -0
  36. data/lib/commonmeta/readers/ris_reader.rb +66 -0
  37. data/lib/commonmeta/readers/schema_org_reader.rb +300 -0
  38. data/lib/commonmeta/schema_utils.rb +19 -0
  39. data/lib/commonmeta/string.rb +7 -0
  40. data/lib/commonmeta/utils.rb +1351 -0
  41. data/lib/commonmeta/version.rb +5 -0
  42. data/lib/commonmeta/whitelist_scrubber.rb +54 -0
  43. data/lib/commonmeta/writers/bibtex_writer.rb +36 -0
  44. data/lib/commonmeta/writers/cff_writer.rb +63 -0
  45. data/lib/commonmeta/writers/citation_writer.rb +14 -0
  46. data/lib/commonmeta/writers/codemeta_writer.rb +33 -0
  47. data/lib/commonmeta/writers/crossref_xml_writer.rb +11 -0
  48. data/lib/commonmeta/writers/csl_writer.rb +11 -0
  49. data/lib/commonmeta/writers/csv_writer.rb +26 -0
  50. data/lib/commonmeta/writers/datacite_writer.rb +94 -0
  51. data/lib/commonmeta/writers/jats_writer.rb +138 -0
  52. data/lib/commonmeta/writers/rdf_xml_writer.rb +11 -0
  53. data/lib/commonmeta/writers/ris_writer.rb +41 -0
  54. data/lib/commonmeta/writers/schema_org_writer.rb +61 -0
  55. data/lib/commonmeta/writers/turtle_writer.rb +11 -0
  56. data/lib/commonmeta/xml_converter.rb +14 -0
  57. data/lib/commonmeta.rb +35 -0
  58. data/resources/2008/09/xsd.xsl +997 -0
  59. data/resources/cff.json +1827 -0
  60. data/resources/commonmeta_v0.9.json +393 -0
  61. data/resources/crossref/AccessIndicators.xsd +47 -0
  62. data/resources/crossref/JATS-journalpublishing1-3d2-mathml3-elements.xsd +10130 -0
  63. data/resources/crossref/JATS-journalpublishing1-3d2-mathml3.xsd +48 -0
  64. data/resources/crossref/JATS-journalpublishing1-elements.xsd +8705 -0
  65. data/resources/crossref/JATS-journalpublishing1-mathml3-elements.xsd +8608 -0
  66. data/resources/crossref/JATS-journalpublishing1-mathml3.xsd +49 -0
  67. data/resources/crossref/JATS-journalpublishing1.xsd +6176 -0
  68. data/resources/crossref/clinicaltrials.xsd +61 -0
  69. data/resources/crossref/common5.3.1.xsd +1530 -0
  70. data/resources/crossref/crossref5.3.1.xsd +1949 -0
  71. data/resources/crossref/crossref_query_output3.0.xsd +1097 -0
  72. data/resources/crossref/fundref.xsd +49 -0
  73. data/resources/crossref/module-ali.xsd +39 -0
  74. data/resources/crossref/relations.xsd +444 -0
  75. data/resources/datacite-contributorType-v4.xsd +35 -0
  76. data/resources/datacite-dateType-v4.xsd +25 -0
  77. data/resources/datacite-descriptionType-v4.xsd +19 -0
  78. data/resources/datacite-funderIdentifierType-v4.xsd +15 -0
  79. data/resources/datacite-nameType-v4.xsd +10 -0
  80. data/resources/datacite-relatedIdentifierType-v4.xsd +34 -0
  81. data/resources/datacite-relationType-v4.xsd +49 -0
  82. data/resources/datacite-resourceType-v4.xsd +28 -0
  83. data/resources/datacite-titleType-v4.xsd +14 -0
  84. data/resources/datacite-v3.json +508 -0
  85. data/resources/datacite-v4.json +512 -0
  86. data/resources/kernel-3.0/include/datacite-contributorType-v3.xsd +33 -0
  87. data/resources/kernel-3.0/include/datacite-dateType-v3.xsd +21 -0
  88. data/resources/kernel-3.0/include/datacite-descriptionType-v3.xsd +17 -0
  89. data/resources/kernel-3.0/include/datacite-relatedIdentifierType-v3.xsd +27 -0
  90. data/resources/kernel-3.0/include/datacite-relationType-v3.xsd +33 -0
  91. data/resources/kernel-3.0/include/datacite-resourceType-v3.xsd +26 -0
  92. data/resources/kernel-3.0/include/datacite-titleType-v3.xsd +12 -0
  93. data/resources/kernel-3.0/include/xml.xsd +286 -0
  94. data/resources/kernel-3.0/metadata.xsd +377 -0
  95. data/resources/kernel-4/include/datacite-contributorType-v4.xsd +35 -0
  96. data/resources/kernel-4/include/datacite-dateType-v4.xsd +25 -0
  97. data/resources/kernel-4/include/datacite-descriptionType-v4.xsd +19 -0
  98. data/resources/kernel-4/include/datacite-funderIdentifierType-v4.xsd +16 -0
  99. data/resources/kernel-4/include/datacite-nameType-v4.xsd +10 -0
  100. data/resources/kernel-4/include/datacite-numberType-v4.xsd +12 -0
  101. data/resources/kernel-4/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  102. data/resources/kernel-4/include/datacite-relationType-v4.xsd +51 -0
  103. data/resources/kernel-4/include/datacite-resourceType-v4.xsd +43 -0
  104. data/resources/kernel-4/include/datacite-titleType-v4.xsd +14 -0
  105. data/resources/kernel-4/include/xml.xsd +286 -0
  106. data/resources/kernel-4/metadata.xsd +707 -0
  107. data/resources/oecd/dfg-mappings.json +1866 -0
  108. data/resources/oecd/for-mappings.json +1099 -0
  109. data/resources/oecd/fos-mappings.json +198 -0
  110. data/resources/schema_org/jsonldcontext.json +7477 -0
  111. data/resources/spdx/licenses.json +5297 -0
  112. data/resources/xml.xsd +286 -0
  113. data/rubocop.sarif +0 -0
  114. data/sonar-project.properties +11 -0
  115. data/spec/array_spec.rb +22 -0
  116. data/spec/author_utils_spec.rb +132 -0
  117. data/spec/cli_spec.rb +309 -0
  118. data/spec/doi_utils_spec.rb +318 -0
  119. data/spec/find_from_format_spec.rb +144 -0
  120. data/spec/fixtures/CITATION.cff +83 -0
  121. data/spec/fixtures/aida.json +82 -0
  122. data/spec/fixtures/cgimp_package.json +18 -0
  123. data/spec/fixtures/cit_package.json +19 -0
  124. data/spec/fixtures/citeproc-no-author.json +26 -0
  125. data/spec/fixtures/citeproc-no-categories.json +21 -0
  126. data/spec/fixtures/citeproc.json +30 -0
  127. data/spec/fixtures/codemeta.json +86 -0
  128. data/spec/fixtures/codemeta_v2.json +86 -0
  129. data/spec/fixtures/crosscite.json +63 -0
  130. data/spec/fixtures/crossref.bib +14 -0
  131. data/spec/fixtures/crossref.json +572 -0
  132. data/spec/fixtures/crossref.ris +15 -0
  133. data/spec/fixtures/crossref.xml +606 -0
  134. data/spec/fixtures/datacite.json +86 -0
  135. data/spec/fixtures/datacite_software.json +21 -0
  136. data/spec/fixtures/datacite_software_missing_comma.json +18 -0
  137. data/spec/fixtures/datacite_software_overlapping_keys.json +18 -0
  138. data/spec/fixtures/datacite_software_version.json +74 -0
  139. data/spec/fixtures/edam_package.json +12 -0
  140. data/spec/fixtures/maremma/codemeta.json +36 -0
  141. data/spec/fixtures/pure.bib +14 -0
  142. data/spec/fixtures/pure.ris +15 -0
  143. data/spec/fixtures/pure.xml +188 -0
  144. data/spec/fixtures/ris_bug.ris +9 -0
  145. data/spec/fixtures/schema_4.0.xml +140 -0
  146. data/spec/fixtures/schema_org.json +49 -0
  147. data/spec/fixtures/schema_org_front-matter.json +32 -0
  148. data/spec/fixtures/schema_org_geolocation.json +82 -0
  149. data/spec/fixtures/schema_org_geoshape.json +550 -0
  150. data/spec/fixtures/schema_org_gtex.json +75 -0
  151. data/spec/fixtures/schema_org_list.json +12623 -0
  152. data/spec/fixtures/schema_org_tdl_iodp_invalid_authors.json +25 -0
  153. data/spec/fixtures/schema_org_topmed.json +53 -0
  154. data/spec/fixtures/schema_org_type_as_array.json +41 -0
  155. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/default.yml +110 -0
  156. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_bibtex.yml +110 -0
  157. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_crossref_xml.yml +110 -0
  158. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_datacite.yml +110 -0
  159. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_schema_org.yml +110 -0
  160. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/default.yml +55 -0
  161. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_bibtex.yml +55 -0
  162. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_crossref_xml.yml +55 -0
  163. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_datacite.yml +55 -0
  164. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_schema_org.yml +55 -0
  165. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/default.yml +299 -0
  166. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_bibtex.yml +299 -0
  167. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_citation.yml +299 -0
  168. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_crossref_xml.yml +299 -0
  169. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_datacite.yml +299 -0
  170. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_jats.yml +299 -0
  171. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_schema_org.yml +299 -0
  172. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/default.yml +172 -0
  173. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_bibtex.yml +172 -0
  174. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_citation.yml +172 -0
  175. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_datacite.yml +172 -0
  176. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_jats.yml +172 -0
  177. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_schema_org.yml +172 -0
  178. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/default.yml +1098 -0
  179. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/to_datacite.yml +1098 -0
  180. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/to_schema_org.yml +1100 -0
  181. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/crossref.yml +55 -0
  182. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/datacite.yml +55 -0
  183. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/jalc.yml +55 -0
  184. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/kisti.yml +55 -0
  185. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/medra.yml +55 -0
  186. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/op.yml +55 -0
  187. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/author.yml +164 -0
  188. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/no_author.yml +164 -0
  189. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/single_author.yml +164 -0
  190. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/with_organization.yml +164 -0
  191. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml +247 -0
  192. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/crossref.yml +55 -0
  193. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/datacite.yml +55 -0
  194. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/jalc.yml +55 -0
  195. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/kisti.yml +55 -0
  196. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/medra.yml +55 -0
  197. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/not_found.yml +55 -0
  198. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/op.yml +55 -0
  199. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/crossref.yml +55 -0
  200. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/crossref_doi_not_url.yml +55 -0
  201. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/datacite.yml +55 -0
  202. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/datacite_doi_http.yml +55 -0
  203. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/unknown_DOI_registration_agency.yml +55 -0
  204. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_for_match.yml +221 -0
  205. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_for_with_schemeUri_in_hash.yml +221 -0
  206. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_match.yml +221 -0
  207. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_no_match.yml +221 -0
  208. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_for_match.yml +221 -0
  209. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_match.yml +221 -0
  210. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_no_match.yml +221 -0
  211. data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org/with_id.yml +221 -0
  212. data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org_creators/with_affiliation.yml +221 -0
  213. data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org_creators/without_affiliation.yml +221 -0
  214. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/cff-converter-python.yml +200 -0
  215. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/ruby-cff.yml +154 -0
  216. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/ruby-cff_repository_url.yml +154 -0
  217. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_codemeta_metadata/maremma.yml +86 -0
  218. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_codemeta_metadata/metadata_reports.yml +93 -0
  219. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_ORCID_ID.yml +337 -0
  220. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_SICI_DOI.yml +347 -0
  221. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_data_citation.yml +359 -0
  222. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/JaLC.yml +384 -0
  223. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/KISTI.yml +330 -0
  224. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/OP.yml +969 -0
  225. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/affiliation_is_space.yml +358 -0
  226. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/another_book.yml +312 -0
  227. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/another_book_chapter.yml +465 -0
  228. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/article_id_as_page_number.yml +276 -0
  229. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/author_literal.yml +492 -0
  230. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book.yml +523 -0
  231. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_chapter.yml +377 -0
  232. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_chapter_with_RDF_for_container.yml +336 -0
  233. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_oup.yml +289 -0
  234. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/component.yml +289 -0
  235. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dataset.yml +299 -0
  236. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dataset_usda.yml +341 -0
  237. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/date_in_future.yml +570 -0
  238. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dissertation.yml +301 -0
  239. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/empty_given_name.yml +303 -0
  240. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/invalid_date.yml +307 -0
  241. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article.yml +461 -0
  242. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_original_language_title.yml +276 -0
  243. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with.yml +470 -0
  244. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with_RDF_for_container.yml +519 -0
  245. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with_funding.yml +456 -0
  246. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_issue.yml +270 -0
  247. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/mEDRA.yml +310 -0
  248. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/markup.yml +329 -0
  249. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/missing_creator.yml +307 -0
  250. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_issn.yml +393 -0
  251. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_titles.yml +265 -0
  252. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_titles_with_missing.yml +860 -0
  253. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/not_found_error.yml +209 -0
  254. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/peer_review.yml +287 -0
  255. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/posted_content.yml +326 -0
  256. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/posted_content_copernicus.yml +297 -0
  257. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/report_osti.yml +315 -0
  258. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/vor_with_url.yml +451 -0
  259. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/yet_another_book.yml +816 -0
  260. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/yet_another_book_chapter.yml +324 -0
  261. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_raw/journal_article.yml +110 -0
  262. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/dissertation.yml +152 -0
  263. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/funding_references.yml +175 -0
  264. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/subject_scheme.yml +328 -0
  265. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date/publication_date.yml +221 -0
  266. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/date.yml +221 -0
  267. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/year-month.yml +221 -0
  268. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/year.yml +221 -0
  269. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/date.yml +221 -0
  270. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/year-month.yml +221 -0
  271. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/year.yml +221 -0
  272. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/date.yml +221 -0
  273. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/year-month.yml +221 -0
  274. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/year.yml +221 -0
  275. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/future.yml +221 -0
  276. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/invalid.yml +221 -0
  277. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/nil.yml +221 -0
  278. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/past.yml +221 -0
  279. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/present.yml +221 -0
  280. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_familyName.yml +133 -0
  281. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_name_in_display-order_with_ORCID.yml +153 -0
  282. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/is_organization.yml +164 -0
  283. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/name_with_affiliation_crossref.yml +247 -0
  284. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/only_familyName_and_givenName.yml +468 -0
  285. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/BlogPosting.yml +530 -0
  286. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/BlogPosting_with_new_DOI.yml +530 -0
  287. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/get_schema_org_metadata_front_matter/BlogPosting.yml +534 -0
  288. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/harvard_dataverse.yml +1838 -0
  289. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/pangaea.yml +468 -0
  290. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/upstream_blog.yml +885 -0
  291. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/zenodo.yml +583 -0
  292. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/only_title.yml +221 -0
  293. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_and_pages.yml +221 -0
  294. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_volume_and_pages.yml +221 -0
  295. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_volume_issue_and_pages.yml +221 -0
  296. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_as_cff_url.yml +221 -0
  297. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_as_codemeta_url.yml +221 -0
  298. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url.yml +221 -0
  299. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url_cff_file.yml +221 -0
  300. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url_file.yml +221 -0
  301. data/spec/fixtures/vcr_cassettes/Briard_Metadata/handle_input/DOI_RA_not_Crossref_or_DataCite.yml +55 -0
  302. data/spec/fixtures/vcr_cassettes/Briard_Metadata/handle_input/unknown_DOI_prefix.yml +55 -0
  303. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_comma.yml +164 -0
  304. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_family_name.yml +164 -0
  305. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_id.yml +164 -0
  306. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_known_given_name.yml +164 -0
  307. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_no_info.yml +164 -0
  308. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_orcid_id.yml +164 -0
  309. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_type_organization.yml +164 -0
  310. data/spec/fixtures/vcr_cassettes/Briard_Metadata/json_schema_errors/is_valid.yml +221 -0
  311. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/not_found.yml +221 -0
  312. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/with_trailing_slash.yml +221 -0
  313. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/with_trailing_slash_and_to_https.yml +221 -0
  314. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/doi.yml +221 -0
  315. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/doi_as_url.yml +221 -0
  316. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/filename.yml +221 -0
  317. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/ftp.yml +221 -0
  318. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/invalid_url.yml +221 -0
  319. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/sandbox_via_options.yml +221 -0
  320. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/sandbox_via_url.yml +221 -0
  321. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/string.yml +221 -0
  322. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/url.yml +221 -0
  323. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/url_with_utf-8.yml +221 -0
  324. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_ids/doi.yml +221 -0
  325. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_ids/url.yml +221 -0
  326. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_array.yml +221 -0
  327. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_empty_array.yml +221 -0
  328. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_hash.yml +221 -0
  329. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_string.yml +221 -0
  330. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/uri.yml +221 -0
  331. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/with_trailing_slash.yml +221 -0
  332. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/with_trailing_slash_and_to_https.yml +221 -0
  333. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/array.yml +221 -0
  334. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/array_of_strings.yml +221 -0
  335. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/first.yml +221 -0
  336. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/hash.yml +221 -0
  337. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/hash_with_array_value.yml +221 -0
  338. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/nil.yml +221 -0
  339. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/string.yml +221 -0
  340. data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/decode_anothe_doi.yml +221 -0
  341. data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/decode_doi.yml +221 -0
  342. data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/encode_doi.yml +221 -0
  343. data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/onlies_keep_specific_tags.yml +221 -0
  344. data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/removes_a_tags.yml +221 -0
  345. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_id.yml +221 -0
  346. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_not_found.yml +221 -0
  347. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_url.yml +221 -0
  348. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/name_to_spdx_exists.yml +221 -0
  349. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/name_to_spdx_id.yml +221 -0
  350. data/spec/fixtures/vcr_cassettes/Briard_Metadata/to_schema_org/with_id.yml +221 -0
  351. data/spec/fixtures/vcr_cassettes/Briard_Metadata/to_schema_org_identifiers/with_identifiers.yml +221 -0
  352. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid.yml +221 -0
  353. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_https.yml +221 -0
  354. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_id.yml +221 -0
  355. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_sandbox.yml +221 -0
  356. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_sandbox_https.yml +221 -0
  357. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_with_spaces.yml +221 -0
  358. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_wrong_id.yml +221 -0
  359. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_www.yml +221 -0
  360. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme.yml +221 -0
  361. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_https.yml +221 -0
  362. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_trailing_slash.yml +221 -0
  363. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_www.yml +221 -0
  364. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/DOI.yml +221 -0
  365. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/ISSN.yml +221 -0
  366. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/URL.yml +221 -0
  367. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/string.yml +221 -0
  368. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/BlogPosting.yml +81 -0
  369. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/Dataset.yml +120 -0
  370. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/authors_with_affiliations.yml +186 -0
  371. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/climate_data.yml +74 -0
  372. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/from_schema_org.yml +530 -0
  373. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/keywords_subject_scheme.yml +149 -0
  374. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/maremma.yml +86 -0
  375. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/text.yml +100 -0
  376. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/with_data_citation.yml +247 -0
  377. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/with_pages.yml +228 -0
  378. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/Collection_of_Jupyter_notebooks.yml +143 -0
  379. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/SoftwareSourceCode_Zenodo.yml +150 -0
  380. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/SoftwareSourceCode_also_Zenodo.yml +93 -0
  381. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/ruby-cff.yml +154 -0
  382. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Dataset.yml +120 -0
  383. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Journal_article.yml +247 -0
  384. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Journal_article_vancouver_style.yml +299 -0
  385. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Missing_author.yml +199 -0
  386. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/interactive_resource_without_dates.yml +75 -0
  387. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/software_w/version.yml +86 -0
  388. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite.yml +76 -0
  389. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite_check_codemeta_v2.yml +76 -0
  390. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/another_schema_org_from_front-matter.yml +541 -0
  391. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/journal_article.yml +55 -0
  392. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/journal_article_from_datacite.yml +85 -0
  393. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/posted_content.yml +283 -0
  394. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_another_science_blog.yml +123 -0
  395. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_front_matter.yml +477 -0
  396. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_upstream_blog.yml +1025 -0
  397. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/Another_dataset.yml +110 -0
  398. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/BlogPosting.yml +81 -0
  399. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/BlogPosting_schema_org.yml +530 -0
  400. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/Dataset.yml +120 -0
  401. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/container_title.yml +153 -0
  402. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/interactive_resource_without_dates.yml +75 -0
  403. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/journal_article.yml +247 -0
  404. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/keywords_subject_scheme.yml +149 -0
  405. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/maremma.yml +86 -0
  406. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/missing_creator.yml +199 -0
  407. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/multiple_abstracts.yml +101 -0
  408. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/organization_author.yml +314 -0
  409. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/software.yml +90 -0
  410. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/software_w/version.yml +86 -0
  411. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/with_only_first_page.yml +333 -0
  412. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/with_pages.yml +228 -0
  413. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/climate_data.yml +74 -0
  414. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/maremma.yml +86 -0
  415. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/text.yml +100 -0
  416. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/with_data_citation.yml +247 -0
  417. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/with_pages.yml +228 -0
  418. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/from_schema_org.yml +530 -0
  419. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/maremma.yml +86 -0
  420. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/with_ORCID_ID.yml +228 -0
  421. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/with_data_citation.yml +247 -0
  422. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/from_schema_org.yml +530 -0
  423. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/maremma.yml +86 -0
  424. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_ORCID_ID.yml +228 -0
  425. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_data_citation.yml +247 -0
  426. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/Dataset_in_schema_4_0.yml +120 -0
  427. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/Text_pass-thru.yml +106 -0
  428. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/book_chapter.yml +163 -0
  429. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/from_schema_org.yml +530 -0
  430. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/interactive_resource_without_dates.yml +75 -0
  431. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/maremma.yml +86 -0
  432. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_ORCID_ID.yml +228 -0
  433. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_data_citation.yml +247 -0
  434. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_editor.yml +355 -0
  435. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/BlogPosting.yml +81 -0
  436. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/BlogPosting_schema_org.yml +530 -0
  437. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/journal_article.yml +247 -0
  438. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/maremma.yml +86 -0
  439. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/with_pages.yml +228 -0
  440. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/BlogPosting.yml +81 -0
  441. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/BlogPosting_schema_org.yml +530 -0
  442. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/Dataset.yml +120 -0
  443. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/alternate_name.yml +138 -0
  444. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/journal_article.yml +115 -0
  445. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/keywords_with_subject_scheme.yml +149 -0
  446. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/maremma.yml +86 -0
  447. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/with_pages.yml +112 -0
  448. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Another_Schema_org_JSON.yml +120 -0
  449. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Funding.yml +192 -0
  450. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Funding_OpenAIRE.yml +150 -0
  451. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON.yml +98 -0
  452. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_Cyark.yml +160 -0
  453. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_IsSupplementTo.yml +153 -0
  454. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/alternate_identifiers.yml +131 -0
  455. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/data_catalog.yml +136 -0
  456. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/geo_location_box.yml +181 -0
  457. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/interactive_resource_without_dates.yml +127 -0
  458. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/journal_article.yml +247 -0
  459. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/maremma_schema_org_JSON.yml +86 -0
  460. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/series_information.yml +174 -0
  461. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/subject_scheme.yml +199 -0
  462. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/subject_scheme_multiple_keywords.yml +201 -0
  463. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/BlogPosting.yml +81 -0
  464. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/BlogPosting_schema_org.yml +530 -0
  465. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/Dataset.yml +120 -0
  466. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/journal_article.yml +247 -0
  467. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/with_pages.yml +228 -0
  468. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/default.yml +110 -0
  469. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_bibtex.yml +110 -0
  470. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_crossref_xml.yml +110 -0
  471. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_datacite.yml +110 -0
  472. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_schema_org.yml +110 -0
  473. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/default.yml +55 -0
  474. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_bibtex.yml +55 -0
  475. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_crossref_xml.yml +55 -0
  476. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_datacite.yml +55 -0
  477. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_schema_org.yml +55 -0
  478. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/default.yml +299 -0
  479. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_bibtex.yml +299 -0
  480. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_citation.yml +299 -0
  481. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_crossref_xml.yml +299 -0
  482. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_datacite.yml +299 -0
  483. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_jats.yml +299 -0
  484. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_schema_org.yml +299 -0
  485. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/default.yml +172 -0
  486. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_bibtex.yml +172 -0
  487. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_citation.yml +172 -0
  488. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_datacite.yml +172 -0
  489. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_jats.yml +172 -0
  490. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_schema_org.yml +172 -0
  491. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/default.yml +1096 -0
  492. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/to_datacite.yml +1096 -0
  493. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/to_schema_org.yml +1098 -0
  494. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/crossref.yml +55 -0
  495. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/datacite.yml +55 -0
  496. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/jalc.yml +55 -0
  497. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/kisti.yml +55 -0
  498. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/medra.yml +55 -0
  499. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/op.yml +55 -0
  500. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml +247 -0
  501. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/crossref.yml +55 -0
  502. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/datacite.yml +55 -0
  503. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/jalc.yml +55 -0
  504. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/kisti.yml +55 -0
  505. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/medra.yml +55 -0
  506. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/not_found.yml +55 -0
  507. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/op.yml +55 -0
  508. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/crossref.yml +55 -0
  509. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/crossref_doi_not_url.yml +55 -0
  510. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/datacite.yml +55 -0
  511. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/datacite_doi_http.yml +55 -0
  512. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/unknown_DOI_registration_agency.yml +55 -0
  513. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_for_match.yml +221 -0
  514. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_for_with_schemeUri_in_hash.yml +221 -0
  515. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_match.yml +221 -0
  516. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_no_match.yml +221 -0
  517. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_for_match.yml +221 -0
  518. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_match.yml +221 -0
  519. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_no_match.yml +221 -0
  520. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/from_schema_org/with_id.yml +221 -0
  521. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/cff-converter-python.yml +200 -0
  522. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/ruby-cff.yml +154 -0
  523. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/ruby-cff_repository_url.yml +154 -0
  524. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_codemeta_metadata/maremma.yml +86 -0
  525. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_codemeta_metadata/metadata_reports.yml +93 -0
  526. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_ORCID_ID.yml +337 -0
  527. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_SICI_DOI.yml +347 -0
  528. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_data_citation.yml +170 -0
  529. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/JaLC.yml +384 -0
  530. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/KISTI.yml +330 -0
  531. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/OP.yml +969 -0
  532. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/affiliation_is_space.yml +358 -0
  533. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/another_book.yml +312 -0
  534. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/another_book_chapter.yml +465 -0
  535. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/article_id_as_page_number.yml +276 -0
  536. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/author_literal.yml +492 -0
  537. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book.yml +523 -0
  538. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_chapter.yml +377 -0
  539. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_chapter_with_RDF_for_container.yml +336 -0
  540. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_oup.yml +289 -0
  541. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/component.yml +289 -0
  542. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dataset.yml +300 -0
  543. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dataset_usda.yml +341 -0
  544. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/date_in_future.yml +570 -0
  545. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dissertation.yml +301 -0
  546. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/empty_given_name.yml +303 -0
  547. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/invalid_date.yml +307 -0
  548. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article.yml +461 -0
  549. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_original_language_title.yml +276 -0
  550. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with.yml +908 -0
  551. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with_RDF_for_container.yml +519 -0
  552. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with_funding.yml +456 -0
  553. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_issue.yml +270 -0
  554. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/mEDRA.yml +310 -0
  555. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/markup.yml +329 -0
  556. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/missing_creator.yml +307 -0
  557. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_issn.yml +393 -0
  558. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_titles.yml +265 -0
  559. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_titles_with_missing.yml +860 -0
  560. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/not_found_error.yml +209 -0
  561. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/peer_review.yml +287 -0
  562. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/posted_content.yml +326 -0
  563. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/posted_content_copernicus.yml +297 -0
  564. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/report_osti.yml +315 -0
  565. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/vor_with_url.yml +451 -0
  566. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/yet_another_book.yml +816 -0
  567. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/yet_another_book_chapter.yml +324 -0
  568. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_raw/journal_article.yml +110 -0
  569. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/dissertation.yml +152 -0
  570. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/funding_references.yml +175 -0
  571. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/subject_scheme.yml +328 -0
  572. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date/publication_date.yml +221 -0
  573. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/date.yml +221 -0
  574. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/year-month.yml +221 -0
  575. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/year.yml +221 -0
  576. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/date.yml +221 -0
  577. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/year-month.yml +221 -0
  578. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/year.yml +221 -0
  579. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/date.yml +221 -0
  580. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/year-month.yml +221 -0
  581. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/year.yml +221 -0
  582. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/future.yml +221 -0
  583. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/invalid.yml +221 -0
  584. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/nil.yml +221 -0
  585. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/past.yml +221 -0
  586. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/present.yml +221 -0
  587. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/has_familyName.yml +133 -0
  588. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/has_name_in_display-order_with_ORCID.yml +153 -0
  589. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/name_with_affiliation_crossref.yml +247 -0
  590. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/only_familyName_and_givenName.yml +467 -0
  591. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/BlogPosting.yml +530 -0
  592. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/BlogPosting_with_new_DOI.yml +530 -0
  593. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/get_schema_org_metadata_front_matter/BlogPosting.yml +534 -0
  594. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/harvard_dataverse.yml +1838 -0
  595. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/pangaea.yml +467 -0
  596. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/upstream_blog.yml +885 -0
  597. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/zenodo.yml +583 -0
  598. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/only_title.yml +221 -0
  599. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_and_pages.yml +221 -0
  600. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_volume_and_pages.yml +221 -0
  601. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_volume_issue_and_pages.yml +221 -0
  602. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_as_cff_url.yml +221 -0
  603. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_as_codemeta_url.yml +221 -0
  604. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url.yml +221 -0
  605. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url_cff_file.yml +221 -0
  606. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url_file.yml +221 -0
  607. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/handle_input/DOI_RA_not_Crossref_or_DataCite.yml +55 -0
  608. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/handle_input/unknown_DOI_prefix.yml +55 -0
  609. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/json_schema_errors/is_valid.yml +221 -0
  610. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/not_found.yml +221 -0
  611. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/with_trailing_slash.yml +221 -0
  612. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/with_trailing_slash_and_to_https.yml +221 -0
  613. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/doi.yml +221 -0
  614. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/doi_as_url.yml +221 -0
  615. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/filename.yml +221 -0
  616. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/ftp.yml +221 -0
  617. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/invalid_url.yml +221 -0
  618. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/sandbox_via_options.yml +221 -0
  619. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/sandbox_via_url.yml +221 -0
  620. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/string.yml +221 -0
  621. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/url.yml +221 -0
  622. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/url_with_utf-8.yml +221 -0
  623. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_array.yml +221 -0
  624. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_empty_array.yml +221 -0
  625. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_hash.yml +221 -0
  626. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_string.yml +221 -0
  627. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/uri.yml +221 -0
  628. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/with_trailing_slash.yml +221 -0
  629. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/with_trailing_slash_and_to_https.yml +221 -0
  630. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/array.yml +221 -0
  631. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/array_of_strings.yml +221 -0
  632. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/first.yml +221 -0
  633. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/hash.yml +221 -0
  634. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/hash_with_array_value.yml +221 -0
  635. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/nil.yml +221 -0
  636. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/string.yml +221 -0
  637. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/decode_anothe_doi.yml +221 -0
  638. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/decode_doi.yml +221 -0
  639. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/encode_doi.yml +221 -0
  640. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/sanitize/onlies_keep_specific_tags.yml +221 -0
  641. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/sanitize/removes_a_tags.yml +221 -0
  642. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_id.yml +221 -0
  643. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_not_found.yml +221 -0
  644. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_url.yml +221 -0
  645. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/name_to_spdx_exists.yml +221 -0
  646. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/name_to_spdx_id.yml +221 -0
  647. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/to_schema_org/with_id.yml +221 -0
  648. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/to_schema_org_identifiers/with_identifiers.yml +221 -0
  649. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid.yml +221 -0
  650. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_https.yml +221 -0
  651. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_id.yml +221 -0
  652. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_sandbox.yml +221 -0
  653. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_sandbox_https.yml +221 -0
  654. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_with_spaces.yml +221 -0
  655. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_wrong_id.yml +221 -0
  656. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_www.yml +221 -0
  657. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme.yml +221 -0
  658. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_https.yml +221 -0
  659. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_trailing_slash.yml +221 -0
  660. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_www.yml +221 -0
  661. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/DOI.yml +221 -0
  662. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/ISSN.yml +221 -0
  663. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/URL.yml +221 -0
  664. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/string.yml +221 -0
  665. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/BlogPosting.yml +81 -0
  666. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/Dataset.yml +120 -0
  667. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/authors_with_affiliations.yml +186 -0
  668. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/climate_data.yml +74 -0
  669. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/from_schema_org.yml +530 -0
  670. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/keywords_subject_scheme.yml +149 -0
  671. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/maremma.yml +86 -0
  672. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/text.yml +100 -0
  673. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/with_data_citation.yml +247 -0
  674. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/with_pages.yml +228 -0
  675. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/Collection_of_Jupyter_notebooks.yml +143 -0
  676. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/SoftwareSourceCode_Zenodo.yml +150 -0
  677. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/SoftwareSourceCode_also_Zenodo.yml +93 -0
  678. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/ruby-cff.yml +154 -0
  679. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Dataset.yml +120 -0
  680. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Journal_article.yml +247 -0
  681. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Journal_article_vancouver_style.yml +299 -0
  682. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Missing_author.yml +199 -0
  683. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/interactive_resource_without_dates.yml +75 -0
  684. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/software_w/version.yml +86 -0
  685. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite.yml +76 -0
  686. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite_check_codemeta_v2.yml +76 -0
  687. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/another_schema_org_from_front-matter.yml +541 -0
  688. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/journal_article.yml +55 -0
  689. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/journal_article_from_datacite.yml +85 -0
  690. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/posted_content.yml +283 -0
  691. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_another_science_blog.yml +123 -0
  692. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_front_matter.yml +477 -0
  693. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_upstream_blog.yml +1025 -0
  694. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/Another_dataset.yml +110 -0
  695. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/BlogPosting.yml +81 -0
  696. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/BlogPosting_schema_org.yml +530 -0
  697. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/Dataset.yml +120 -0
  698. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/container_title.yml +153 -0
  699. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/interactive_resource_without_dates.yml +75 -0
  700. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/journal_article.yml +247 -0
  701. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/keywords_subject_scheme.yml +149 -0
  702. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/maremma.yml +86 -0
  703. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/missing_creator.yml +199 -0
  704. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/multiple_abstracts.yml +101 -0
  705. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/organization_author.yml +314 -0
  706. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/software.yml +90 -0
  707. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/software_w/version.yml +86 -0
  708. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/with_only_first_page.yml +333 -0
  709. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/with_pages.yml +228 -0
  710. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/climate_data.yml +74 -0
  711. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/maremma.yml +86 -0
  712. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/text.yml +100 -0
  713. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/with_data_citation.yml +247 -0
  714. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/with_pages.yml +228 -0
  715. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/dissertation.yml +218 -0
  716. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/from_schema_org.yml +530 -0
  717. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/journal_article.yml +407 -0
  718. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/maremma.yml +86 -0
  719. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/with_ORCID_ID.yml +228 -0
  720. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/with_data_citation.yml +247 -0
  721. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/Dataset_in_schema_4_0.yml +120 -0
  722. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/Text_pass-thru.yml +106 -0
  723. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/book_chapter.yml +163 -0
  724. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/from_schema_org.yml +530 -0
  725. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/interactive_resource_without_dates.yml +75 -0
  726. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/maremma.yml +86 -0
  727. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_ORCID_ID.yml +228 -0
  728. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_data_citation.yml +247 -0
  729. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_editor.yml +355 -0
  730. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/BlogPosting.yml +81 -0
  731. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/BlogPosting_schema_org.yml +530 -0
  732. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/journal_article.yml +247 -0
  733. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/maremma.yml +86 -0
  734. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/with_pages.yml +228 -0
  735. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/BlogPosting.yml +81 -0
  736. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/BlogPosting_schema_org.yml +530 -0
  737. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/Dataset.yml +120 -0
  738. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/alternate_name.yml +138 -0
  739. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/journal_article.yml +115 -0
  740. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/keywords_with_subject_scheme.yml +149 -0
  741. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/maremma.yml +86 -0
  742. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/with_pages.yml +112 -0
  743. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Another_Schema_org_JSON.yml +120 -0
  744. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Funding.yml +192 -0
  745. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Funding_OpenAIRE.yml +150 -0
  746. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON.yml +98 -0
  747. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON_Cyark.yml +160 -0
  748. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON_IsSupplementTo.yml +153 -0
  749. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/alternate_identifiers.yml +131 -0
  750. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/data_catalog.yml +136 -0
  751. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/geo_location_box.yml +181 -0
  752. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/interactive_resource_without_dates.yml +127 -0
  753. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/journal_article.yml +247 -0
  754. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/maremma_schema_org_JSON.yml +86 -0
  755. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/series_information.yml +174 -0
  756. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/subject_scheme.yml +199 -0
  757. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/subject_scheme_multiple_keywords.yml +201 -0
  758. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/BlogPosting.yml +81 -0
  759. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/BlogPosting_schema_org.yml +530 -0
  760. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/Dataset.yml +120 -0
  761. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/journal_article.yml +247 -0
  762. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/with_pages.yml +228 -0
  763. data/spec/fixtures/vivli.xml +17 -0
  764. data/spec/metadata_spec.rb +147 -0
  765. data/spec/readers/bibtex_reader_spec.rb +58 -0
  766. data/spec/readers/cff_reader_spec.rb +148 -0
  767. data/spec/readers/codemeta_reader_spec.rb +116 -0
  768. data/spec/readers/crossref_reader_spec.rb +919 -0
  769. data/spec/readers/crossref_xml_reader_spec.rb +948 -0
  770. data/spec/readers/csl_reader_spec.rb +61 -0
  771. data/spec/readers/datacite_reader_spec.rb +156 -0
  772. data/spec/readers/npm_reader_spec.rb +69 -0
  773. data/spec/readers/ris_reader_spec.rb +70 -0
  774. data/spec/readers/schema_org_reader_spec.rb +416 -0
  775. data/spec/schema_utils_spec.rb +16 -0
  776. data/spec/spec_helper.rb +96 -0
  777. data/spec/utils_spec.rb +631 -0
  778. data/spec/writers/bibtex_writer_spec.rb +160 -0
  779. data/spec/writers/cff_writer_spec.rb +118 -0
  780. data/spec/writers/citation_writer_spec.rb +51 -0
  781. data/spec/writers/codemeta_writer_spec.rb +47 -0
  782. data/spec/writers/crossref_xml_writer_spec.rb +173 -0
  783. data/spec/writers/csl_writer_spec.rb +291 -0
  784. data/spec/writers/csv_writer_spec.rb +82 -0
  785. data/spec/writers/datacite_writer_spec.rb +150 -0
  786. data/spec/writers/jats_writer_spec.rb +210 -0
  787. data/spec/writers/rdf_xml_writer_spec.rb +91 -0
  788. data/spec/writers/ris_writer_spec.rb +206 -0
  789. data/spec/writers/schema_org_writer_spec.rb +301 -0
  790. data/spec/writers/turtle_writer_spec.rb +85 -0
  791. metadata +1514 -0
@@ -0,0 +1,1866 @@
1
+ {
2
+ "mappingListVersion": "1.0",
3
+ "originalUrl": "https://www.dfg.de/en/dfg_profile/statutory_bodies/review_boards/subject_areas/index.jsp",
4
+ "dfgFields": [
5
+ {
6
+ "dfgId": "101",
7
+ "dfgLabel": "Ancient Cultures",
8
+ "fosId": "6.1",
9
+ "fosLabel": "History and archaeology"
10
+ },
11
+ {
12
+ "dfgId": "101",
13
+ "dfgLabel": "Ancient Cultures",
14
+ "fosId": "6.2",
15
+ "fosLabel": "Languages and literature"
16
+ },
17
+ {
18
+ "dfgId": "10101",
19
+ "dfgLabel": "Prehistory",
20
+ "fosId": "6.1",
21
+ "fosLabel": "History and archaeology"
22
+ },
23
+ {
24
+ "dfgId": "10102",
25
+ "dfgLabel": "Classical Philology",
26
+ "fosId": "6.2",
27
+ "fosLabel": "Languages and literature"
28
+ },
29
+ {
30
+ "dfgId": "10103",
31
+ "dfgLabel": "Ancient History",
32
+ "fosId": "6.1",
33
+ "fosLabel": "History and archaeology"
34
+ },
35
+ {
36
+ "dfgId": "10104",
37
+ "dfgLabel": "Classical Archaeology",
38
+ "fosId": "6.1",
39
+ "fosLabel": "History and archaeology"
40
+ },
41
+ {
42
+ "dfgId": "10105",
43
+ "dfgLabel": "Egyptology and Ancient Near Eastern Studies",
44
+ "fosId": "6.1",
45
+ "fosLabel": "History and archaeology"
46
+ },
47
+ {
48
+ "dfgId": "102",
49
+ "dfgLabel": "History",
50
+ "fosId": "6.1",
51
+ "fosLabel": "History and archaeology"
52
+ },
53
+ {
54
+ "dfgId": "10201",
55
+ "dfgLabel": "Medieval History",
56
+ "fosId": "6.1",
57
+ "fosLabel": "History and archaeology"
58
+ },
59
+ {
60
+ "dfgId": "10202",
61
+ "dfgLabel": "Early Modern History",
62
+ "fosId": "6.1",
63
+ "fosLabel": "History and archaeology"
64
+ },
65
+ {
66
+ "dfgId": "10203",
67
+ "dfgLabel": "Modern and Current History",
68
+ "fosId": "6.1",
69
+ "fosLabel": "History and archaeology"
70
+ },
71
+ {
72
+ "dfgId": "10204",
73
+ "dfgLabel": "History of Science",
74
+ "fosId": "6.3",
75
+ "fosLabel": "Philosophy, ethics and religion"
76
+ },
77
+ {
78
+ "dfgId": "103",
79
+ "dfgLabel": "Fine Arts, Music, Theatre and Media Studies",
80
+ "fosId": "6.4",
81
+ "fosLabel": "Art (arts, history of arts, performing arts, music)"
82
+ },
83
+ {
84
+ "dfgId": "10301",
85
+ "dfgLabel": "Art History",
86
+ "fosId": "6.4",
87
+ "fosLabel": "Art (arts, history of arts, performing arts, music)"
88
+ },
89
+ {
90
+ "dfgId": "10302",
91
+ "dfgLabel": "Musicology",
92
+ "fosId": "6.4",
93
+ "fosLabel": "Art (arts, history of arts, performing arts, music)"
94
+ },
95
+ {
96
+ "dfgId": "10303",
97
+ "dfgLabel": "Theatre and Media Studies",
98
+ "fosId": "6.4",
99
+ "fosLabel": "Art (arts, history of arts, performing arts, music)"
100
+ },
101
+ {
102
+ "dfgId": "104",
103
+ "dfgLabel": "Linguistics",
104
+ "fosId": "6.2",
105
+ "fosLabel": "Languages and literature"
106
+ },
107
+ {
108
+ "dfgId": "10401",
109
+ "dfgLabel": "General and Applied Linguistics",
110
+ "fosId": "6.2",
111
+ "fosLabel": "Languages and literature"
112
+ },
113
+ {
114
+ "dfgId": "10402",
115
+ "dfgLabel": "Individual Linguistics",
116
+ "fosId": "6.2",
117
+ "fosLabel": "Languages and literature"
118
+ },
119
+ {
120
+ "dfgId": "10403",
121
+ "dfgLabel": "Typology, NonEuropean Languages, Historical Linguistics",
122
+ "fosId": "6.2",
123
+ "fosLabel": "Languages and literature"
124
+ },
125
+ {
126
+ "dfgId": "105",
127
+ "dfgLabel": "Literary Studies",
128
+ "fosId": "6.2",
129
+ "fosLabel": "Languages and literature"
130
+ },
131
+ {
132
+ "dfgId": "10501",
133
+ "dfgLabel": "Medieval German Literature",
134
+ "fosId": "6.2",
135
+ "fosLabel": "Languages and literature"
136
+ },
137
+ {
138
+ "dfgId": "10502",
139
+ "dfgLabel": "Modern German Literature",
140
+ "fosId": "6.2",
141
+ "fosLabel": "Languages and literature"
142
+ },
143
+ {
144
+ "dfgId": "10503",
145
+ "dfgLabel": "European and American Literature",
146
+ "fosId": "6.2",
147
+ "fosLabel": "Languages and literature"
148
+ },
149
+ {
150
+ "dfgId": "10504",
151
+ "dfgLabel": "General and Comparative Literature and Cultural Studies",
152
+ "fosId": "6.2",
153
+ "fosLabel": "Languages and literature"
154
+ },
155
+ {
156
+ "dfgId": "106",
157
+ "dfgLabel": "NonEuropean Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies",
158
+ "fosId": "6.3",
159
+ "fosLabel": "Philosophy, ethics and religion"
160
+ },
161
+ {
162
+ "dfgId": "106",
163
+ "dfgLabel": "NonEuropean Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies",
164
+ "fosId": "5.4",
165
+ "fosLabel": "Sociology"
166
+ },
167
+ {
168
+ "dfgId": "106",
169
+ "dfgLabel": "NonEuropean Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies",
170
+ "fosId": "6.2",
171
+ "fosLabel": "Languages and literature"
172
+ },
173
+ {
174
+ "dfgId": "10601",
175
+ "dfgLabel": "Social and Cultural Anthropology and Ethnology/Folklore",
176
+ "fosId": "5.4",
177
+ "fosLabel": "Sociology"
178
+ },
179
+ {
180
+ "dfgId": "10602",
181
+ "dfgLabel": "Asian Studies",
182
+ "fosId": "6.5",
183
+ "fosLabel": "Other humanities"
184
+ },
185
+ {
186
+ "dfgId": "10602",
187
+ "dfgLabel": "Asian Studies",
188
+ "fosId": "6.2",
189
+ "fosLabel": "Languages and literature"
190
+ },
191
+ {
192
+ "dfgId": "10602",
193
+ "dfgLabel": "Asian Studies",
194
+ "fosId": "5.4",
195
+ "fosLabel": "Sociology"
196
+ },
197
+ {
198
+ "dfgId": "10603",
199
+ "dfgLabel": "African, American and Oceania Studies",
200
+ "fosId": "6.5",
201
+ "fosLabel": "Other humanities"
202
+ },
203
+ {
204
+ "dfgId": "10603",
205
+ "dfgLabel": "African, American and Oceania Studies",
206
+ "fosId": "6.2",
207
+ "fosLabel": "Languages and literature"
208
+ },
209
+ {
210
+ "dfgId": "10603",
211
+ "dfgLabel": "African, American and Oceania Studies",
212
+ "fosId": "5.4",
213
+ "fosLabel": "Sociology"
214
+ },
215
+ {
216
+ "dfgId": "10604",
217
+ "dfgLabel": "Islamic Studies, Arabian Studies, Semitic Studies",
218
+ "fosId": "6.3",
219
+ "fosLabel": "Philosophy, ethics and religion"
220
+ },
221
+ {
222
+ "dfgId": "10604",
223
+ "dfgLabel": "Islamic Studies, Arabian Studies, Semitic Studies",
224
+ "fosId": "6.2",
225
+ "fosLabel": "Languages and literature"
226
+ },
227
+ {
228
+ "dfgId": "10604",
229
+ "dfgLabel": "Islamic Studies, Arabian Studies, Semitic Studies",
230
+ "fosId": "5.4",
231
+ "fosLabel": "Sociology"
232
+ },
233
+ {
234
+ "dfgId": "10605",
235
+ "dfgLabel": "Religious Studies and Jewish Studies",
236
+ "fosId": "6.3",
237
+ "fosLabel": "Philosophy, ethics and religion"
238
+ },
239
+ {
240
+ "dfgId": "10605",
241
+ "dfgLabel": "Religious Studies and Jewish Studies",
242
+ "fosId": "6.2",
243
+ "fosLabel": "Languages and literature"
244
+ },
245
+ {
246
+ "dfgId": "10605",
247
+ "dfgLabel": "Religious Studies and Jewish Studies",
248
+ "fosId": "5.4",
249
+ "fosLabel": "Sociology"
250
+ },
251
+ {
252
+ "dfgId": "107",
253
+ "dfgLabel": "Theology",
254
+ "fosId": "6.3",
255
+ "fosLabel": "Philosophy, ethics and religion"
256
+ },
257
+ {
258
+ "dfgId": "10701",
259
+ "dfgLabel": "Protestant Theology",
260
+ "fosId": "6.3",
261
+ "fosLabel": "Philosophy, ethics and religion"
262
+ },
263
+ {
264
+ "dfgId": "10702",
265
+ "dfgLabel": "Roman Catholic Theology",
266
+ "fosId": "6.3",
267
+ "fosLabel": "Philosophy, ethics and religion"
268
+ },
269
+ {
270
+ "dfgId": "108",
271
+ "dfgLabel": "Philosophy",
272
+ "fosId": "6.3",
273
+ "fosLabel": "Philosophy, ethics and religion"
274
+ },
275
+ {
276
+ "dfgId": "10801",
277
+ "dfgLabel": "History of Philosophy",
278
+ "fosId": "6.3",
279
+ "fosLabel": "Philosophy, ethics and religion"
280
+ },
281
+ {
282
+ "dfgId": "10802",
283
+ "dfgLabel": "Theoretical Philosophy",
284
+ "fosId": "6.3",
285
+ "fosLabel": "Philosophy, ethics and religion"
286
+ },
287
+ {
288
+ "dfgId": "10803",
289
+ "dfgLabel": "Practical Philosophy",
290
+ "fosId": "6.3",
291
+ "fosLabel": "Philosophy, ethics and religion"
292
+ },
293
+ {
294
+ "dfgId": "109",
295
+ "dfgLabel": "Education Sciences",
296
+ "fosId": "5.3",
297
+ "fosLabel": "Educational sciences"
298
+ },
299
+ {
300
+ "dfgId": "10901",
301
+ "dfgLabel": "General Education and History of Education",
302
+ "fosId": "5.3",
303
+ "fosLabel": "Educational sciences"
304
+ },
305
+ {
306
+ "dfgId": "10902",
307
+ "dfgLabel": "Research on Teaching, Learning, and Training",
308
+ "fosId": "5.3",
309
+ "fosLabel": "Educational sciences"
310
+ },
311
+ {
312
+ "dfgId": "10903",
313
+ "dfgLabel": "Research on Socialization and Educational Institutions and Professions",
314
+ "fosId": "5.3",
315
+ "fosLabel": "Educational sciences"
316
+ },
317
+ {
318
+ "dfgId": "110",
319
+ "dfgLabel": "Psychology",
320
+ "fosId": "5.1",
321
+ "fosLabel": "Psychology"
322
+ },
323
+ {
324
+ "dfgId": "11001",
325
+ "dfgLabel": "General, Biological and Mathematical Psychology",
326
+ "fosId": "5.1",
327
+ "fosLabel": "Psychology"
328
+ },
329
+ {
330
+ "dfgId": "11002",
331
+ "dfgLabel": "Developmental and Educational Psychology",
332
+ "fosId": "5.1",
333
+ "fosLabel": "Psychology"
334
+ },
335
+ {
336
+ "dfgId": "11002",
337
+ "dfgLabel": "Developmental and Educational Psychology",
338
+ "fosId": "5.3",
339
+ "fosLabel": "Educational sciences"
340
+ },
341
+ {
342
+ "dfgId": "11003",
343
+ "dfgLabel": "Social Psychology, Industrial and Organisational Psychology",
344
+ "fosId": "5.1",
345
+ "fosLabel": "Psychology"
346
+ },
347
+ {
348
+ "dfgId": "11004",
349
+ "dfgLabel": "Differential Psychology, Clinical Psychology, Medical Psychology, Methodology",
350
+ "fosId": "5.1",
351
+ "fosLabel": "Psychology"
352
+ },
353
+ {
354
+ "dfgId": "111",
355
+ "dfgLabel": "Social Sciences",
356
+ "fosId": "5",
357
+ "fosLabel": "Social sciences"
358
+ },
359
+ {
360
+ "dfgId": "11101",
361
+ "dfgLabel": "Sociological Theory",
362
+ "fosId": "5.4",
363
+ "fosLabel": "Sociology"
364
+ },
365
+ {
366
+ "dfgId": "11102",
367
+ "dfgLabel": "Empirical Social Research",
368
+ "fosId": "5.4",
369
+ "fosLabel": "Sociology"
370
+ },
371
+ {
372
+ "dfgId": "11102",
373
+ "dfgLabel": "Empirical Social Research",
374
+ "fosId": "5.9",
375
+ "fosLabel": "Other social sciences"
376
+ },
377
+ {
378
+ "dfgId": "11103",
379
+ "dfgLabel": "Communication Sciences",
380
+ "fosId": "5.8",
381
+ "fosLabel": "Media and communications"
382
+ },
383
+ {
384
+ "dfgId": "11104",
385
+ "dfgLabel": "Political Science",
386
+ "fosId": "5.6",
387
+ "fosLabel": "Political Science"
388
+ },
389
+ {
390
+ "dfgId": "112",
391
+ "dfgLabel": "Economics",
392
+ "fosId": "5.2",
393
+ "fosLabel": "Economics and business"
394
+ },
395
+ {
396
+ "dfgId": "11201",
397
+ "dfgLabel": "Economic Theory",
398
+ "fosId": "5.2",
399
+ "fosLabel": "Economics and business"
400
+ },
401
+ {
402
+ "dfgId": "11202",
403
+ "dfgLabel": "Economic and Social Policy",
404
+ "fosId": "5.2",
405
+ "fosLabel": "Economics and business"
406
+ },
407
+ {
408
+ "dfgId": "11203",
409
+ "dfgLabel": "Public Finance",
410
+ "fosId": "5.6",
411
+ "fosLabel": "Political Science"
412
+ },
413
+ {
414
+ "dfgId": "11203",
415
+ "dfgLabel": "Public Finance",
416
+ "fosId": "5.2",
417
+ "fosLabel": "Economics and business"
418
+ },
419
+ {
420
+ "dfgId": "11204",
421
+ "dfgLabel": "Business Administration",
422
+ "fosId": "5.2",
423
+ "fosLabel": "Economics and business"
424
+ },
425
+ {
426
+ "dfgId": "11205",
427
+ "dfgLabel": "Statistics and Econometrics",
428
+ "fosId": "5.2",
429
+ "fosLabel": "Economics and business"
430
+ },
431
+ {
432
+ "dfgId": "11206",
433
+ "dfgLabel": "Economic and Social History",
434
+ "fosId": "5.2",
435
+ "fosLabel": "Economics and business"
436
+ },
437
+ {
438
+ "dfgId": "113",
439
+ "dfgLabel": "Jurisprudence",
440
+ "fosId": "5.5",
441
+ "fosLabel": "Law"
442
+ },
443
+ {
444
+ "dfgId": "11301",
445
+ "dfgLabel": "Legal and Political Philosophy, Legal History, Legal Theory",
446
+ "fosId": "5.5",
447
+ "fosLabel": "Law"
448
+ },
449
+ {
450
+ "dfgId": "11302",
451
+ "dfgLabel": "Private Law",
452
+ "fosId": "5.5",
453
+ "fosLabel": "Law"
454
+ },
455
+ {
456
+ "dfgId": "11303",
457
+ "dfgLabel": "Public Law",
458
+ "fosId": "5.5",
459
+ "fosLabel": "Law"
460
+ },
461
+ {
462
+ "dfgId": "11304",
463
+ "dfgLabel": "Criminal Law and Law of Criminal Procedure",
464
+ "fosId": "5.5",
465
+ "fosLabel": "Law"
466
+ },
467
+ {
468
+ "dfgId": "11305",
469
+ "dfgLabel": "Criminology",
470
+ "fosId": "5.5",
471
+ "fosLabel": "Law"
472
+ },
473
+ {
474
+ "dfgId": "201",
475
+ "dfgLabel": "Basic Biological and Medical Research",
476
+ "fosId": "1.6",
477
+ "fosLabel": "Biological sciences"
478
+ },
479
+ {
480
+ "dfgId": "20101",
481
+ "dfgLabel": "Biochemistry",
482
+ "fosId": "1.6",
483
+ "fosLabel": "Biological sciences"
484
+ },
485
+ {
486
+ "dfgId": "20102",
487
+ "dfgLabel": "Biophysics",
488
+ "fosId": "1.6",
489
+ "fosLabel": "Biological sciences"
490
+ },
491
+ {
492
+ "dfgId": "20103",
493
+ "dfgLabel": "Cell Biology",
494
+ "fosId": "1.6",
495
+ "fosLabel": "Biological sciences"
496
+ },
497
+ {
498
+ "dfgId": "20104",
499
+ "dfgLabel": "Structural Biology",
500
+ "fosId": "1.6",
501
+ "fosLabel": "Biological sciences"
502
+ },
503
+ {
504
+ "dfgId": "20105",
505
+ "dfgLabel": "General Genetics",
506
+ "fosId": "1.6",
507
+ "fosLabel": "Biological sciences"
508
+ },
509
+ {
510
+ "dfgId": "20106",
511
+ "dfgLabel": "Developmental Biology",
512
+ "fosId": "1.6",
513
+ "fosLabel": "Biological sciences"
514
+ },
515
+ {
516
+ "dfgId": "20107",
517
+ "dfgLabel": "Bioinformatics and Theoretical Biology",
518
+ "fosId": "1.6",
519
+ "fosLabel": "Biological sciences"
520
+ },
521
+ {
522
+ "dfgId": "20107",
523
+ "dfgLabel": "Bioinformatics and Theoretical Biology",
524
+ "fosId": "1.2",
525
+ "fosLabel": "Computer and information sciences"
526
+ },
527
+ {
528
+ "dfgId": "20108",
529
+ "dfgLabel": "Anatomy",
530
+ "fosId": "1.6",
531
+ "fosLabel": "Biological sciences"
532
+ },
533
+ {
534
+ "dfgId": "20108",
535
+ "dfgLabel": "Anatomy",
536
+ "fosId": "3.1",
537
+ "fosLabel": "Basic medicine"
538
+ },
539
+ {
540
+ "dfgId": "202",
541
+ "dfgLabel": "Plant Sciences",
542
+ "fosId": "1.6",
543
+ "fosLabel": "Biological sciences"
544
+ },
545
+ {
546
+ "dfgId": "20201",
547
+ "dfgLabel": "Plant Systematics and Evolution",
548
+ "fosId": "1.6",
549
+ "fosLabel": "Biological sciences"
550
+ },
551
+ {
552
+ "dfgId": "20202",
553
+ "dfgLabel": "Plant Ecology and Ecosystem Analysis",
554
+ "fosId": "1.6",
555
+ "fosLabel": "Biological sciences"
556
+ },
557
+ {
558
+ "dfgId": "20203",
559
+ "dfgLabel": "Interorganismic Interactions of Plants",
560
+ "fosId": "1.6",
561
+ "fosLabel": "Biological sciences"
562
+ },
563
+ {
564
+ "dfgId": "20204",
565
+ "dfgLabel": "Plant Physiology",
566
+ "fosId": "1.6",
567
+ "fosLabel": "Biological sciences"
568
+ },
569
+ {
570
+ "dfgId": "20205",
571
+ "dfgLabel": "Plant Biochemistry and Biophysics",
572
+ "fosId": "1.6",
573
+ "fosLabel": "Biological sciences"
574
+ },
575
+ {
576
+ "dfgId": "20206",
577
+ "dfgLabel": "Plant Cell and Developmental Biology",
578
+ "fosId": "1.6",
579
+ "fosLabel": "Biological sciences"
580
+ },
581
+ {
582
+ "dfgId": "20207",
583
+ "dfgLabel": "Â Plant Genetics",
584
+ "fosId": "1.6",
585
+ "fosLabel": "Biological sciences"
586
+ },
587
+ {
588
+ "dfgId": "203",
589
+ "dfgLabel": "Zoology",
590
+ "fosId": "1.6",
591
+ "fosLabel": "Biological sciences"
592
+ },
593
+ {
594
+ "dfgId": "20301",
595
+ "dfgLabel": "Systematics and Morphology",
596
+ "fosId": "1.6",
597
+ "fosLabel": "Biological sciences"
598
+ },
599
+ {
600
+ "dfgId": "20302",
601
+ "dfgLabel": "Evolution, Anthropology",
602
+ "fosId": "1.6",
603
+ "fosLabel": "Biological sciences"
604
+ },
605
+ {
606
+ "dfgId": "20303",
607
+ "dfgLabel": "Animal Ecology, Biodiversity and Ecosystem Research",
608
+ "fosId": "1.6",
609
+ "fosLabel": "Biological sciences"
610
+ },
611
+ {
612
+ "dfgId": "20304",
613
+ "dfgLabel": "Sensory and Behavioural Biology",
614
+ "fosId": "1.6",
615
+ "fosLabel": "Biological sciences"
616
+ },
617
+ {
618
+ "dfgId": "20305",
619
+ "dfgLabel": "Biochemistry and Animal Physiology",
620
+ "fosId": "1.6",
621
+ "fosLabel": "Biological sciences"
622
+ },
623
+ {
624
+ "dfgId": "20306",
625
+ "dfgLabel": "Animal Genetics, Cell and Developmental Biology",
626
+ "fosId": "1.6",
627
+ "fosLabel": "Biological sciences"
628
+ },
629
+ {
630
+ "dfgId": "204",
631
+ "dfgLabel": "Microbiology, Virology and Immunology",
632
+ "fosId": "1.6",
633
+ "fosLabel": "Biological sciences"
634
+ },
635
+ {
636
+ "dfgId": "204",
637
+ "dfgLabel": "Microbiology, Virology and Immunology",
638
+ "fosId": "3.1",
639
+ "fosLabel": "Basic medicine"
640
+ },
641
+ {
642
+ "dfgId": "204",
643
+ "dfgLabel": "Microbiology, Virology and Immunology",
644
+ "fosId": "3.3",
645
+ "fosLabel": "Health sciences"
646
+ },
647
+ {
648
+ "dfgId": "20401",
649
+ "dfgLabel": "Metabolism, Biochemistry and Genetics of Microorganisms",
650
+ "fosId": "1.6",
651
+ "fosLabel": "Biological sciences"
652
+ },
653
+ {
654
+ "dfgId": "20402",
655
+ "dfgLabel": "Microbial Ecology and Applied Microbiology",
656
+ "fosId": "1.6",
657
+ "fosLabel": "Biological sciences"
658
+ },
659
+ {
660
+ "dfgId": "20403",
661
+ "dfgLabel": "Medical Microbiology, Molecular Infection Biology",
662
+ "fosId": "3.1",
663
+ "fosLabel": "Basic medicine"
664
+ },
665
+ {
666
+ "dfgId": "20403",
667
+ "dfgLabel": "Medical Microbiology, Molecular Infection Biology",
668
+ "fosId": "1.6",
669
+ "fosLabel": "Biological sciences"
670
+ },
671
+ {
672
+ "dfgId": "20404",
673
+ "dfgLabel": "Virology",
674
+ "fosId": "1.6",
675
+ "fosLabel": "Biological sciences"
676
+ },
677
+ {
678
+ "dfgId": "20405",
679
+ "dfgLabel": "Immunology",
680
+ "fosId": "3.1",
681
+ "fosLabel": "Basic medicine"
682
+ },
683
+ {
684
+ "dfgId": "205",
685
+ "dfgLabel": "Medicine",
686
+ "fosId": "3.1",
687
+ "fosLabel": "Basic medicine"
688
+ },
689
+ {
690
+ "dfgId": "205",
691
+ "dfgLabel": "Medicine",
692
+ "fosId": "1.6",
693
+ "fosLabel": "Biological sciences"
694
+ },
695
+ {
696
+ "dfgId": "20501",
697
+ "dfgLabel": "Epidemiology, Medical Biometry, Medical Informatics",
698
+ "fosId": "3.3",
699
+ "fosLabel": "Health sciences"
700
+ },
701
+ {
702
+ "dfgId": "20501",
703
+ "dfgLabel": "Epidemiology, Medical Biometry, Medical Informatics",
704
+ "fosId": "1.2",
705
+ "fosLabel": "Computer and information sciences"
706
+ },
707
+ {
708
+ "dfgId": "20502",
709
+ "dfgLabel": "Public Health, Health Services Research, Social Medicine",
710
+ "fosId": "3.3",
711
+ "fosLabel": "Health sciences"
712
+ },
713
+ {
714
+ "dfgId": "20503",
715
+ "dfgLabel": "Human Genetics",
716
+ "fosId": "1.6",
717
+ "fosLabel": "Biological sciences"
718
+ },
719
+ {
720
+ "dfgId": "20503",
721
+ "dfgLabel": "Human Genetics",
722
+ "fosId": "3.1",
723
+ "fosLabel": "Basic medicine"
724
+ },
725
+ {
726
+ "dfgId": "20504",
727
+ "dfgLabel": "Physiology",
728
+ "fosId": "3.1",
729
+ "fosLabel": "Basic medicine"
730
+ },
731
+ {
732
+ "dfgId": "20505",
733
+ "dfgLabel": "Nutritional Sciences",
734
+ "fosId": "3.3",
735
+ "fosLabel": "Health sciences"
736
+ },
737
+ {
738
+ "dfgId": "20506",
739
+ "dfgLabel": "Pathology and Forensic Medicine",
740
+ "fosId": "3.1",
741
+ "fosLabel": "Basic medicine"
742
+ },
743
+ {
744
+ "dfgId": "20506",
745
+ "dfgLabel": "Pathology and Forensic Medicine",
746
+ "fosId": "3.5",
747
+ "fosLabel": "Other medical sciences"
748
+ },
749
+ {
750
+ "dfgId": "20507",
751
+ "dfgLabel": "Clinical Chemistry and Pathobiochemistry",
752
+ "fosId": "3.1",
753
+ "fosLabel": "Basic medicine"
754
+ },
755
+ {
756
+ "dfgId": "20507",
757
+ "dfgLabel": "Clinical Chemistry and Pathobiochemistry",
758
+ "fosId": "2.6",
759
+ "fosLabel": "Medical engineering"
760
+ },
761
+ {
762
+ "dfgId": "20508",
763
+ "dfgLabel": "Pharmacy",
764
+ "fosId": "3.1",
765
+ "fosLabel": "Basic medicine"
766
+ },
767
+ {
768
+ "dfgId": "20509",
769
+ "dfgLabel": "Pharmacology",
770
+ "fosId": "3.1",
771
+ "fosLabel": "Basic medicine"
772
+ },
773
+ {
774
+ "dfgId": "20510",
775
+ "dfgLabel": "Toxicology and Occupational Medicine",
776
+ "fosId": "3.1",
777
+ "fosLabel": "Basic medicine"
778
+ },
779
+ {
780
+ "dfgId": "20511",
781
+ "dfgLabel": "Anaesthesiology",
782
+ "fosId": "3.2",
783
+ "fosLabel": "Clinical medicine"
784
+ },
785
+ {
786
+ "dfgId": "20512",
787
+ "dfgLabel": "Cardiology, Angiology",
788
+ "fosId": "3.2",
789
+ "fosLabel": "Clinical medicine"
790
+ },
791
+ {
792
+ "dfgId": "20513",
793
+ "dfgLabel": "Pneumology, Clinical Infectiology, Intensive Care Medicine",
794
+ "fosId": "3.2",
795
+ "fosLabel": "Clinical medicine"
796
+ },
797
+ {
798
+ "dfgId": "20514",
799
+ "dfgLabel": "Hematology, Oncology, Transfusion Medicine",
800
+ "fosId": "3.2",
801
+ "fosLabel": "Clinical medicine"
802
+ },
803
+ {
804
+ "dfgId": "20515",
805
+ "dfgLabel": "Gastroenterology, Metabolism",
806
+ "fosId": "3.2",
807
+ "fosLabel": "Clinical medicine"
808
+ },
809
+ {
810
+ "dfgId": "20516",
811
+ "dfgLabel": "Nephrology",
812
+ "fosId": "3.2",
813
+ "fosLabel": "Clinical medicine"
814
+ },
815
+ {
816
+ "dfgId": "20517",
817
+ "dfgLabel": "Endocrinology, Diabetology",
818
+ "fosId": "3.2",
819
+ "fosLabel": "Clinical medicine"
820
+ },
821
+ {
822
+ "dfgId": "20518",
823
+ "dfgLabel": "Rheumatology, Clinical Immunology, Allergology",
824
+ "fosId": "3.2",
825
+ "fosLabel": "Clinical medicine"
826
+ },
827
+ {
828
+ "dfgId": "20519",
829
+ "dfgLabel": "Dermatology",
830
+ "fosId": "3.2",
831
+ "fosLabel": "Clinical medicine"
832
+ },
833
+ {
834
+ "dfgId": "20520",
835
+ "dfgLabel": "Pediatric and Adolescent Medicine",
836
+ "fosId": "3.2",
837
+ "fosLabel": "Clinical medicine"
838
+ },
839
+ {
840
+ "dfgId": "20521",
841
+ "dfgLabel": "Gynaecology and Obstetrics",
842
+ "fosId": "3.2",
843
+ "fosLabel": "Clinical medicine"
844
+ },
845
+ {
846
+ "dfgId": "20522",
847
+ "dfgLabel": "Reproductive Medicine/Biology",
848
+ "fosId": "3.2",
849
+ "fosLabel": "Clinical medicine"
850
+ },
851
+ {
852
+ "dfgId": "20522",
853
+ "dfgLabel": "Reproductive Medicine/Biology",
854
+ "fosId": "1.6",
855
+ "fosLabel": "Biological sciences"
856
+ },
857
+ {
858
+ "dfgId": "20523",
859
+ "dfgLabel": "Urology",
860
+ "fosId": "3.2",
861
+ "fosLabel": "Clinical medicine"
862
+ },
863
+ {
864
+ "dfgId": "20524",
865
+ "dfgLabel": "Gerontology and Geriatric Medicine",
866
+ "fosId": "3.2",
867
+ "fosLabel": "Clinical medicine"
868
+ },
869
+ {
870
+ "dfgId": "20525",
871
+ "dfgLabel": "Vascular and Visceral Surgery",
872
+ "fosId": "3.2",
873
+ "fosLabel": "Clinical medicine"
874
+ },
875
+ {
876
+ "dfgId": "20526",
877
+ "dfgLabel": "Cardiothoracic Surgery",
878
+ "fosId": "3.2",
879
+ "fosLabel": "Clinical medicine"
880
+ },
881
+ {
882
+ "dfgId": "20527",
883
+ "dfgLabel": "Traumatology and Orthopaedics",
884
+ "fosId": "3.2",
885
+ "fosLabel": "Clinical medicine"
886
+ },
887
+ {
888
+ "dfgId": "20528",
889
+ "dfgLabel": "Dentistry, Oral Surgery",
890
+ "fosId": "3.2",
891
+ "fosLabel": "Clinical medicine"
892
+ },
893
+ {
894
+ "dfgId": "20529",
895
+ "dfgLabel": "Otolaryngology",
896
+ "fosId": "3.2",
897
+ "fosLabel": "Clinical medicine"
898
+ },
899
+ {
900
+ "dfgId": "20530",
901
+ "dfgLabel": "Radiology and Nuclear Medicine",
902
+ "fosId": "3.2",
903
+ "fosLabel": "Clinical medicine"
904
+ },
905
+ {
906
+ "dfgId": "20531",
907
+ "dfgLabel": "Radiation Oncology and Radiobiology",
908
+ "fosId": "3.2",
909
+ "fosLabel": "Clinical medicine"
910
+ },
911
+ {
912
+ "dfgId": "20532",
913
+ "dfgLabel": "Biomedical Technology and Medical Physics",
914
+ "fosId": "3.4",
915
+ "fosLabel": "Health biotechnology"
916
+ },
917
+ {
918
+ "dfgId": "206",
919
+ "dfgLabel": "Neurosciences",
920
+ "fosId": "3.1",
921
+ "fosLabel": "Basic medicine"
922
+ },
923
+ {
924
+ "dfgId": "206",
925
+ "dfgLabel": "Neurosciences",
926
+ "fosId": "1.6",
927
+ "fosLabel": "Biological sciences"
928
+ },
929
+ {
930
+ "dfgId": "20601",
931
+ "dfgLabel": "Molecular Neuroscience and Neurogenetics",
932
+ "fosId": "3.1",
933
+ "fosLabel": "Basic medicine"
934
+ },
935
+ {
936
+ "dfgId": "20601",
937
+ "dfgLabel": "Molecular Neuroscience and Neurogenetics",
938
+ "fosId": "1.6",
939
+ "fosLabel": "Biological sciences"
940
+ },
941
+ {
942
+ "dfgId": "20602",
943
+ "dfgLabel": "Cellular Neuroscience",
944
+ "fosId": "3.1",
945
+ "fosLabel": "Basic medicine"
946
+ },
947
+ {
948
+ "dfgId": "20602",
949
+ "dfgLabel": "Cellular Neuroscience",
950
+ "fosId": "1.6",
951
+ "fosLabel": "Biological sciences"
952
+ },
953
+ {
954
+ "dfgId": "20603",
955
+ "dfgLabel": "Developmental Neurobiology",
956
+ "fosId": "1.6",
957
+ "fosLabel": "Biological sciences"
958
+ },
959
+ {
960
+ "dfgId": "20604",
961
+ "dfgLabel": "Systemic Neuroscience, Computational Neuroscience, Behaviour",
962
+ "fosId": "1.6",
963
+ "fosLabel": "Biological sciences"
964
+ },
965
+ {
966
+ "dfgId": "20604",
967
+ "dfgLabel": "Systemic Neuroscience, Computational Neuroscience, Behaviour",
968
+ "fosId": "3.1",
969
+ "fosLabel": "Basic medicine"
970
+ },
971
+ {
972
+ "dfgId": "20604",
973
+ "dfgLabel": "Systemic Neuroscience, Computational Neuroscience, Behaviour",
974
+ "fosId": "1.2",
975
+ "fosLabel": "Computer and information sciences"
976
+ },
977
+ {
978
+ "dfgId": "20605",
979
+ "dfgLabel": "Comparative Neurobiology",
980
+ "fosId": "1.6",
981
+ "fosLabel": "Biological sciences"
982
+ },
983
+ {
984
+ "dfgId": "20605",
985
+ "dfgLabel": "Comparative Neurobiology",
986
+ "fosId": "3.1",
987
+ "fosLabel": "Basic medicine"
988
+ },
989
+ {
990
+ "dfgId": "20606",
991
+ "dfgLabel": "Cognitive Neuroscience and Neuroimaging",
992
+ "fosId": "3.1",
993
+ "fosLabel": "Basic medicine"
994
+ },
995
+ {
996
+ "dfgId": "20606",
997
+ "dfgLabel": "Cognitive Neuroscience and Neuroimaging",
998
+ "fosId": "1.6",
999
+ "fosLabel": "Biological sciences"
1000
+ },
1001
+ {
1002
+ "dfgId": "20606",
1003
+ "dfgLabel": "Cognitive Neuroscience and Neuroimaging",
1004
+ "fosId": "3.2",
1005
+ "fosLabel": "Clinical medicine"
1006
+ },
1007
+ {
1008
+ "dfgId": "20607",
1009
+ "dfgLabel": "Molecular Neurology",
1010
+ "fosId": "3.2",
1011
+ "fosLabel": "Clinical medicine"
1012
+ },
1013
+ {
1014
+ "dfgId": "20607",
1015
+ "dfgLabel": "Molecular Neurology",
1016
+ "fosId": "1.6",
1017
+ "fosLabel": "Biological sciences"
1018
+ },
1019
+ {
1020
+ "dfgId": "20608",
1021
+ "dfgLabel": "Clinical Neurosciences I Neurology, Neurosurgery",
1022
+ "fosId": "3.2",
1023
+ "fosLabel": "Clinical medicine"
1024
+ },
1025
+ {
1026
+ "dfgId": "20609",
1027
+ "dfgLabel": "Biological Psychiatry",
1028
+ "fosId": "3.2",
1029
+ "fosLabel": "Clinical medicine"
1030
+ },
1031
+ {
1032
+ "dfgId": "20609",
1033
+ "dfgLabel": "Biological Psychiatry",
1034
+ "fosId": "3.1",
1035
+ "fosLabel": "Basic medicine"
1036
+ },
1037
+ {
1038
+ "dfgId": "20610",
1039
+ "dfgLabel": "Clinical Neurosciences II Psychiatry, Psychotherapy, Psychosomatic Medicine",
1040
+ "fosId": "3.2",
1041
+ "fosLabel": "Clinical medicine"
1042
+ },
1043
+ {
1044
+ "dfgId": "20611",
1045
+ "dfgLabel": "Clinical Neurosciences III Ophthalmology",
1046
+ "fosId": "3.2",
1047
+ "fosLabel": "Clinical medicine"
1048
+ },
1049
+ {
1050
+ "dfgId": "207",
1051
+ "dfgLabel": "Agriculture, Forestry, Horticulture and Veterinary Medicine",
1052
+ "fosId": "4.1",
1053
+ "fosLabel": "Agriculture, forestry, and fisheries"
1054
+ },
1055
+ {
1056
+ "dfgId": "20701",
1057
+ "dfgLabel": "Soil Sciences",
1058
+ "fosId": "4.1",
1059
+ "fosLabel": "Agriculture, forestry, and fisheries"
1060
+ },
1061
+ {
1062
+ "dfgId": "20702",
1063
+ "dfgLabel": "Plant Cultivation",
1064
+ "fosId": "4.1",
1065
+ "fosLabel": "Agriculture, forestry, and fisheries"
1066
+ },
1067
+ {
1068
+ "dfgId": "20703",
1069
+ "dfgLabel": "Plant Nutrition",
1070
+ "fosId": "4.1",
1071
+ "fosLabel": "Agriculture, forestry, and fisheries"
1072
+ },
1073
+ {
1074
+ "dfgId": "20704",
1075
+ "dfgLabel": "Ecology of Agricultural Landscapes",
1076
+ "fosId": "4.5",
1077
+ "fosLabel": "Other agricultural sciences"
1078
+ },
1079
+ {
1080
+ "dfgId": "20705",
1081
+ "dfgLabel": "Plant Breeding",
1082
+ "fosId": "4.1",
1083
+ "fosLabel": "Agriculture, forestry, and fisheries"
1084
+ },
1085
+ {
1086
+ "dfgId": "20706",
1087
+ "dfgLabel": "Phytomedicine",
1088
+ "fosId": "3.1",
1089
+ "fosLabel": "Basic medicine"
1090
+ },
1091
+ {
1092
+ "dfgId": "20707",
1093
+ "dfgLabel": "Agricultural and Food Process Engineering",
1094
+ "fosId": "2.11",
1095
+ "fosLabel": "Other engineering and technologies"
1096
+ },
1097
+ {
1098
+ "dfgId": "20708",
1099
+ "dfgLabel": "Agricultural Economics and Sociology",
1100
+ "fosId": "4.5",
1101
+ "fosLabel": "Other agricultural sciences"
1102
+ },
1103
+ {
1104
+ "dfgId": "20709",
1105
+ "dfgLabel": "Inventory, Control and Use of Forest Resources",
1106
+ "fosId": "4.1",
1107
+ "fosLabel": "Agriculture, forestry, and fisheries"
1108
+ },
1109
+ {
1110
+ "dfgId": "20710",
1111
+ "dfgLabel": "Basic Forest Research",
1112
+ "fosId": "4.1",
1113
+ "fosLabel": "Agriculture, forestry, and fisheries"
1114
+ },
1115
+ {
1116
+ "dfgId": "20711",
1117
+ "dfgLabel": "Animal Husbandry, Breeding and Hygiene",
1118
+ "fosId": "4.2",
1119
+ "fosLabel": "Animal and dairy science"
1120
+ },
1121
+ {
1122
+ "dfgId": "20712",
1123
+ "dfgLabel": "Animal Nutrition and Nutrition Physiology",
1124
+ "fosId": "4.2",
1125
+ "fosLabel": "Animal and dairy science"
1126
+ },
1127
+ {
1128
+ "dfgId": "20713",
1129
+ "dfgLabel": "Basic Veterinary Medical Science",
1130
+ "fosId": "4.3",
1131
+ "fosLabel": "Veterinary science"
1132
+ },
1133
+ {
1134
+ "dfgId": "20714",
1135
+ "dfgLabel": "Basic Research on Pathogenesis, Diagnostics and Therapy and Clinical Veterinary Medicine",
1136
+ "fosId": "4.3",
1137
+ "fosLabel": "Veterinary science"
1138
+ },
1139
+ {
1140
+ "dfgId": "301",
1141
+ "dfgLabel": "Molecular Chemistry",
1142
+ "fosId": "1.4",
1143
+ "fosLabel": "Chemical sciences"
1144
+ },
1145
+ {
1146
+ "dfgId": "30101",
1147
+ "dfgLabel": "Inorganic Molecular Chemistry",
1148
+ "fosId": "1.4",
1149
+ "fosLabel": "Chemical sciences"
1150
+ },
1151
+ {
1152
+ "dfgId": "30102",
1153
+ "dfgLabel": "Organic Molecular Chemistry",
1154
+ "fosId": "1.4",
1155
+ "fosLabel": "Chemical sciences"
1156
+ },
1157
+ {
1158
+ "dfgId": "302",
1159
+ "dfgLabel": "Chemical Solid State and Surface Research",
1160
+ "fosId": "1.4",
1161
+ "fosLabel": "Chemical sciences"
1162
+ },
1163
+ {
1164
+ "dfgId": "30201",
1165
+ "dfgLabel": "Solid State and Surface Chemistry, Material Synthesis",
1166
+ "fosId": "1.4",
1167
+ "fosLabel": "Chemical sciences"
1168
+ },
1169
+ {
1170
+ "dfgId": "30201",
1171
+ "dfgLabel": "Solid State and Surface Chemistry, Material Synthesis",
1172
+ "fosId": "2.4",
1173
+ "fosLabel": "Chemical engineering"
1174
+ },
1175
+ {
1176
+ "dfgId": "30202",
1177
+ "dfgLabel": "Physical Chemistry of Solids and Surfaces, Material Characterisation",
1178
+ "fosId": "1.4",
1179
+ "fosLabel": "Chemical sciences"
1180
+ },
1181
+ {
1182
+ "dfgId": "30203",
1183
+ "dfgLabel": "Theory and Modelling",
1184
+ "fosId": "1.4",
1185
+ "fosLabel": "Chemical sciences"
1186
+ },
1187
+ {
1188
+ "dfgId": "303",
1189
+ "dfgLabel": "Physical and Theoretical Chemistry",
1190
+ "fosId": "1.4",
1191
+ "fosLabel": "Chemical sciences"
1192
+ },
1193
+ {
1194
+ "dfgId": "30301",
1195
+ "dfgLabel": "Physical Chemistry of Molecules, Interfaces and Liquids Spectroscopy, Kinetics",
1196
+ "fosId": "1.4",
1197
+ "fosLabel": "Chemical sciences"
1198
+ },
1199
+ {
1200
+ "dfgId": "30302",
1201
+ "dfgLabel": "General Theoretical Chemistry",
1202
+ "fosId": "1.4",
1203
+ "fosLabel": "Chemical sciences"
1204
+ },
1205
+ {
1206
+ "dfgId": "304",
1207
+ "dfgLabel": "Analytical Chemistry, Method Development (Chemistry)",
1208
+ "fosId": "1.4",
1209
+ "fosLabel": "Chemical sciences"
1210
+ },
1211
+ {
1212
+ "dfgId": "30401",
1213
+ "dfgLabel": "Analytical Chemistry, Method Development (Chemistry)",
1214
+ "fosId": "1.4",
1215
+ "fosLabel": "Chemical sciences"
1216
+ },
1217
+ {
1218
+ "dfgId": "305",
1219
+ "dfgLabel": "Biological Chemistry and Food Chemistry",
1220
+ "fosId": "1.4",
1221
+ "fosLabel": "Chemical sciences"
1222
+ },
1223
+ {
1224
+ "dfgId": "305",
1225
+ "dfgLabel": "Biological Chemistry and Food Chemistry",
1226
+ "fosId": "1.6",
1227
+ "fosLabel": "Biological sciences"
1228
+ },
1229
+ {
1230
+ "dfgId": "30501",
1231
+ "dfgLabel": "Biological and Biomimetic Chemistry",
1232
+ "fosId": "1.4",
1233
+ "fosLabel": "Chemical sciences"
1234
+ },
1235
+ {
1236
+ "dfgId": "30501",
1237
+ "dfgLabel": "Biological and Biomimetic Chemistry",
1238
+ "fosId": "1.6",
1239
+ "fosLabel": "Biological sciences"
1240
+ },
1241
+ {
1242
+ "dfgId": "30502",
1243
+ "dfgLabel": "Food Chemistry",
1244
+ "fosId": "1.4",
1245
+ "fosLabel": "Chemical sciences"
1246
+ },
1247
+ {
1248
+ "dfgId": "30502",
1249
+ "dfgLabel": "Food Chemistry",
1250
+ "fosId": "1.6",
1251
+ "fosLabel": "Biological sciences"
1252
+ },
1253
+ {
1254
+ "dfgId": "306",
1255
+ "dfgLabel": "Polymer Research",
1256
+ "fosId": "1.4",
1257
+ "fosLabel": "Chemical sciences"
1258
+ },
1259
+ {
1260
+ "dfgId": "30601",
1261
+ "dfgLabel": "Preparatory and Physical Chemistry of Polymers",
1262
+ "fosId": "1.4",
1263
+ "fosLabel": "Chemical sciences"
1264
+ },
1265
+ {
1266
+ "dfgId": "30602",
1267
+ "dfgLabel": "Experimental and Theoretical Physics of Polymers",
1268
+ "fosId": "1.4",
1269
+ "fosLabel": "Chemical sciences"
1270
+ },
1271
+ {
1272
+ "dfgId": "30603",
1273
+ "dfgLabel": "Polymer Materials",
1274
+ "fosId": "2.5",
1275
+ "fosLabel": "Materials engineering"
1276
+ },
1277
+ {
1278
+ "dfgId": "30603",
1279
+ "dfgLabel": "Polymer Materials",
1280
+ "fosId": "1.4",
1281
+ "fosLabel": "Chemical sciences"
1282
+ },
1283
+ {
1284
+ "dfgId": "307",
1285
+ "dfgLabel": "Condensed Matter Physics",
1286
+ "fosId": "1.3",
1287
+ "fosLabel": "Physical sciences"
1288
+ },
1289
+ {
1290
+ "dfgId": "30701",
1291
+ "dfgLabel": "Experimental Condensed Matter Physics",
1292
+ "fosId": "1.3",
1293
+ "fosLabel": "Physical sciences"
1294
+ },
1295
+ {
1296
+ "dfgId": "30702",
1297
+ "dfgLabel": "Theoretical Condensed Matter Physics",
1298
+ "fosId": "1.3",
1299
+ "fosLabel": "Physical sciences"
1300
+ },
1301
+ {
1302
+ "dfgId": "308",
1303
+ "dfgLabel": "Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas",
1304
+ "fosId": "1.3",
1305
+ "fosLabel": "Physical sciences"
1306
+ },
1307
+ {
1308
+ "dfgId": "30801",
1309
+ "dfgLabel": "Optics, Quantum Optics, Atoms, Molecules, Plasmas",
1310
+ "fosId": "1.3",
1311
+ "fosLabel": "Physical sciences"
1312
+ },
1313
+ {
1314
+ "dfgId": "309",
1315
+ "dfgLabel": "Particles, Nuclei and Fields",
1316
+ "fosId": "1.3",
1317
+ "fosLabel": "Physical sciences"
1318
+ },
1319
+ {
1320
+ "dfgId": "30901",
1321
+ "dfgLabel": "Particles, Nuclei and Fields",
1322
+ "fosId": "1.3",
1323
+ "fosLabel": "Physical sciences"
1324
+ },
1325
+ {
1326
+ "dfgId": "310",
1327
+ "dfgLabel": "Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics",
1328
+ "fosId": "1.3",
1329
+ "fosLabel": "Physical sciences"
1330
+ },
1331
+ {
1332
+ "dfgId": "310",
1333
+ "dfgLabel": "Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics",
1334
+ "fosId": "1.4",
1335
+ "fosLabel": "Chemical sciences"
1336
+ },
1337
+ {
1338
+ "dfgId": "31001",
1339
+ "dfgLabel": "Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics",
1340
+ "fosId": "1.3",
1341
+ "fosLabel": "Physical sciences"
1342
+ },
1343
+ {
1344
+ "dfgId": "31001",
1345
+ "dfgLabel": "Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics",
1346
+ "fosId": "1.4",
1347
+ "fosLabel": "Chemical sciences"
1348
+ },
1349
+ {
1350
+ "dfgId": "311",
1351
+ "dfgLabel": "Astrophysics and Astronomy",
1352
+ "fosId": "1.3",
1353
+ "fosLabel": "Physical sciences"
1354
+ },
1355
+ {
1356
+ "dfgId": "31101",
1357
+ "dfgLabel": "Astrophysics and Astronomy",
1358
+ "fosId": "1.3",
1359
+ "fosLabel": "Physical sciences"
1360
+ },
1361
+ {
1362
+ "dfgId": "312",
1363
+ "dfgLabel": "Mathematics",
1364
+ "fosId": "1.1",
1365
+ "fosLabel": "Mathematics"
1366
+ },
1367
+ {
1368
+ "dfgId": "31201",
1369
+ "dfgLabel": "Mathematics",
1370
+ "fosId": "1.1",
1371
+ "fosLabel": "Mathematics"
1372
+ },
1373
+ {
1374
+ "dfgId": "313",
1375
+ "dfgLabel": "Atmospheric Science and Oceanography",
1376
+ "fosId": "1.5",
1377
+ "fosLabel": "Earth and related environmental sciences"
1378
+ },
1379
+ {
1380
+ "dfgId": "31301",
1381
+ "dfgLabel": "Atmospheric Science",
1382
+ "fosId": "1.5",
1383
+ "fosLabel": "Earth and related environmental sciences"
1384
+ },
1385
+ {
1386
+ "dfgId": "31302",
1387
+ "dfgLabel": "Oceanography",
1388
+ "fosId": "1.5",
1389
+ "fosLabel": "Earth and related environmental sciences"
1390
+ },
1391
+ {
1392
+ "dfgId": "314",
1393
+ "dfgLabel": "Geology and Palaeontology",
1394
+ "fosId": "1.5",
1395
+ "fosLabel": "Earth and related environmental sciences"
1396
+ },
1397
+ {
1398
+ "dfgId": "31401",
1399
+ "dfgLabel": "Geology and Palaeontology",
1400
+ "fosId": "1.5",
1401
+ "fosLabel": "Earth and related environmental sciences"
1402
+ },
1403
+ {
1404
+ "dfgId": "315",
1405
+ "dfgLabel": "Geophysics and Geodesy",
1406
+ "fosId": "1.5",
1407
+ "fosLabel": "Earth and related environmental sciences"
1408
+ },
1409
+ {
1410
+ "dfgId": "31501",
1411
+ "dfgLabel": "Geophysics",
1412
+ "fosId": "1.5",
1413
+ "fosLabel": "Earth and related environmental sciences"
1414
+ },
1415
+ {
1416
+ "dfgId": "31502",
1417
+ "dfgLabel": "Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartography",
1418
+ "fosId": "1.5",
1419
+ "fosLabel": "Earth and related environmental sciences"
1420
+ },
1421
+ {
1422
+ "dfgId": "31502",
1423
+ "dfgLabel": "Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartography",
1424
+ "fosId": "2.7",
1425
+ "fosLabel": "Environmental engineering"
1426
+ },
1427
+ {
1428
+ "dfgId": "31502",
1429
+ "dfgLabel": "Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartography",
1430
+ "fosId": "1.2",
1431
+ "fosLabel": "Computer and information sciences"
1432
+ },
1433
+ {
1434
+ "dfgId": "316",
1435
+ "dfgLabel": "Geochemistry, Mineralogy and Crystallography",
1436
+ "fosId": "1.5",
1437
+ "fosLabel": "Earth and related environmental sciences"
1438
+ },
1439
+ {
1440
+ "dfgId": "31601",
1441
+ "dfgLabel": "Geochemistry, Mineralogy and Crystallography",
1442
+ "fosId": "1.5",
1443
+ "fosLabel": "Earth and related environmental sciences"
1444
+ },
1445
+ {
1446
+ "dfgId": "317",
1447
+ "dfgLabel": "Geography",
1448
+ "fosId": "1.5",
1449
+ "fosLabel": "Earth and related environmental sciences"
1450
+ },
1451
+ {
1452
+ "dfgId": "317",
1453
+ "dfgLabel": "Geography",
1454
+ "fosId": "5.7",
1455
+ "fosLabel": "Social and economic geography"
1456
+ },
1457
+ {
1458
+ "dfgId": "31701",
1459
+ "dfgLabel": "Physical Geography",
1460
+ "fosId": "1.5",
1461
+ "fosLabel": "Earth and related environmental sciences"
1462
+ },
1463
+ {
1464
+ "dfgId": "31702",
1465
+ "dfgLabel": "Human Geography",
1466
+ "fosId": "5.7",
1467
+ "fosLabel": "Social and economic geography"
1468
+ },
1469
+ {
1470
+ "dfgId": "318",
1471
+ "dfgLabel": "Water Research",
1472
+ "fosId": "1.5",
1473
+ "fosLabel": "Earth and related environmental sciences"
1474
+ },
1475
+ {
1476
+ "dfgId": "31801",
1477
+ "dfgLabel": "Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources",
1478
+ "fosId": "1.5",
1479
+ "fosLabel": "Earth and related environmental sciences"
1480
+ },
1481
+ {
1482
+ "dfgId": "401",
1483
+ "dfgLabel": "Production Technology",
1484
+ "fosId": "2.3",
1485
+ "fosLabel": "Mechanical engineering"
1486
+ },
1487
+ {
1488
+ "dfgId": "401",
1489
+ "dfgLabel": "Production Technology",
1490
+ "fosId": "2.5",
1491
+ "fosLabel": "Materials engineering"
1492
+ },
1493
+ {
1494
+ "dfgId": "40101",
1495
+ "dfgLabel": "MetalCutting Manufacturing Engineering",
1496
+ "fosId": "2.3",
1497
+ "fosLabel": "Mechanical engineering"
1498
+ },
1499
+ {
1500
+ "dfgId": "40102",
1501
+ "dfgLabel": "Primary Shaping and Reshaping Technology",
1502
+ "fosId": "2.3",
1503
+ "fosLabel": "Mechanical engineering"
1504
+ },
1505
+ {
1506
+ "dfgId": "40103",
1507
+ "dfgLabel": "Micro, Precision, Mounting, Joining, Separation Technology",
1508
+ "fosId": "2.3",
1509
+ "fosLabel": "Mechanical engineering"
1510
+ },
1511
+ {
1512
+ "dfgId": "40104",
1513
+ "dfgLabel": "Plastics Engineering",
1514
+ "fosId": "2.5",
1515
+ "fosLabel": "Materials engineering"
1516
+ },
1517
+ {
1518
+ "dfgId": "40105",
1519
+ "dfgLabel": "Production Automation, Factory Operation, Operations Management",
1520
+ "fosId": "2.3",
1521
+ "fosLabel": "Mechanical engineering"
1522
+ },
1523
+ {
1524
+ "dfgId": "40105",
1525
+ "dfgLabel": "Production Automation, Factory Operation, Operations Management",
1526
+ "fosId": "2.2",
1527
+ "fosLabel": "Electrical engineering, Electronic engineering, Information engineering"
1528
+ },
1529
+ {
1530
+ "dfgId": "402",
1531
+ "dfgLabel": "Mechanics and Constructive Mechanical Engineering",
1532
+ "fosId": "2.3",
1533
+ "fosLabel": "Mechanical engineering"
1534
+ },
1535
+ {
1536
+ "dfgId": "40201",
1537
+ "dfgLabel": "Construction, Machine Elements",
1538
+ "fosId": "2.3",
1539
+ "fosLabel": "Mechanical engineering"
1540
+ },
1541
+ {
1542
+ "dfgId": "40202",
1543
+ "dfgLabel": "Mechanics",
1544
+ "fosId": "2.3",
1545
+ "fosLabel": "Mechanical engineering"
1546
+ },
1547
+ {
1548
+ "dfgId": "40203",
1549
+ "dfgLabel": "Lightweight Construction, Textile Technology",
1550
+ "fosId": "2.5",
1551
+ "fosLabel": "Materials engineering"
1552
+ },
1553
+ {
1554
+ "dfgId": "40204",
1555
+ "dfgLabel": "Acoustics",
1556
+ "fosId": "2.3",
1557
+ "fosLabel": "Mechanical engineering"
1558
+ },
1559
+ {
1560
+ "dfgId": "40204",
1561
+ "dfgLabel": "Acoustics",
1562
+ "fosId": "1.3",
1563
+ "fosLabel": "Physical sciences"
1564
+ },
1565
+ {
1566
+ "dfgId": "403",
1567
+ "dfgLabel": "Process Engineering, Technical Chemistry",
1568
+ "fosId": "2.4",
1569
+ "fosLabel": "Chemical engineering"
1570
+ },
1571
+ {
1572
+ "dfgId": "40301",
1573
+ "dfgLabel": "Chemical and Thermal Process Engineering",
1574
+ "fosId": "2.3",
1575
+ "fosLabel": "Mechanical engineering"
1576
+ },
1577
+ {
1578
+ "dfgId": "40301",
1579
+ "dfgLabel": "Chemical and Thermal Process Engineering",
1580
+ "fosId": "2.4",
1581
+ "fosLabel": "Chemical engineering"
1582
+ },
1583
+ {
1584
+ "dfgId": "40302",
1585
+ "dfgLabel": "Technical Chemistry",
1586
+ "fosId": "2.4",
1587
+ "fosLabel": "Chemical engineering"
1588
+ },
1589
+ {
1590
+ "dfgId": "40303",
1591
+ "dfgLabel": "Mechanical Process Engineering",
1592
+ "fosId": "2.3",
1593
+ "fosLabel": "Mechanical engineering"
1594
+ },
1595
+ {
1596
+ "dfgId": "40304",
1597
+ "dfgLabel": "Biological Process Engineering",
1598
+ "fosId": "2.9",
1599
+ "fosLabel": "Industrial biotechnology"
1600
+ },
1601
+ {
1602
+ "dfgId": "404",
1603
+ "dfgLabel": "Heat Energy Technology, Thermal Machines, Fluid Mechanics",
1604
+ "fosId": "2.3",
1605
+ "fosLabel": "Mechanical engineering"
1606
+ },
1607
+ {
1608
+ "dfgId": "40401",
1609
+ "dfgLabel": "Energy Process Engineering",
1610
+ "fosId": "2.3",
1611
+ "fosLabel": "Mechanical engineering"
1612
+ },
1613
+ {
1614
+ "dfgId": "40402",
1615
+ "dfgLabel": "Technical Thermodynamics",
1616
+ "fosId": "2.3",
1617
+ "fosLabel": "Mechanical engineering"
1618
+ },
1619
+ {
1620
+ "dfgId": "40403",
1621
+ "dfgLabel": "Fluid Mechanics",
1622
+ "fosId": "2.3",
1623
+ "fosLabel": "Mechanical engineering"
1624
+ },
1625
+ {
1626
+ "dfgId": "40404",
1627
+ "dfgLabel": "Hydraulic and Turbo Engines and Piston Engines",
1628
+ "fosId": "2.3",
1629
+ "fosLabel": "Mechanical engineering"
1630
+ },
1631
+ {
1632
+ "dfgId": "405",
1633
+ "dfgLabel": "Materials Engineering",
1634
+ "fosId": "2.5",
1635
+ "fosLabel": "Materials engineering"
1636
+ },
1637
+ {
1638
+ "dfgId": "40501",
1639
+ "dfgLabel": "Metallurgical and Thermal Processes, Thermomechanical Treatment of Materials",
1640
+ "fosId": "2.5",
1641
+ "fosLabel": "Materials engineering"
1642
+ },
1643
+ {
1644
+ "dfgId": "40502",
1645
+ "dfgLabel": "Sintered Metallic and Ceramic Materials",
1646
+ "fosId": "2.5",
1647
+ "fosLabel": "Materials engineering"
1648
+ },
1649
+ {
1650
+ "dfgId": "40503",
1651
+ "dfgLabel": "Composite Materials",
1652
+ "fosId": "2.5",
1653
+ "fosLabel": "Materials engineering"
1654
+ },
1655
+ {
1656
+ "dfgId": "40504",
1657
+ "dfgLabel": "Mechanical Behaviour of Construction Materials",
1658
+ "fosId": "2.5",
1659
+ "fosLabel": "Materials engineering"
1660
+ },
1661
+ {
1662
+ "dfgId": "40505",
1663
+ "dfgLabel": "Coating and Surface Technology",
1664
+ "fosId": "2.5",
1665
+ "fosLabel": "Materials engineering"
1666
+ },
1667
+ {
1668
+ "dfgId": "406",
1669
+ "dfgLabel": "Materials Science",
1670
+ "fosId": "2.5",
1671
+ "fosLabel": "Materials engineering"
1672
+ },
1673
+ {
1674
+ "dfgId": "40601",
1675
+ "dfgLabel": "Thermodynamics and Kinetics of Materials",
1676
+ "fosId": "2.5",
1677
+ "fosLabel": "Materials engineering"
1678
+ },
1679
+ {
1680
+ "dfgId": "40602",
1681
+ "dfgLabel": "Synthesis and Properties of Functional Materials",
1682
+ "fosId": "2.5",
1683
+ "fosLabel": "Materials engineering"
1684
+ },
1685
+ {
1686
+ "dfgId": "40603",
1687
+ "dfgLabel": "Microstructural Mechanical Properties of Materials",
1688
+ "fosId": "2.5",
1689
+ "fosLabel": "Materials engineering"
1690
+ },
1691
+ {
1692
+ "dfgId": "40604",
1693
+ "dfgLabel": "Structuring and Functionalisation",
1694
+ "fosId": "2.5",
1695
+ "fosLabel": "Materials engineering"
1696
+ },
1697
+ {
1698
+ "dfgId": "40605",
1699
+ "dfgLabel": "Biomaterials",
1700
+ "fosId": "2.9",
1701
+ "fosLabel": "Industrial Biotechnology"
1702
+ },
1703
+ {
1704
+ "dfgId": "407",
1705
+ "dfgLabel": "Systems Engineering",
1706
+ "fosId": "2.2",
1707
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
1708
+ },
1709
+ {
1710
+ "dfgId": "40701",
1711
+ "dfgLabel": "Automation, Control Systems, Robotics, Mechatronics",
1712
+ "fosId": "2.2",
1713
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
1714
+ },
1715
+ {
1716
+ "dfgId": "40702",
1717
+ "dfgLabel": "Measurement Systems",
1718
+ "fosId": "2.2",
1719
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
1720
+ },
1721
+ {
1722
+ "dfgId": "40703",
1723
+ "dfgLabel": "Microsystems",
1724
+ "fosId": "2.2",
1725
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
1726
+ },
1727
+ {
1728
+ "dfgId": "40704",
1729
+ "dfgLabel": "Traffic and Transport Systems, Logistics",
1730
+ "fosId": "2.1",
1731
+ "fosLabel": "Civil engineering"
1732
+ },
1733
+ {
1734
+ "dfgId": "40704",
1735
+ "dfgLabel": "Traffic and Transport Systems, Logistics",
1736
+ "fosId": "2.2",
1737
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
1738
+ },
1739
+ {
1740
+ "dfgId": "40705",
1741
+ "dfgLabel": "Human Factors, Ergonomics, HumanMachine Systems",
1742
+ "fosId": "2.2",
1743
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
1744
+ },
1745
+ {
1746
+ "dfgId": "408",
1747
+ "dfgLabel": "Electrical Engineering",
1748
+ "fosId": "2.2",
1749
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
1750
+ },
1751
+ {
1752
+ "dfgId": "40801",
1753
+ "dfgLabel": "Electronic Semiconductors, Components, Circuits, Systems",
1754
+ "fosId": "2.2",
1755
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
1756
+ },
1757
+ {
1758
+ "dfgId": "40802",
1759
+ "dfgLabel": "Communications, HighFrequency and Network Technology, Theoretical Electrical Engineering",
1760
+ "fosId": "2.2",
1761
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
1762
+ },
1763
+ {
1764
+ "dfgId": "40803",
1765
+ "dfgLabel": "Electrical Energy Generation, Distribution, Application",
1766
+ "fosId": "2.2",
1767
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
1768
+ },
1769
+ {
1770
+ "dfgId": "409",
1771
+ "dfgLabel": "Computer Science",
1772
+ "fosId": "1.2",
1773
+ "fosLabel": "Computer and information sciences"
1774
+ },
1775
+ {
1776
+ "dfgId": "409",
1777
+ "dfgLabel": "Computer Science",
1778
+ "fosId": "2.2",
1779
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
1780
+ },
1781
+ {
1782
+ "dfgId": "40901",
1783
+ "dfgLabel": "Theoretical Computer Science",
1784
+ "fosId": "1.2",
1785
+ "fosLabel": "Computer and information sciences"
1786
+ },
1787
+ {
1788
+ "dfgId": "40902",
1789
+ "dfgLabel": "Software Technology",
1790
+ "fosId": "1.2",
1791
+ "fosLabel": "Computer and information sciences"
1792
+ },
1793
+ {
1794
+ "dfgId": "40903",
1795
+ "dfgLabel": "Operating, Communication and Information Systems",
1796
+ "fosId": "1.2",
1797
+ "fosLabel": "Computer and information sciences"
1798
+ },
1799
+ {
1800
+ "dfgId": "40904",
1801
+ "dfgLabel": "Artificial Intelligence, Image and Language Processing",
1802
+ "fosId": "1.2",
1803
+ "fosLabel": "Computer and information sciences"
1804
+ },
1805
+ {
1806
+ "dfgId": "40905",
1807
+ "dfgLabel": "Computer Architecture and Embedded Systems",
1808
+ "fosId": "2.2",
1809
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
1810
+ },
1811
+ {
1812
+ "dfgId": "410",
1813
+ "dfgLabel": "Construction Engineering and Architecture",
1814
+ "fosId": "2.1",
1815
+ "fosLabel": "Civil engineering"
1816
+ },
1817
+ {
1818
+ "dfgId": "41001",
1819
+ "dfgLabel": "Architecture, Building and Construction History, Sustainable Building Technology, Building Design",
1820
+ "fosId": "2.1",
1821
+ "fosLabel": "Civil engineering"
1822
+ },
1823
+ {
1824
+ "dfgId": "41002",
1825
+ "dfgLabel": "Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning",
1826
+ "fosId": "2.7",
1827
+ "fosLabel": "Environmental engineering"
1828
+ },
1829
+ {
1830
+ "dfgId": "41002",
1831
+ "dfgLabel": "Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning",
1832
+ "fosId": "5.7",
1833
+ "fosLabel": "Social and economic geography"
1834
+ },
1835
+ {
1836
+ "dfgId": "41003",
1837
+ "dfgLabel": "Construction Material Sciences, Chemistry, Building Physics",
1838
+ "fosId": "2.1",
1839
+ "fosLabel": "Civil engineering"
1840
+ },
1841
+ {
1842
+ "dfgId": "41003",
1843
+ "dfgLabel": "Construction Material Sciences, Chemistry, Building Physics",
1844
+ "fosId": "2.5",
1845
+ "fosLabel": "Materials engineering"
1846
+ },
1847
+ {
1848
+ "dfgId": "41004",
1849
+ "dfgLabel": "Structural Engineering, Building Informatics, Construction Operation",
1850
+ "fosId": "2.1",
1851
+ "fosLabel": "Civil engineering"
1852
+ },
1853
+ {
1854
+ "dfgId": "41005",
1855
+ "dfgLabel": "Applied Mechanics, Statics and Dynamics",
1856
+ "fosId": "2.1",
1857
+ "fosLabel": "Civil engineering"
1858
+ },
1859
+ {
1860
+ "dfgId": "41006",
1861
+ "dfgLabel": "Geotechnics, Hydraulic Engineering",
1862
+ "fosId": "2.7",
1863
+ "fosLabel": "Environmental engineering"
1864
+ }
1865
+ ]
1866
+ }