commonmeta-ruby 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,1827 @@
1
+ {
2
+ "$id": "https://citation-file-format.github.io/1.2.0/schema.json",
3
+ "$schema": "http://json-schema.org/draft-07/schema",
4
+ "additionalProperties": false,
5
+ "definitions": {
6
+ "address": {
7
+ "description": "An address.",
8
+ "minLength": 1,
9
+ "type": "string"
10
+ },
11
+ "alias": {
12
+ "description": "An alias.",
13
+ "minLength": 1,
14
+ "type": "string"
15
+ },
16
+ "city": {
17
+ "description": "A city",
18
+ "minLength": 1,
19
+ "type": "string"
20
+ },
21
+ "commit": {
22
+ "description": "The (e.g., Git) commit hash or (e.g., Subversion) revision number of the work.",
23
+ "minLength": 1,
24
+ "type": "string"
25
+ },
26
+ "country": {
27
+ "$comment": "ISO 3166-1 alpha-2 codes can be found at https://en.wikipedia.org/wiki/ISO_3166-1",
28
+ "description": "The ISO 3166-1 alpha-2 country code for a country.",
29
+ "enum": [
30
+ "AD",
31
+ "AE",
32
+ "AF",
33
+ "AG",
34
+ "AI",
35
+ "AL",
36
+ "AM",
37
+ "AO",
38
+ "AQ",
39
+ "AR",
40
+ "AS",
41
+ "AT",
42
+ "AU",
43
+ "AW",
44
+ "AX",
45
+ "AZ",
46
+ "BA",
47
+ "BB",
48
+ "BD",
49
+ "BE",
50
+ "BF",
51
+ "BG",
52
+ "BH",
53
+ "BI",
54
+ "BJ",
55
+ "BL",
56
+ "BM",
57
+ "BN",
58
+ "BO",
59
+ "BQ",
60
+ "BR",
61
+ "BS",
62
+ "BT",
63
+ "BV",
64
+ "BW",
65
+ "BY",
66
+ "BZ",
67
+ "CA",
68
+ "CC",
69
+ "CD",
70
+ "CF",
71
+ "CG",
72
+ "CH",
73
+ "CI",
74
+ "CK",
75
+ "CL",
76
+ "CM",
77
+ "CN",
78
+ "CO",
79
+ "CR",
80
+ "CU",
81
+ "CV",
82
+ "CW",
83
+ "CX",
84
+ "CY",
85
+ "CZ",
86
+ "DE",
87
+ "DJ",
88
+ "DK",
89
+ "DM",
90
+ "DO",
91
+ "DZ",
92
+ "EC",
93
+ "EE",
94
+ "EG",
95
+ "EH",
96
+ "ER",
97
+ "ES",
98
+ "ET",
99
+ "FI",
100
+ "FJ",
101
+ "FK",
102
+ "FM",
103
+ "FO",
104
+ "FR",
105
+ "GA",
106
+ "GB",
107
+ "GD",
108
+ "GE",
109
+ "GF",
110
+ "GG",
111
+ "GH",
112
+ "GI",
113
+ "GL",
114
+ "GM",
115
+ "GN",
116
+ "GP",
117
+ "GQ",
118
+ "GR",
119
+ "GS",
120
+ "GT",
121
+ "GU",
122
+ "GW",
123
+ "GY",
124
+ "HK",
125
+ "HM",
126
+ "HN",
127
+ "HR",
128
+ "HT",
129
+ "HU",
130
+ "ID",
131
+ "IE",
132
+ "IL",
133
+ "IM",
134
+ "IN",
135
+ "IO",
136
+ "IQ",
137
+ "IR",
138
+ "IS",
139
+ "IT",
140
+ "JE",
141
+ "JM",
142
+ "JO",
143
+ "JP",
144
+ "KE",
145
+ "KG",
146
+ "KH",
147
+ "KI",
148
+ "KM",
149
+ "KN",
150
+ "KP",
151
+ "KR",
152
+ "KW",
153
+ "KY",
154
+ "KZ",
155
+ "LA",
156
+ "LB",
157
+ "LC",
158
+ "LI",
159
+ "LK",
160
+ "LR",
161
+ "LS",
162
+ "LT",
163
+ "LU",
164
+ "LV",
165
+ "LY",
166
+ "MA",
167
+ "MC",
168
+ "MD",
169
+ "ME",
170
+ "MF",
171
+ "MG",
172
+ "MH",
173
+ "MK",
174
+ "ML",
175
+ "MM",
176
+ "MN",
177
+ "MO",
178
+ "MP",
179
+ "MQ",
180
+ "MR",
181
+ "MS",
182
+ "MT",
183
+ "MU",
184
+ "MV",
185
+ "MW",
186
+ "MX",
187
+ "MY",
188
+ "MZ",
189
+ "NA",
190
+ "NC",
191
+ "NE",
192
+ "NF",
193
+ "NG",
194
+ "NI",
195
+ "NL",
196
+ "NO",
197
+ "NP",
198
+ "NR",
199
+ "NU",
200
+ "NZ",
201
+ "OM",
202
+ "PA",
203
+ "PE",
204
+ "PF",
205
+ "PG",
206
+ "PH",
207
+ "PK",
208
+ "PL",
209
+ "PM",
210
+ "PN",
211
+ "PR",
212
+ "PS",
213
+ "PT",
214
+ "PW",
215
+ "PY",
216
+ "QA",
217
+ "RE",
218
+ "RO",
219
+ "RS",
220
+ "RU",
221
+ "RW",
222
+ "SA",
223
+ "SB",
224
+ "SC",
225
+ "SD",
226
+ "SE",
227
+ "SG",
228
+ "SH",
229
+ "SI",
230
+ "SJ",
231
+ "SK",
232
+ "SL",
233
+ "SM",
234
+ "SN",
235
+ "SO",
236
+ "SR",
237
+ "SS",
238
+ "ST",
239
+ "SV",
240
+ "SX",
241
+ "SY",
242
+ "SZ",
243
+ "TC",
244
+ "TD",
245
+ "TF",
246
+ "TG",
247
+ "TH",
248
+ "TJ",
249
+ "TK",
250
+ "TL",
251
+ "TM",
252
+ "TN",
253
+ "TO",
254
+ "TR",
255
+ "TT",
256
+ "TV",
257
+ "TW",
258
+ "TZ",
259
+ "UA",
260
+ "UG",
261
+ "UM",
262
+ "US",
263
+ "UY",
264
+ "UZ",
265
+ "VA",
266
+ "VC",
267
+ "VE",
268
+ "VG",
269
+ "VI",
270
+ "VN",
271
+ "VU",
272
+ "WF",
273
+ "WS",
274
+ "YE",
275
+ "YT",
276
+ "ZA",
277
+ "ZM",
278
+ "ZW"
279
+ ],
280
+ "type": "string"
281
+ },
282
+ "date": {
283
+ "$comment": "Note to tool implementers: it is necessary to cast YAML 'date' objects to string objects when validating against this schema.",
284
+ "examples": ["1900-01-01", "2020-12-31"],
285
+ "format": "date",
286
+ "pattern": "^[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$",
287
+ "type": "string"
288
+ },
289
+ "doi": {
290
+ "description": "The DOI of the work (i.e., 10.5281/zenodo.1003150, not the resolver URL http://doi.org/10.5281/zenodo.1003150).",
291
+ "examples": ["10.5281/zenodo.1003150"],
292
+ "pattern": "^10\\.\\d{4,9}(\\.\\d+)?/[A-Za-z0-9:/_;\\-\\.\\(\\)\\[\\]\\\\]+$",
293
+ "type": "string"
294
+ },
295
+ "email": {
296
+ "description": "An email address.",
297
+ "pattern": "^[\\S]+@[\\S]+\\.[\\S]{2,}$",
298
+ "type": "string"
299
+ },
300
+ "entity": {
301
+ "additionalProperties": false,
302
+ "description": "An entity, i.e., an institution, team, research group, company, conference, etc., as opposed to a single natural person.",
303
+ "properties": {
304
+ "address": {
305
+ "$ref": "#/definitions/address",
306
+ "description": "The entity's address."
307
+ },
308
+ "alias": {
309
+ "$ref": "#/definitions/alias",
310
+ "description": "The entity's alias."
311
+ },
312
+ "city": {
313
+ "$ref": "#/definitions/city",
314
+ "description": "The entity's city."
315
+ },
316
+ "country": {
317
+ "$ref": "#/definitions/country",
318
+ "description": "The entity's country."
319
+ },
320
+ "date-end": {
321
+ "$ref": "#/definitions/date",
322
+ "description": "The entity's ending date, e.g., when the entity is a conference."
323
+ },
324
+ "date-start": {
325
+ "$ref": "#/definitions/date",
326
+ "description": "The entity's starting date, e.g., when the entity is a conference."
327
+ },
328
+ "email": {
329
+ "$ref": "#/definitions/email",
330
+ "description": "The entity's email address."
331
+ },
332
+ "fax": {
333
+ "$ref": "#/definitions/fax",
334
+ "description": "The entity's fax number."
335
+ },
336
+ "location": {
337
+ "description": "The entity's location, e.g., when the entity is a conference.",
338
+ "minLength": 1,
339
+ "type": "string"
340
+ },
341
+ "name": {
342
+ "description": "The entity's name.",
343
+ "minLength": 1,
344
+ "type": "string"
345
+ },
346
+ "orcid": {
347
+ "$ref": "#/definitions/orcid",
348
+ "description": "The entity's orcid."
349
+ },
350
+ "post-code": {
351
+ "$ref": "#/definitions/post-code",
352
+ "description": "The entity's post code."
353
+ },
354
+ "region": {
355
+ "$ref": "#/definitions/region",
356
+ "description": "The entity's region."
357
+ },
358
+ "tel": {
359
+ "$ref": "#/definitions/tel",
360
+ "description": "The entity's telephone number."
361
+ },
362
+ "website": {
363
+ "$ref": "#/definitions/url",
364
+ "description": "The entity's website."
365
+ }
366
+ },
367
+ "required": ["name"],
368
+ "type": "object"
369
+ },
370
+ "fax": {
371
+ "description": "A fax number.",
372
+ "minLength": 1,
373
+ "type": "string"
374
+ },
375
+ "identifier": {
376
+ "anyOf": [
377
+ {
378
+ "additionalProperties": false,
379
+ "properties": {
380
+ "description": {
381
+ "$ref": "#/definitions/identifier-description"
382
+ },
383
+ "type": {
384
+ "enum": ["doi"],
385
+ "type": "string"
386
+ },
387
+ "value": {
388
+ "$ref": "#/definitions/doi"
389
+ }
390
+ },
391
+ "required": ["type", "value"],
392
+ "type": "object"
393
+ },
394
+ {
395
+ "additionalProperties": false,
396
+ "properties": {
397
+ "description": {
398
+ "$ref": "#/definitions/identifier-description"
399
+ },
400
+ "type": {
401
+ "enum": ["url"],
402
+ "type": "string"
403
+ },
404
+ "value": {
405
+ "$ref": "#/definitions/url"
406
+ }
407
+ },
408
+ "required": ["type", "value"],
409
+ "type": "object"
410
+ },
411
+ {
412
+ "additionalProperties": false,
413
+ "properties": {
414
+ "description": {
415
+ "$ref": "#/definitions/identifier-description"
416
+ },
417
+ "type": {
418
+ "enum": ["swh"],
419
+ "type": "string"
420
+ },
421
+ "value": {
422
+ "$ref": "#/definitions/swh-identifier"
423
+ }
424
+ },
425
+ "required": ["type", "value"],
426
+ "type": "object"
427
+ },
428
+ {
429
+ "additionalProperties": false,
430
+ "properties": {
431
+ "description": {
432
+ "$ref": "#/definitions/identifier-description"
433
+ },
434
+ "type": {
435
+ "enum": ["other"],
436
+ "type": "string"
437
+ },
438
+ "value": {
439
+ "minLength": 1,
440
+ "type": "string"
441
+ }
442
+ },
443
+ "required": ["type", "value"],
444
+ "type": "object"
445
+ }
446
+ ],
447
+ "description": "An identifier for a work."
448
+ },
449
+ "identifier-description": {
450
+ "description": "A description for a specific identifier value.",
451
+ "examples": [
452
+ "The version DOI for this version, which has a relation childOf with the concept DOI specified in the doi field in the root of this file.",
453
+ "The identifier provided by Archival Repository, which points to this version of the software."
454
+ ],
455
+ "minLength": 1,
456
+ "type": "string"
457
+ },
458
+ "license": {
459
+ "description": "An SPDX license identifier.",
460
+ "oneOf": [
461
+ {
462
+ "$ref": "#/definitions/license-enum",
463
+ "examples": ["Apache-2.0", "MIT"]
464
+ },
465
+ {
466
+ "$comment": "When there are multiple licenses, it is assumed their relationship is OR, not AND",
467
+ "examples": [
468
+ ["Apache-2.0", "MIT"],
469
+ ["GPL-3.0", "GPL-3.0-or-later"]
470
+ ],
471
+ "items": {
472
+ "$ref": "#/definitions/license-enum"
473
+ },
474
+ "minItems": 1,
475
+ "type": "array",
476
+ "uniqueItems": true
477
+ }
478
+ ]
479
+ },
480
+ "license-enum": {
481
+ "$comment": "Use https://github.com/citation-file-format/get-spdx-licenses to update this enum in the future",
482
+ "description": "SPDX license list; releaseDate=2021-05-14; source=https://raw.githubusercontent.com/spdx/license-list-data/master/json/licenses.json",
483
+ "enum": [
484
+ "0BSD",
485
+ "AAL",
486
+ "Abstyles",
487
+ "Adobe-2006",
488
+ "Adobe-Glyph",
489
+ "ADSL",
490
+ "AFL-1.1",
491
+ "AFL-1.2",
492
+ "AFL-2.0",
493
+ "AFL-2.1",
494
+ "AFL-3.0",
495
+ "Afmparse",
496
+ "AGPL-1.0",
497
+ "AGPL-1.0-only",
498
+ "AGPL-1.0-or-later",
499
+ "AGPL-3.0",
500
+ "AGPL-3.0-only",
501
+ "AGPL-3.0-or-later",
502
+ "Aladdin",
503
+ "AMDPLPA",
504
+ "AML",
505
+ "AMPAS",
506
+ "ANTLR-PD",
507
+ "ANTLR-PD-fallback",
508
+ "Apache-1.0",
509
+ "Apache-1.1",
510
+ "Apache-2.0",
511
+ "APAFML",
512
+ "APL-1.0",
513
+ "APSL-1.0",
514
+ "APSL-1.1",
515
+ "APSL-1.2",
516
+ "APSL-2.0",
517
+ "Artistic-1.0",
518
+ "Artistic-1.0-cl8",
519
+ "Artistic-1.0-Perl",
520
+ "Artistic-2.0",
521
+ "Bahyph",
522
+ "Barr",
523
+ "Beerware",
524
+ "BitTorrent-1.0",
525
+ "BitTorrent-1.1",
526
+ "blessing",
527
+ "BlueOak-1.0.0",
528
+ "Borceux",
529
+ "BSD-1-Clause",
530
+ "BSD-2-Clause",
531
+ "BSD-2-Clause-FreeBSD",
532
+ "BSD-2-Clause-NetBSD",
533
+ "BSD-2-Clause-Patent",
534
+ "BSD-2-Clause-Views",
535
+ "BSD-3-Clause",
536
+ "BSD-3-Clause-Attribution",
537
+ "BSD-3-Clause-Clear",
538
+ "BSD-3-Clause-LBNL",
539
+ "BSD-3-Clause-Modification",
540
+ "BSD-3-Clause-No-Nuclear-License",
541
+ "BSD-3-Clause-No-Nuclear-License-2014",
542
+ "BSD-3-Clause-No-Nuclear-Warranty",
543
+ "BSD-3-Clause-Open-MPI",
544
+ "BSD-4-Clause",
545
+ "BSD-4-Clause-Shortened",
546
+ "BSD-4-Clause-UC",
547
+ "BSD-Protection",
548
+ "BSD-Source-Code",
549
+ "BSL-1.0",
550
+ "BUSL-1.1",
551
+ "bzip2-1.0.5",
552
+ "bzip2-1.0.6",
553
+ "C-UDA-1.0",
554
+ "CAL-1.0",
555
+ "CAL-1.0-Combined-Work-Exception",
556
+ "Caldera",
557
+ "CATOSL-1.1",
558
+ "CC-BY-1.0",
559
+ "CC-BY-2.0",
560
+ "CC-BY-2.5",
561
+ "CC-BY-3.0",
562
+ "CC-BY-3.0-AT",
563
+ "CC-BY-3.0-US",
564
+ "CC-BY-4.0",
565
+ "CC-BY-NC-1.0",
566
+ "CC-BY-NC-2.0",
567
+ "CC-BY-NC-2.5",
568
+ "CC-BY-NC-3.0",
569
+ "CC-BY-NC-4.0",
570
+ "CC-BY-NC-ND-1.0",
571
+ "CC-BY-NC-ND-2.0",
572
+ "CC-BY-NC-ND-2.5",
573
+ "CC-BY-NC-ND-3.0",
574
+ "CC-BY-NC-ND-3.0-IGO",
575
+ "CC-BY-NC-ND-4.0",
576
+ "CC-BY-NC-SA-1.0",
577
+ "CC-BY-NC-SA-2.0",
578
+ "CC-BY-NC-SA-2.5",
579
+ "CC-BY-NC-SA-3.0",
580
+ "CC-BY-NC-SA-4.0",
581
+ "CC-BY-ND-1.0",
582
+ "CC-BY-ND-2.0",
583
+ "CC-BY-ND-2.5",
584
+ "CC-BY-ND-3.0",
585
+ "CC-BY-ND-4.0",
586
+ "CC-BY-SA-1.0",
587
+ "CC-BY-SA-2.0",
588
+ "CC-BY-SA-2.0-UK",
589
+ "CC-BY-SA-2.1-JP",
590
+ "CC-BY-SA-2.5",
591
+ "CC-BY-SA-3.0",
592
+ "CC-BY-SA-3.0-AT",
593
+ "CC-BY-SA-4.0",
594
+ "CC-PDDC",
595
+ "CC0-1.0",
596
+ "CDDL-1.0",
597
+ "CDDL-1.1",
598
+ "CDL-1.0",
599
+ "CDLA-Permissive-1.0",
600
+ "CDLA-Sharing-1.0",
601
+ "CECILL-1.0",
602
+ "CECILL-1.1",
603
+ "CECILL-2.0",
604
+ "CECILL-2.1",
605
+ "CECILL-B",
606
+ "CECILL-C",
607
+ "CERN-OHL-1.1",
608
+ "CERN-OHL-1.2",
609
+ "CERN-OHL-P-2.0",
610
+ "CERN-OHL-S-2.0",
611
+ "CERN-OHL-W-2.0",
612
+ "ClArtistic",
613
+ "CNRI-Jython",
614
+ "CNRI-Python",
615
+ "CNRI-Python-GPL-Compatible",
616
+ "Condor-1.1",
617
+ "copyleft-next-0.3.0",
618
+ "copyleft-next-0.3.1",
619
+ "CPAL-1.0",
620
+ "CPL-1.0",
621
+ "CPOL-1.02",
622
+ "Crossword",
623
+ "CrystalStacker",
624
+ "CUA-OPL-1.0",
625
+ "Cube",
626
+ "curl",
627
+ "D-FSL-1.0",
628
+ "diffmark",
629
+ "DOC",
630
+ "Dotseqn",
631
+ "DRL-1.0",
632
+ "DSDP",
633
+ "dvipdfm",
634
+ "ECL-1.0",
635
+ "ECL-2.0",
636
+ "eCos-2.0",
637
+ "EFL-1.0",
638
+ "EFL-2.0",
639
+ "eGenix",
640
+ "Entessa",
641
+ "EPICS",
642
+ "EPL-1.0",
643
+ "EPL-2.0",
644
+ "ErlPL-1.1",
645
+ "etalab-2.0",
646
+ "EUDatagrid",
647
+ "EUPL-1.0",
648
+ "EUPL-1.1",
649
+ "EUPL-1.2",
650
+ "Eurosym",
651
+ "Fair",
652
+ "Frameworx-1.0",
653
+ "FreeBSD-DOC",
654
+ "FreeImage",
655
+ "FSFAP",
656
+ "FSFUL",
657
+ "FSFULLR",
658
+ "FTL",
659
+ "GD",
660
+ "GFDL-1.1",
661
+ "GFDL-1.1-invariants-only",
662
+ "GFDL-1.1-invariants-or-later",
663
+ "GFDL-1.1-no-invariants-only",
664
+ "GFDL-1.1-no-invariants-or-later",
665
+ "GFDL-1.1-only",
666
+ "GFDL-1.1-or-later",
667
+ "GFDL-1.2",
668
+ "GFDL-1.2-invariants-only",
669
+ "GFDL-1.2-invariants-or-later",
670
+ "GFDL-1.2-no-invariants-only",
671
+ "GFDL-1.2-no-invariants-or-later",
672
+ "GFDL-1.2-only",
673
+ "GFDL-1.2-or-later",
674
+ "GFDL-1.3",
675
+ "GFDL-1.3-invariants-only",
676
+ "GFDL-1.3-invariants-or-later",
677
+ "GFDL-1.3-no-invariants-only",
678
+ "GFDL-1.3-no-invariants-or-later",
679
+ "GFDL-1.3-only",
680
+ "GFDL-1.3-or-later",
681
+ "Giftware",
682
+ "GL2PS",
683
+ "Glide",
684
+ "Glulxe",
685
+ "GLWTPL",
686
+ "gnuplot",
687
+ "GPL-1.0",
688
+ "GPL-1.0-only",
689
+ "GPL-1.0-or-later",
690
+ "GPL-1.0+",
691
+ "GPL-2.0",
692
+ "GPL-2.0-only",
693
+ "GPL-2.0-or-later",
694
+ "GPL-2.0-with-autoconf-exception",
695
+ "GPL-2.0-with-bison-exception",
696
+ "GPL-2.0-with-classpath-exception",
697
+ "GPL-2.0-with-font-exception",
698
+ "GPL-2.0-with-GCC-exception",
699
+ "GPL-2.0+",
700
+ "GPL-3.0",
701
+ "GPL-3.0-only",
702
+ "GPL-3.0-or-later",
703
+ "GPL-3.0-with-autoconf-exception",
704
+ "GPL-3.0-with-GCC-exception",
705
+ "GPL-3.0+",
706
+ "gSOAP-1.3b",
707
+ "HaskellReport",
708
+ "Hippocratic-2.1",
709
+ "HPND",
710
+ "HPND-sell-variant",
711
+ "HTMLTIDY",
712
+ "IBM-pibs",
713
+ "ICU",
714
+ "IJG",
715
+ "ImageMagick",
716
+ "iMatix",
717
+ "Imlib2",
718
+ "Info-ZIP",
719
+ "Intel",
720
+ "Intel-ACPI",
721
+ "Interbase-1.0",
722
+ "IPA",
723
+ "IPL-1.0",
724
+ "ISC",
725
+ "JasPer-2.0",
726
+ "JPNIC",
727
+ "JSON",
728
+ "LAL-1.2",
729
+ "LAL-1.3",
730
+ "Latex2e",
731
+ "Leptonica",
732
+ "LGPL-2.0",
733
+ "LGPL-2.0-only",
734
+ "LGPL-2.0-or-later",
735
+ "LGPL-2.0+",
736
+ "LGPL-2.1",
737
+ "LGPL-2.1-only",
738
+ "LGPL-2.1-or-later",
739
+ "LGPL-2.1+",
740
+ "LGPL-3.0",
741
+ "LGPL-3.0-only",
742
+ "LGPL-3.0-or-later",
743
+ "LGPL-3.0+",
744
+ "LGPLLR",
745
+ "Libpng",
746
+ "libpng-2.0",
747
+ "libselinux-1.0",
748
+ "libtiff",
749
+ "LiLiQ-P-1.1",
750
+ "LiLiQ-R-1.1",
751
+ "LiLiQ-Rplus-1.1",
752
+ "Linux-OpenIB",
753
+ "LPL-1.0",
754
+ "LPL-1.02",
755
+ "LPPL-1.0",
756
+ "LPPL-1.1",
757
+ "LPPL-1.2",
758
+ "LPPL-1.3a",
759
+ "LPPL-1.3c",
760
+ "MakeIndex",
761
+ "MirOS",
762
+ "MIT",
763
+ "MIT-0",
764
+ "MIT-advertising",
765
+ "MIT-CMU",
766
+ "MIT-enna",
767
+ "MIT-feh",
768
+ "MIT-Modern-Variant",
769
+ "MIT-open-group",
770
+ "MITNFA",
771
+ "Motosoto",
772
+ "mpich2",
773
+ "MPL-1.0",
774
+ "MPL-1.1",
775
+ "MPL-2.0",
776
+ "MPL-2.0-no-copyleft-exception",
777
+ "MS-PL",
778
+ "MS-RL",
779
+ "MTLL",
780
+ "MulanPSL-1.0",
781
+ "MulanPSL-2.0",
782
+ "Multics",
783
+ "Mup",
784
+ "NAIST-2003",
785
+ "NASA-1.3",
786
+ "Naumen",
787
+ "NBPL-1.0",
788
+ "NCGL-UK-2.0",
789
+ "NCSA",
790
+ "Net-SNMP",
791
+ "NetCDF",
792
+ "Newsletr",
793
+ "NGPL",
794
+ "NIST-PD",
795
+ "NIST-PD-fallback",
796
+ "NLOD-1.0",
797
+ "NLPL",
798
+ "Nokia",
799
+ "NOSL",
800
+ "Noweb",
801
+ "NPL-1.0",
802
+ "NPL-1.1",
803
+ "NPOSL-3.0",
804
+ "NRL",
805
+ "NTP",
806
+ "NTP-0",
807
+ "Nunit",
808
+ "O-UDA-1.0",
809
+ "OCCT-PL",
810
+ "OCLC-2.0",
811
+ "ODbL-1.0",
812
+ "ODC-By-1.0",
813
+ "OFL-1.0",
814
+ "OFL-1.0-no-RFN",
815
+ "OFL-1.0-RFN",
816
+ "OFL-1.1",
817
+ "OFL-1.1-no-RFN",
818
+ "OFL-1.1-RFN",
819
+ "OGC-1.0",
820
+ "OGDL-Taiwan-1.0",
821
+ "OGL-Canada-2.0",
822
+ "OGL-UK-1.0",
823
+ "OGL-UK-2.0",
824
+ "OGL-UK-3.0",
825
+ "OGTSL",
826
+ "OLDAP-1.1",
827
+ "OLDAP-1.2",
828
+ "OLDAP-1.3",
829
+ "OLDAP-1.4",
830
+ "OLDAP-2.0",
831
+ "OLDAP-2.0.1",
832
+ "OLDAP-2.1",
833
+ "OLDAP-2.2",
834
+ "OLDAP-2.2.1",
835
+ "OLDAP-2.2.2",
836
+ "OLDAP-2.3",
837
+ "OLDAP-2.4",
838
+ "OLDAP-2.5",
839
+ "OLDAP-2.6",
840
+ "OLDAP-2.7",
841
+ "OLDAP-2.8",
842
+ "OML",
843
+ "OpenSSL",
844
+ "OPL-1.0",
845
+ "OSET-PL-2.1",
846
+ "OSL-1.0",
847
+ "OSL-1.1",
848
+ "OSL-2.0",
849
+ "OSL-2.1",
850
+ "OSL-3.0",
851
+ "Parity-6.0.0",
852
+ "Parity-7.0.0",
853
+ "PDDL-1.0",
854
+ "PHP-3.0",
855
+ "PHP-3.01",
856
+ "Plexus",
857
+ "PolyForm-Noncommercial-1.0.0",
858
+ "PolyForm-Small-Business-1.0.0",
859
+ "PostgreSQL",
860
+ "PSF-2.0",
861
+ "psfrag",
862
+ "psutils",
863
+ "Python-2.0",
864
+ "Qhull",
865
+ "QPL-1.0",
866
+ "Rdisc",
867
+ "RHeCos-1.1",
868
+ "RPL-1.1",
869
+ "RPL-1.5",
870
+ "RPSL-1.0",
871
+ "RSA-MD",
872
+ "RSCPL",
873
+ "Ruby",
874
+ "SAX-PD",
875
+ "Saxpath",
876
+ "SCEA",
877
+ "Sendmail",
878
+ "Sendmail-8.23",
879
+ "SGI-B-1.0",
880
+ "SGI-B-1.1",
881
+ "SGI-B-2.0",
882
+ "SHL-0.5",
883
+ "SHL-0.51",
884
+ "SimPL-2.0",
885
+ "SISSL",
886
+ "SISSL-1.2",
887
+ "Sleepycat",
888
+ "SMLNJ",
889
+ "SMPPL",
890
+ "SNIA",
891
+ "Spencer-86",
892
+ "Spencer-94",
893
+ "Spencer-99",
894
+ "SPL-1.0",
895
+ "SSH-OpenSSH",
896
+ "SSH-short",
897
+ "SSPL-1.0",
898
+ "StandardML-NJ",
899
+ "SugarCRM-1.1.3",
900
+ "SWL",
901
+ "TAPR-OHL-1.0",
902
+ "TCL",
903
+ "TCP-wrappers",
904
+ "TMate",
905
+ "TORQUE-1.1",
906
+ "TOSL",
907
+ "TU-Berlin-1.0",
908
+ "TU-Berlin-2.0",
909
+ "UCL-1.0",
910
+ "Unicode-DFS-2015",
911
+ "Unicode-DFS-2016",
912
+ "Unicode-TOU",
913
+ "Unlicense",
914
+ "UPL-1.0",
915
+ "Vim",
916
+ "VOSTROM",
917
+ "VSL-1.0",
918
+ "W3C",
919
+ "W3C-19980720",
920
+ "W3C-20150513",
921
+ "Watcom-1.0",
922
+ "Wsuipa",
923
+ "WTFPL",
924
+ "wxWindows",
925
+ "X11",
926
+ "Xerox",
927
+ "XFree86-1.1",
928
+ "xinetd",
929
+ "Xnet",
930
+ "xpp",
931
+ "XSkat",
932
+ "YPL-1.0",
933
+ "YPL-1.1",
934
+ "Zed",
935
+ "Zend-2.0",
936
+ "Zimbra-1.3",
937
+ "Zimbra-1.4",
938
+ "Zlib",
939
+ "zlib-acknowledgement",
940
+ "ZPL-1.1",
941
+ "ZPL-2.0",
942
+ "ZPL-2.1"
943
+ ],
944
+ "type": "string"
945
+ },
946
+ "orcid": {
947
+ "description": "Identifier for an author, see https://orcid.org.",
948
+ "format": "uri",
949
+ "pattern": "https://orcid\\.org/[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}[0-9X]{1}",
950
+ "type": "string"
951
+ },
952
+ "person": {
953
+ "additionalProperties": false,
954
+ "description": "A person.",
955
+ "properties": {
956
+ "address": {
957
+ "$ref": "#/definitions/address",
958
+ "description": "The person's address."
959
+ },
960
+ "affiliation": {
961
+ "description": "The person's affilitation.",
962
+ "minLength": 1,
963
+ "type": "string"
964
+ },
965
+ "alias": {
966
+ "$ref": "#/definitions/alias",
967
+ "description": "The person's alias."
968
+ },
969
+ "city": {
970
+ "$ref": "#/definitions/city",
971
+ "description": "The person's city."
972
+ },
973
+ "country": {
974
+ "$ref": "#/definitions/country",
975
+ "description": "The person's country."
976
+ },
977
+ "email": {
978
+ "$ref": "#/definitions/email",
979
+ "description": "The person's email address."
980
+ },
981
+ "family-names": {
982
+ "description": "The person's family names.",
983
+ "minLength": 1,
984
+ "type": "string"
985
+ },
986
+ "fax": {
987
+ "$ref": "#/definitions/fax",
988
+ "description": "The person's fax number."
989
+ },
990
+ "given-names": {
991
+ "description": "The person's given names.",
992
+ "minLength": 1,
993
+ "type": "string"
994
+ },
995
+ "name-particle": {
996
+ "description": "The person's name particle, e.g., a nobiliary particle or a preposition meaning 'of' or 'from' (for example 'von' in 'Alexander von Humboldt').",
997
+ "examples": ["von"],
998
+ "minLength": 1,
999
+ "type": "string"
1000
+ },
1001
+ "name-suffix": {
1002
+ "description": "The person's name-suffix, e.g. 'Jr.' for Sammy Davis Jr. or 'III' for Frank Edwin Wright III.",
1003
+ "examples": ["Jr.", "III"],
1004
+ "minLength": 1,
1005
+ "type": "string"
1006
+ },
1007
+ "orcid": {
1008
+ "$ref": "#/definitions/orcid",
1009
+ "description": "The person's ORCID."
1010
+ },
1011
+ "post-code": {
1012
+ "$ref": "#/definitions/post-code",
1013
+ "description": "The person's post-code."
1014
+ },
1015
+ "region": {
1016
+ "$ref": "#/definitions/region",
1017
+ "description": "The person's region."
1018
+ },
1019
+ "tel": {
1020
+ "$ref": "#/definitions/tel",
1021
+ "description": "The person's phone number."
1022
+ },
1023
+ "website": {
1024
+ "$ref": "#/definitions/url",
1025
+ "description": "The person's website."
1026
+ }
1027
+ },
1028
+ "type": "object"
1029
+ },
1030
+ "post-code": {
1031
+ "anyOf": [
1032
+ {
1033
+ "minLength": 1,
1034
+ "type": "string"
1035
+ },
1036
+ {
1037
+ "type": "number"
1038
+ }
1039
+ ],
1040
+ "description": "A post code."
1041
+ },
1042
+ "reference": {
1043
+ "additionalProperties": false,
1044
+ "description": "A reference to a work.",
1045
+ "properties": {
1046
+ "abbreviation": {
1047
+ "description": "The abbreviation of a work.",
1048
+ "minLength": 1,
1049
+ "type": "string"
1050
+ },
1051
+ "abstract": {
1052
+ "description": "The abstract of a work.",
1053
+ "minLength": 1,
1054
+ "type": "string"
1055
+ },
1056
+ "authors": {
1057
+ "description": "The author(s) of a work.",
1058
+ "items": {
1059
+ "anyOf": [
1060
+ {
1061
+ "$ref": "#/definitions/person"
1062
+ },
1063
+ {
1064
+ "$ref": "#/definitions/entity"
1065
+ }
1066
+ ]
1067
+ },
1068
+ "minItems": 1,
1069
+ "type": "array",
1070
+ "uniqueItems": true
1071
+ },
1072
+ "collection-doi": {
1073
+ "$ref": "#/definitions/doi",
1074
+ "description": "The DOI of a collection containing the work."
1075
+ },
1076
+ "collection-title": {
1077
+ "description": "The title of a collection or proceedings.",
1078
+ "minLength": 1,
1079
+ "type": "string"
1080
+ },
1081
+ "collection-type": {
1082
+ "description": "The type of a collection.",
1083
+ "minLength": 1,
1084
+ "type": "string"
1085
+ },
1086
+ "commit": {
1087
+ "$ref": "#/definitions/commit"
1088
+ },
1089
+ "conference": {
1090
+ "$ref": "#/definitions/entity",
1091
+ "description": "The conference where the work was presented."
1092
+ },
1093
+ "contact": {
1094
+ "description": "The contact person, group, company, etc. for a work.",
1095
+ "items": {
1096
+ "anyOf": [
1097
+ {
1098
+ "$ref": "#/definitions/person"
1099
+ },
1100
+ {
1101
+ "$ref": "#/definitions/entity"
1102
+ }
1103
+ ]
1104
+ },
1105
+ "minItems": 1,
1106
+ "type": "array",
1107
+ "uniqueItems": true
1108
+ },
1109
+ "copyright": {
1110
+ "description": "The copyright information pertaining to the work.",
1111
+ "minLength": 1,
1112
+ "type": "string"
1113
+ },
1114
+ "data-type": {
1115
+ "description": "The data type of a data set.",
1116
+ "minLength": 1,
1117
+ "type": "string"
1118
+ },
1119
+ "database": {
1120
+ "description": "The name of the database where a work was accessed/is stored.",
1121
+ "minLength": 1,
1122
+ "type": "string"
1123
+ },
1124
+ "database-provider": {
1125
+ "$ref": "#/definitions/entity",
1126
+ "description": "The provider of the database where a work was accessed/is stored."
1127
+ },
1128
+ "date-accessed": {
1129
+ "$ref": "#/definitions/date",
1130
+ "description": "The date the work was accessed."
1131
+ },
1132
+ "date-downloaded": {
1133
+ "$ref": "#/definitions/date",
1134
+ "description": "The date the work has been downloaded."
1135
+ },
1136
+ "date-published": {
1137
+ "$ref": "#/definitions/date",
1138
+ "description": "The date the work has been published."
1139
+ },
1140
+ "date-released": {
1141
+ "$ref": "#/definitions/date",
1142
+ "description": "The date the work has been released."
1143
+ },
1144
+ "department": {
1145
+ "description": "The department where a work has been produced.",
1146
+ "minLength": 1,
1147
+ "type": "string"
1148
+ },
1149
+ "doi": {
1150
+ "$ref": "#/definitions/doi",
1151
+ "description": "The DOI of the work."
1152
+ },
1153
+ "edition": {
1154
+ "description": "The edition of the work.",
1155
+ "minLength": 1,
1156
+ "type": "string"
1157
+ },
1158
+ "editors": {
1159
+ "description": "The editor(s) of a work.",
1160
+ "items": {
1161
+ "anyOf": [
1162
+ {
1163
+ "$ref": "#/definitions/person"
1164
+ },
1165
+ {
1166
+ "$ref": "#/definitions/entity"
1167
+ }
1168
+ ]
1169
+ },
1170
+ "minItems": 1,
1171
+ "type": "array",
1172
+ "uniqueItems": true
1173
+ },
1174
+ "editors-series": {
1175
+ "description": "The editor(s) of a series in which a work has been published.",
1176
+ "items": {
1177
+ "anyOf": [
1178
+ {
1179
+ "$ref": "#/definitions/person"
1180
+ },
1181
+ {
1182
+ "$ref": "#/definitions/entity"
1183
+ }
1184
+ ]
1185
+ },
1186
+ "minItems": 1,
1187
+ "type": "array",
1188
+ "uniqueItems": true
1189
+ },
1190
+ "end": {
1191
+ "anyOf": [
1192
+ {
1193
+ "type": "integer"
1194
+ },
1195
+ {
1196
+ "minLength": 1,
1197
+ "type": "string"
1198
+ }
1199
+ ],
1200
+ "description": "The end page of the work."
1201
+ },
1202
+ "entry": {
1203
+ "description": "An entry in the collection that constitutes the work.",
1204
+ "minLength": 1,
1205
+ "type": "string"
1206
+ },
1207
+ "filename": {
1208
+ "description": "The name of the electronic file containing the work.",
1209
+ "minLength": 1,
1210
+ "type": "string"
1211
+ },
1212
+ "format": {
1213
+ "description": "The format in which a work is represented.",
1214
+ "minLength": 1,
1215
+ "type": "string"
1216
+ },
1217
+ "identifiers": {
1218
+ "description": "The identifier(s) of the work.",
1219
+ "items": {
1220
+ "$ref": "#/definitions/identifier"
1221
+ },
1222
+ "minItems": 1,
1223
+ "type": "array",
1224
+ "uniqueItems": true
1225
+ },
1226
+ "institution": {
1227
+ "$ref": "#/definitions/entity",
1228
+ "description": "The institution where a work has been produced or published."
1229
+ },
1230
+ "isbn": {
1231
+ "description": "The ISBN of the work.",
1232
+ "pattern": "^[0-9\\- ]{10,17}X?$",
1233
+ "type": "string"
1234
+ },
1235
+ "issn": {
1236
+ "description": "The ISSN of the work.",
1237
+ "pattern": "^\\d{4}-\\d{3}[\\dxX]$",
1238
+ "type": "string"
1239
+ },
1240
+ "issue": {
1241
+ "anyOf": [
1242
+ {
1243
+ "minLength": 1,
1244
+ "type": "string"
1245
+ },
1246
+ {
1247
+ "type": "number"
1248
+ }
1249
+ ],
1250
+ "description": "The issue of a periodical in which a work appeared."
1251
+ },
1252
+ "issue-date": {
1253
+ "description": "The publication date of the issue of a periodical in which a work appeared.",
1254
+ "minLength": 1,
1255
+ "type": "string"
1256
+ },
1257
+ "issue-title": {
1258
+ "description": "The name of the issue of a periodical in which the work appeared.",
1259
+ "minLength": 1,
1260
+ "type": "string"
1261
+ },
1262
+ "journal": {
1263
+ "description": "The name of the journal/magazine/newspaper/periodical where the work was published.",
1264
+ "minLength": 1,
1265
+ "type": "string"
1266
+ },
1267
+ "keywords": {
1268
+ "description": "Keywords pertaining to the work.",
1269
+ "items": {
1270
+ "minLength": 1,
1271
+ "type": "string"
1272
+ },
1273
+ "minItems": 1,
1274
+ "type": "array",
1275
+ "uniqueItems": true
1276
+ },
1277
+ "languages": {
1278
+ "description": "The language identifier(s) of the work according to ISO 639 language strings.",
1279
+ "items": {
1280
+ "maxLength": 3,
1281
+ "minLength": 2,
1282
+ "pattern": "^[a-z]{2,3}$",
1283
+ "type": "string"
1284
+ },
1285
+ "minItems": 1,
1286
+ "type": "array",
1287
+ "uniqueItems": true
1288
+ },
1289
+ "license": {
1290
+ "$ref": "#/definitions/license"
1291
+ },
1292
+ "license-url": {
1293
+ "$ref": "#/definitions/url",
1294
+ "description": "The URL of the license text under which the work is licensed (only for non-standard licenses not included in the SPDX License List)."
1295
+ },
1296
+ "loc-end": {
1297
+ "anyOf": [
1298
+ {
1299
+ "type": "integer"
1300
+ },
1301
+ {
1302
+ "minLength": 1,
1303
+ "type": "string"
1304
+ }
1305
+ ],
1306
+ "description": "The line of code in the file where the work ends."
1307
+ },
1308
+ "loc-start": {
1309
+ "anyOf": [
1310
+ {
1311
+ "type": "integer"
1312
+ },
1313
+ {
1314
+ "minLength": 1,
1315
+ "type": "string"
1316
+ }
1317
+ ],
1318
+ "description": "The line of code in the file where the work starts."
1319
+ },
1320
+ "location": {
1321
+ "$ref": "#/definitions/entity",
1322
+ "description": "The location of the work."
1323
+ },
1324
+ "medium": {
1325
+ "description": "The medium of the work.",
1326
+ "minLength": 1,
1327
+ "type": "string"
1328
+ },
1329
+ "month": {
1330
+ "anyOf": [
1331
+ {
1332
+ "maximum": 12,
1333
+ "minimum": 1,
1334
+ "type": "integer"
1335
+ },
1336
+ {
1337
+ "enum": [
1338
+ "1",
1339
+ "2",
1340
+ "3",
1341
+ "4",
1342
+ "5",
1343
+ "6",
1344
+ "7",
1345
+ "8",
1346
+ "9",
1347
+ "10",
1348
+ "11",
1349
+ "12"
1350
+ ],
1351
+ "type": "string"
1352
+ }
1353
+ ],
1354
+ "description": "The month in which a work has been published."
1355
+ },
1356
+ "nihmsid": {
1357
+ "description": "The NIHMSID of a work.",
1358
+ "minLength": 1,
1359
+ "type": "string"
1360
+ },
1361
+ "notes": {
1362
+ "description": "Notes pertaining to the work.",
1363
+ "minLength": 1,
1364
+ "type": "string"
1365
+ },
1366
+ "number": {
1367
+ "anyOf": [
1368
+ {
1369
+ "minLength": 1,
1370
+ "type": "string"
1371
+ },
1372
+ {
1373
+ "type": "number"
1374
+ }
1375
+ ],
1376
+ "description": "The accession number for a work."
1377
+ },
1378
+ "number-volumes": {
1379
+ "anyOf": [
1380
+ {
1381
+ "type": "integer"
1382
+ },
1383
+ {
1384
+ "minLength": 1,
1385
+ "type": "string"
1386
+ }
1387
+ ],
1388
+ "description": "The number of volumes making up the collection in which the work has been published."
1389
+ },
1390
+ "pages": {
1391
+ "anyOf": [
1392
+ {
1393
+ "type": "integer"
1394
+ },
1395
+ {
1396
+ "minLength": 1,
1397
+ "type": "string"
1398
+ }
1399
+ ],
1400
+ "description": "The number of pages of the work."
1401
+ },
1402
+ "patent-states": {
1403
+ "description": "The states for which a patent is granted.",
1404
+ "items": {
1405
+ "minLength": 1,
1406
+ "type": "string"
1407
+ },
1408
+ "minItems": 1,
1409
+ "type": "array",
1410
+ "uniqueItems": true
1411
+ },
1412
+ "pmcid": {
1413
+ "description": "The PMCID of a work.",
1414
+ "pattern": "^PMC[0-9]{7}$",
1415
+ "type": "string"
1416
+ },
1417
+ "publisher": {
1418
+ "$ref": "#/definitions/entity",
1419
+ "description": "The publisher who has published the work."
1420
+ },
1421
+ "recipients": {
1422
+ "description": "The recipient(s) of a personal communication.",
1423
+ "items": {
1424
+ "anyOf": [
1425
+ {
1426
+ "$ref": "#/definitions/entity"
1427
+ },
1428
+ {
1429
+ "$ref": "#/definitions/person"
1430
+ }
1431
+ ]
1432
+ },
1433
+ "minItems": 1,
1434
+ "type": "array",
1435
+ "uniqueItems": true
1436
+ },
1437
+ "repository": {
1438
+ "$ref": "#/definitions/url",
1439
+ "description": "The URL of the work in a repository (when the repository is neither a source code repository nor a build artifact repository)."
1440
+ },
1441
+ "repository-artifact": {
1442
+ "$ref": "#/definitions/url",
1443
+ "description": "The URL of the work in a build artifact/binary repository."
1444
+ },
1445
+ "repository-code": {
1446
+ "$ref": "#/definitions/url",
1447
+ "description": "The URL of the work in a source code repository."
1448
+ },
1449
+ "scope": {
1450
+ "description": "The scope of the reference, e.g., the section of the work it adheres to.",
1451
+ "minLength": 1,
1452
+ "type": "string"
1453
+ },
1454
+ "section": {
1455
+ "anyOf": [
1456
+ {
1457
+ "minLength": 1,
1458
+ "type": "string"
1459
+ },
1460
+ {
1461
+ "type": "number"
1462
+ }
1463
+ ],
1464
+ "description": "The section of a work that is referenced."
1465
+ },
1466
+ "senders": {
1467
+ "description": "The sender(s) of a personal communication.",
1468
+ "items": {
1469
+ "anyOf": [
1470
+ {
1471
+ "$ref": "#/definitions/entity"
1472
+ },
1473
+ {
1474
+ "$ref": "#/definitions/person"
1475
+ }
1476
+ ]
1477
+ },
1478
+ "minItems": 1,
1479
+ "type": "array",
1480
+ "uniqueItems": true
1481
+ },
1482
+ "start": {
1483
+ "anyOf": [
1484
+ {
1485
+ "type": "integer"
1486
+ },
1487
+ {
1488
+ "minLength": 1,
1489
+ "type": "string"
1490
+ }
1491
+ ],
1492
+ "description": "The start page of the work."
1493
+ },
1494
+ "status": {
1495
+ "description": "The publication status of the work.",
1496
+ "enum": [
1497
+ "abstract",
1498
+ "advance-online",
1499
+ "in-preparation",
1500
+ "in-press",
1501
+ "preprint",
1502
+ "submitted"
1503
+ ],
1504
+ "type": "string"
1505
+ },
1506
+ "term": {
1507
+ "description": "The term being referenced if the work is a dictionary or encyclopedia.",
1508
+ "minLength": 1,
1509
+ "type": "string"
1510
+ },
1511
+ "thesis-type": {
1512
+ "description": "The type of the thesis that is the work.",
1513
+ "minLength": 1,
1514
+ "type": "string"
1515
+ },
1516
+ "title": {
1517
+ "description": "The title of the work.",
1518
+ "minLength": 1,
1519
+ "type": "string"
1520
+ },
1521
+ "translators": {
1522
+ "description": "The translator(s) of a work.",
1523
+ "items": {
1524
+ "anyOf": [
1525
+ {
1526
+ "$ref": "#/definitions/entity"
1527
+ },
1528
+ {
1529
+ "$ref": "#/definitions/person"
1530
+ }
1531
+ ]
1532
+ },
1533
+ "minItems": 1,
1534
+ "type": "array",
1535
+ "uniqueItems": true
1536
+ },
1537
+ "type": {
1538
+ "description": "The type of the work.",
1539
+ "enum": [
1540
+ "art",
1541
+ "article",
1542
+ "audiovisual",
1543
+ "bill",
1544
+ "blog",
1545
+ "book",
1546
+ "catalogue",
1547
+ "conference-paper",
1548
+ "conference",
1549
+ "data",
1550
+ "database",
1551
+ "dictionary",
1552
+ "edited-work",
1553
+ "encyclopedia",
1554
+ "film-broadcast",
1555
+ "generic",
1556
+ "government-document",
1557
+ "grant",
1558
+ "hearing",
1559
+ "historical-work",
1560
+ "legal-case",
1561
+ "legal-rule",
1562
+ "magazine-article",
1563
+ "manual",
1564
+ "map",
1565
+ "multimedia",
1566
+ "music",
1567
+ "newspaper-article",
1568
+ "pamphlet",
1569
+ "patent",
1570
+ "personal-communication",
1571
+ "proceedings",
1572
+ "report",
1573
+ "serial",
1574
+ "slides",
1575
+ "software-code",
1576
+ "software-container",
1577
+ "software-executable",
1578
+ "software-virtual-machine",
1579
+ "software",
1580
+ "sound-recording",
1581
+ "standard",
1582
+ "statute",
1583
+ "thesis",
1584
+ "unpublished",
1585
+ "video",
1586
+ "website"
1587
+ ],
1588
+ "type": "string"
1589
+ },
1590
+ "url": {
1591
+ "$ref": "#/definitions/url",
1592
+ "description": "The URL of the work."
1593
+ },
1594
+ "version": {
1595
+ "$ref": "#/definitions/version",
1596
+ "description": "The version of the work."
1597
+ },
1598
+ "volume": {
1599
+ "anyOf": [
1600
+ {
1601
+ "type": "integer"
1602
+ },
1603
+ {
1604
+ "minLength": 1,
1605
+ "type": "string"
1606
+ }
1607
+ ],
1608
+ "description": "The volume of the periodical in which a work appeared."
1609
+ },
1610
+ "volume-title": {
1611
+ "description": "The title of the volume in which the work appeared.",
1612
+ "minLength": 1,
1613
+ "type": "string"
1614
+ },
1615
+ "year": {
1616
+ "anyOf": [
1617
+ {
1618
+ "type": "integer"
1619
+ },
1620
+ {
1621
+ "minLength": 1,
1622
+ "type": "string"
1623
+ }
1624
+ ],
1625
+ "description": "The year in which a work has been published."
1626
+ },
1627
+ "year-original": {
1628
+ "anyOf": [
1629
+ {
1630
+ "type": "integer"
1631
+ },
1632
+ {
1633
+ "minLength": 1,
1634
+ "type": "string"
1635
+ }
1636
+ ],
1637
+ "description": "The year of the original publication."
1638
+ }
1639
+ },
1640
+ "required": ["authors", "title", "type"],
1641
+ "type": "object"
1642
+ },
1643
+ "region": {
1644
+ "description": "A region.",
1645
+ "minLength": 1,
1646
+ "type": "string"
1647
+ },
1648
+ "swh-identifier": {
1649
+ "$comment": "Software Heritage identifiers are documented here: https://docs.softwareheritage.org/devel/swh-model/persistent-identifiers.html.",
1650
+ "description": "The Software Heritage identifier (without further qualifiers such as origin, visit, anchor, path).",
1651
+ "examples": [
1652
+ "swh:1:cnt:94a9ed024d3859793618152ea559a168bbcbb5e2",
1653
+ "swh:1:dir:d198bc9d7a6bcf6db04f476d29314f157507d505",
1654
+ "swh:1:rev:309cf2674ee7a0749978cf8265ab91a60aea0f7d",
1655
+ "swh:1:rel:22ece559cc7cc2364edc5e5593d63ae8bd229f9f",
1656
+ "swh:1:snp:c7c108084bc0bf3d81436bf980b46e98bd338453"
1657
+ ],
1658
+ "pattern": "^swh:1:(snp|rel|rev|dir|cnt):[0-9a-fA-F]{40}$",
1659
+ "type": "string"
1660
+ },
1661
+ "tel": {
1662
+ "description": "A phone number.",
1663
+ "minLength": 1,
1664
+ "type": "string"
1665
+ },
1666
+ "url": {
1667
+ "format": "uri",
1668
+ "pattern": "^(https|http|ftp|sftp)://.+",
1669
+ "type": "string"
1670
+ },
1671
+ "version": {
1672
+ "anyOf": [
1673
+ {
1674
+ "minLength": 1,
1675
+ "type": "string"
1676
+ },
1677
+ {
1678
+ "type": "number"
1679
+ }
1680
+ ]
1681
+ }
1682
+ },
1683
+ "description": "A file with citation metadata for software or datasets.",
1684
+ "properties": {
1685
+ "abstract": {
1686
+ "description": "A description of the software or dataset.",
1687
+ "minLength": 1,
1688
+ "type": "string"
1689
+ },
1690
+ "authors": {
1691
+ "description": "The author(s) of the software or dataset.",
1692
+ "items": {
1693
+ "anyOf": [
1694
+ {
1695
+ "$ref": "#/definitions/person"
1696
+ },
1697
+ {
1698
+ "$ref": "#/definitions/entity"
1699
+ }
1700
+ ]
1701
+ },
1702
+ "minItems": 1,
1703
+ "type": "array",
1704
+ "uniqueItems": true
1705
+ },
1706
+ "cff-version": {
1707
+ "description": "The version of CFF used for providing the citation metadata.",
1708
+ "examples": ["1.2.0"],
1709
+ "pattern": "^1\\.2\\.0$",
1710
+ "type": "string"
1711
+ },
1712
+ "commit": {
1713
+ "$ref": "#/definitions/commit"
1714
+ },
1715
+ "contact": {
1716
+ "description": "The contact person, group, company, etc. for the software or dataset.",
1717
+ "items": {
1718
+ "anyOf": [
1719
+ {
1720
+ "$ref": "#/definitions/person"
1721
+ },
1722
+ {
1723
+ "$ref": "#/definitions/entity"
1724
+ }
1725
+ ]
1726
+ },
1727
+ "minItems": 1,
1728
+ "type": "array",
1729
+ "uniqueItems": true
1730
+ },
1731
+ "date-released": {
1732
+ "$ref": "#/definitions/date",
1733
+ "description": "The date the work has been released."
1734
+ },
1735
+ "doi": {
1736
+ "$ref": "#/definitions/doi"
1737
+ },
1738
+ "identifiers": {
1739
+ "description": "The identifiers of the software or dataset.",
1740
+ "items": {
1741
+ "$ref": "#/definitions/identifier"
1742
+ },
1743
+ "minItems": 1,
1744
+ "type": "array",
1745
+ "uniqueItems": true
1746
+ },
1747
+ "keywords": {
1748
+ "description": "Keywords that describe the work.",
1749
+ "items": {
1750
+ "minLength": 1,
1751
+ "type": "string"
1752
+ },
1753
+ "minItems": 1,
1754
+ "type": "array",
1755
+ "uniqueItems": true
1756
+ },
1757
+ "license": {
1758
+ "$ref": "#/definitions/license"
1759
+ },
1760
+ "license-url": {
1761
+ "$ref": "#/definitions/url",
1762
+ "description": "The URL of the license text under which the software or dataset is licensed (only for non-standard licenses not included in the SPDX License List)."
1763
+ },
1764
+ "message": {
1765
+ "default": "If you use this software, please cite it using the metadata from this file.",
1766
+ "description": "A message to the human reader of the file to let them know what to do with the citation metadata.",
1767
+ "examples": [
1768
+ "If you use this software, please cite it using the metadata from this file.",
1769
+ "Please cite this software using these metadata.",
1770
+ "Please cite this software using the metadata from 'preferred-citation'."
1771
+ ],
1772
+ "minLength": 1,
1773
+ "type": "string"
1774
+ },
1775
+ "preferred-citation": {
1776
+ "$ref": "#/definitions/reference",
1777
+ "description": "A reference to another work that should be cited instead of the software or dataset itself."
1778
+ },
1779
+ "references": {
1780
+ "description": "Reference(s) to other creative works.",
1781
+ "items": {
1782
+ "$ref": "#/definitions/reference"
1783
+ },
1784
+ "minItems": 1,
1785
+ "type": "array",
1786
+ "uniqueItems": true
1787
+ },
1788
+ "repository": {
1789
+ "$ref": "#/definitions/url",
1790
+ "description": "The URL of the software or dataset in a repository (when the repository is neither a source code repository nor a build artifact repository).",
1791
+ "examples": [
1792
+ "https://edoc.hu-berlin.de/handle/18452/23016",
1793
+ "https://ascl.net/2105.013"
1794
+ ]
1795
+ },
1796
+ "repository-artifact": {
1797
+ "$ref": "#/definitions/url",
1798
+ "description": "The URL of the software in a build artifact/binary repository."
1799
+ },
1800
+ "repository-code": {
1801
+ "$ref": "#/definitions/url",
1802
+ "description": "The URL of the software or dataset in a source code repository."
1803
+ },
1804
+ "title": {
1805
+ "description": "The name of the software or dataset.",
1806
+ "minLength": 1,
1807
+ "type": "string"
1808
+ },
1809
+ "type": {
1810
+ "default": "software",
1811
+ "description": "The type of the work.",
1812
+ "enum": ["dataset", "software"],
1813
+ "type": "string"
1814
+ },
1815
+ "url": {
1816
+ "$ref": "#/definitions/url",
1817
+ "description": "The URL of a landing page/website for the software or dataset."
1818
+ },
1819
+ "version": {
1820
+ "$ref": "#/definitions/version",
1821
+ "description": "The version of the software or dataset."
1822
+ }
1823
+ },
1824
+ "required": ["authors", "cff-version", "message", "title"],
1825
+ "title": "Citation File Format",
1826
+ "type": "object"
1827
+ }