diff --git a/src/cffconvert/lib/cff_1_x_x/bibtex.py b/src/cffconvert/lib/cff_1_x_x/bibtex.py index 9557b532..5f317ea0 100644 --- a/src/cffconvert/lib/cff_1_x_x/bibtex.py +++ b/src/cffconvert/lib/cff_1_x_x/bibtex.py @@ -13,6 +13,7 @@ def __init__(self, cffobj, initialize_empty=False): self.title = None self.url = None self.year = None + self.note = None if initialize_empty: # clause for testing purposes pass @@ -26,7 +27,8 @@ def __str__(self): self.month, self.title, self.url, - self.year] if item is not None] + self.year, + self.note] if item is not None] joined = ",\n".join(items) return "@misc{YourReferenceHere,\n" + joined + "\n}\n" @@ -36,7 +38,8 @@ def add_all(self): .add_month() \ .add_title() \ .add_url() \ - .add_year() + .add_year() \ + .add_note() return self @abstractmethod @@ -64,6 +67,11 @@ def add_url(self): def add_year(self): pass + def add_note(self): + if "message" in self.cffobj: + self.note = "note = {" + self.cffobj["message"] + "}" + return self + def as_string(self): return str(self) diff --git a/src/cffconvert/lib/cff_1_x_x/zenodo.py b/src/cffconvert/lib/cff_1_x_x/zenodo.py index d1e7aa35..e4050357 100644 --- a/src/cffconvert/lib/cff_1_x_x/zenodo.py +++ b/src/cffconvert/lib/cff_1_x_x/zenodo.py @@ -11,6 +11,7 @@ def __init__(self, cffobj, initialize_empty=False): self.contributors = None self.creators = None self.description = None + self.additional_descriptions = None self.keywords = None self.license = None self.publication_date = None @@ -30,6 +31,7 @@ def __str__(self, sort_keys=True, indent=2): "contributors": self.contributors, "creators": self.creators, "description": self.description, + "additional_descriptions": self.additional_descriptions, "keywords": self.keywords, "license": self.license, "publication_date": self.publication_date, @@ -45,6 +47,7 @@ def add_all(self): self.add_contributors() \ .add_creators() \ .add_description() \ + .add_additional_descriptions() \ .add_keywords() \ .add_license() \ .add_publication_date() \ @@ -66,6 +69,11 @@ def add_description(self): self.description = self.cffobj.get("abstract") return self + def add_additional_descriptions(self): + if "message" in self.cffobj: + self.additional_descriptions = [ { "type": { "id": "notes"} , "description": self.cffobj.get("message") } ] + return self + def add_keywords(self): self.keywords = self.cffobj.get("keywords") return self diff --git a/tests/cli/cff_1_0_3/.zenodo.json b/tests/cli/cff_1_0_3/.zenodo.json index f5e6bcb4..9e89f38e 100644 --- a/tests/cli/cff_1_0_3/.zenodo.json +++ b/tests/cli/cff_1_0_3/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/cli/cff_1_0_3/bibtex.bib b/tests/cli/cff_1_0_3/bibtex.bib index a8a24cbf..46d9baec 100644 --- a/tests/cli/cff_1_0_3/bibtex.bib +++ b/tests/cli/cff_1_0_3/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {1}, title = {cffconvert}, url = {https://github.com/citation-file-format/cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/cli/cff_1_1_0/.zenodo.json b/tests/cli/cff_1_1_0/.zenodo.json index f5e6bcb4..9e89f38e 100644 --- a/tests/cli/cff_1_1_0/.zenodo.json +++ b/tests/cli/cff_1_1_0/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/cli/cff_1_1_0/bibtex.bib b/tests/cli/cff_1_1_0/bibtex.bib index a8a24cbf..46d9baec 100644 --- a/tests/cli/cff_1_1_0/bibtex.bib +++ b/tests/cli/cff_1_1_0/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {1}, title = {cffconvert}, url = {https://github.com/citation-file-format/cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/cli/cff_1_2_0/.zenodo.json b/tests/cli/cff_1_2_0/.zenodo.json index d6893fc3..72d6270c 100644 --- a/tests/cli/cff_1_2_0/.zenodo.json +++ b/tests/cli/cff_1_2_0/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing dois", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/cli/cff_1_2_0/bibtex.bib b/tests/cli/cff_1_2_0/bibtex.bib index f2ce178d..c52079b0 100644 --- a/tests/cli/cff_1_2_0/bibtex.bib +++ b/tests/cli/cff_1_2_0/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, doi = {10.0000/from-doi}, -title = {Test title} +title = {Test title}, +note = {test for constructing dois} } diff --git a/tests/cli/cff_1_3_0/.zenodo.json b/tests/cli/cff_1_3_0/.zenodo.json index d6893fc3..72d6270c 100644 --- a/tests/cli/cff_1_3_0/.zenodo.json +++ b/tests/cli/cff_1_3_0/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing dois", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/cli/cff_1_3_0/bibtex.bib b/tests/cli/cff_1_3_0/bibtex.bib index f2ce178d..c52079b0 100644 --- a/tests/cli/cff_1_3_0/bibtex.bib +++ b/tests/cli/cff_1_3_0/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, doi = {10.0000/from-doi}, -title = {Test title} +title = {Test title}, +note = {test for constructing dois} } diff --git a/tests/lib/cff_1_0_3/a/.zenodo.json b/tests/lib/cff_1_0_3/a/.zenodo.json index f5e6bcb4..9e89f38e 100644 --- a/tests/lib/cff_1_0_3/a/.zenodo.json +++ b/tests/lib/cff_1_0_3/a/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_0_3/a/bibtex.bib b/tests/lib/cff_1_0_3/a/bibtex.bib index a8a24cbf..46d9baec 100644 --- a/tests/lib/cff_1_0_3/a/bibtex.bib +++ b/tests/lib/cff_1_0_3/a/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {1}, title = {cffconvert}, url = {https://github.com/citation-file-format/cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/lib/cff_1_0_3/b/.zenodo.json b/tests/lib/cff_1_0_3/b/.zenodo.json index fba98762..1a9695a2 100644 --- a/tests/lib/cff_1_0_3/b/.zenodo.json +++ b/tests/lib/cff_1_0_3/b/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Example data from the CITATION.cff spec 1.0.3", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Fernández de Córdoba Jr., Gonzalo" diff --git a/tests/lib/cff_1_0_3/b/bibtex.bib b/tests/lib/cff_1_0_3/b/bibtex.bib index d40317fc..5366e846 100644 --- a/tests/lib/cff_1_0_3/b/bibtex.bib +++ b/tests/lib/cff_1_0_3/b/bibtex.bib @@ -2,5 +2,6 @@ @misc{YourReferenceHere author = {Fernández de Córdoba Jr., Gonzalo}, month = {12}, title = {example title}, -year = {1999} +year = {1999}, +note = {Example data from the CITATION.cff spec 1.0.3} } diff --git a/tests/lib/cff_1_0_3/c/.zenodo.json b/tests/lib/cff_1_0_3/c/.zenodo.json index a67cad92..12f54587 100644 --- a/tests/lib/cff_1_0_3/c/.zenodo.json +++ b/tests/lib/cff_1_0_3/c/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_0_3/c/bibtex.bib b/tests/lib/cff_1_0_3/c/bibtex.bib index cd327bba..944265fe 100644 --- a/tests/lib/cff_1_0_3/c/bibtex.bib +++ b/tests/lib/cff_1_0_3/c/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {10}, title = {spot}, url = {https://github.com/NLeSC/spot}, -year = {2017} +year = {2017}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/lib/cff_1_0_3/d/.zenodo.json b/tests/lib/cff_1_0_3/d/.zenodo.json index a7e151e8..87df0b38 100644 --- a/tests/lib/cff_1_0_3/d/.zenodo.json +++ b/tests/lib/cff_1_0_3/d/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_0_3/d/bibtex.bib b/tests/lib/cff_1_0_3/d/bibtex.bib index cefe6ad4..f55df5ec 100644 --- a/tests/lib/cff_1_0_3/d/bibtex.bib +++ b/tests/lib/cff_1_0_3/d/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {7}, title = {cffconvert}, url = {https://github.com/citation-file-format/cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/lib/cff_1_0_3/e/.zenodo.json b/tests/lib/cff_1_0_3/e/.zenodo.json index 1ba767c9..be1c9c77 100644 --- a/tests/lib/cff_1_0_3/e/.zenodo.json +++ b/tests/lib/cff_1_0_3/e/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_0_3/e/bibtex.bib b/tests/lib/cff_1_0_3/e/bibtex.bib index d7477fbc..fdb2231e 100644 --- a/tests/lib/cff_1_0_3/e/bibtex.bib +++ b/tests/lib/cff_1_0_3/e/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {5}, title = {cffconvert}, url = {https://github.com/citation-file-format/cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/lib/cff_1_1_0/a/.zenodo.json b/tests/lib/cff_1_1_0/a/.zenodo.json index f5e6bcb4..9e89f38e 100644 --- a/tests/lib/cff_1_1_0/a/.zenodo.json +++ b/tests/lib/cff_1_1_0/a/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_1_0/a/bibtex.bib b/tests/lib/cff_1_1_0/a/bibtex.bib index a8a24cbf..46d9baec 100644 --- a/tests/lib/cff_1_1_0/a/bibtex.bib +++ b/tests/lib/cff_1_1_0/a/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {1}, title = {cffconvert}, url = {https://github.com/citation-file-format/cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/lib/cff_1_1_0/b/.zenodo.json b/tests/lib/cff_1_1_0/b/.zenodo.json index f5e6bcb4..9e89f38e 100644 --- a/tests/lib/cff_1_1_0/b/.zenodo.json +++ b/tests/lib/cff_1_1_0/b/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_1_0/b/bibtex.bib b/tests/lib/cff_1_1_0/b/bibtex.bib index a8a24cbf..46d9baec 100644 --- a/tests/lib/cff_1_1_0/b/bibtex.bib +++ b/tests/lib/cff_1_1_0/b/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {1}, title = {cffconvert}, url = {https://github.com/citation-file-format/cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/lib/cff_1_1_0/c/.zenodo.json b/tests/lib/cff_1_1_0/c/.zenodo.json index b92e8702..ea949261 100644 --- a/tests/lib/cff_1_1_0/c/.zenodo.json +++ b/tests/lib/cff_1_1_0/c/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_1_0/c/bibtex.bib b/tests/lib/cff_1_1_0/c/bibtex.bib index a8a24cbf..46d9baec 100644 --- a/tests/lib/cff_1_1_0/c/bibtex.bib +++ b/tests/lib/cff_1_1_0/c/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {1}, title = {cffconvert}, url = {https://github.com/citation-file-format/cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/lib/cff_1_1_0/d/.zenodo.json b/tests/lib/cff_1_1_0/d/.zenodo.json index b92e8702..ea949261 100644 --- a/tests/lib/cff_1_1_0/d/.zenodo.json +++ b/tests/lib/cff_1_1_0/d/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_1_0/d/bibtex.bib b/tests/lib/cff_1_1_0/d/bibtex.bib index a8a24cbf..46d9baec 100644 --- a/tests/lib/cff_1_1_0/d/bibtex.bib +++ b/tests/lib/cff_1_1_0/d/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {1}, title = {cffconvert}, url = {https://github.com/citation-file-format/cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/lib/cff_1_1_0/e/.zenodo.json b/tests/lib/cff_1_1_0/e/.zenodo.json index 5e6ffe64..22c09435 100644 --- a/tests/lib/cff_1_1_0/e/.zenodo.json +++ b/tests/lib/cff_1_1_0/e/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_1_0/e/bibtex.bib b/tests/lib/cff_1_1_0/e/bibtex.bib index 80e3fe1f..dcd606f7 100644 --- a/tests/lib/cff_1_1_0/e/bibtex.bib +++ b/tests/lib/cff_1_1_0/e/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {1}, title = {cffconvert}, url = {https://github.com/citation-file-format/cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/lib/cff_1_1_0/f/.zenodo.json b/tests/lib/cff_1_1_0/f/.zenodo.json index b92e8702..ea949261 100644 --- a/tests/lib/cff_1_1_0/f/.zenodo.json +++ b/tests/lib/cff_1_1_0/f/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_1_0/f/bibtex.bib b/tests/lib/cff_1_1_0/f/bibtex.bib index a8a24cbf..46d9baec 100644 --- a/tests/lib/cff_1_1_0/f/bibtex.bib +++ b/tests/lib/cff_1_1_0/f/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {1}, title = {cffconvert}, url = {https://github.com/citation-file-format/cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/lib/cff_1_1_0/g/.zenodo.json b/tests/lib/cff_1_1_0/g/.zenodo.json index e54ef464..1236cdd3 100644 --- a/tests/lib/cff_1_1_0/g/.zenodo.json +++ b/tests/lib/cff_1_1_0/g/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_1_0/g/bibtex.bib b/tests/lib/cff_1_1_0/g/bibtex.bib index 80e3fe1f..dcd606f7 100644 --- a/tests/lib/cff_1_1_0/g/bibtex.bib +++ b/tests/lib/cff_1_1_0/g/bibtex.bib @@ -4,5 +4,6 @@ @misc{YourReferenceHere month = {1}, title = {cffconvert}, url = {https://github.com/citation-file-format/cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/lib/cff_1_1_0/h/.zenodo.json b/tests/lib/cff_1_1_0/h/.zenodo.json index 86b9a59a..1a63d219 100644 --- a/tests/lib/cff_1_1_0/h/.zenodo.json +++ b/tests/lib/cff_1_1_0/h/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "If you use this software, please cite it using these metadata.", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Springsteen", diff --git a/tests/lib/cff_1_1_0/h/bibtex.bib b/tests/lib/cff_1_1_0/h/bibtex.bib index 99beff0c..8201b5db 100644 --- a/tests/lib/cff_1_1_0/h/bibtex.bib +++ b/tests/lib/cff_1_1_0/h/bibtex.bib @@ -2,5 +2,6 @@ @misc{YourReferenceHere author = {Van Zandt, Steven and van Zandt, Steven}, month = {1}, title = {cffconvert}, -year = {2018} +year = {2018}, +note = {If you use this software, please cite it using these metadata.} } diff --git a/tests/lib/cff_1_2_0/authors/one/GFA_AOE/.zenodo.json b/tests/lib/cff_1_2_0/authors/one/GFA_AOE/.zenodo.json index 64115008..c6c09e61 100644 --- a/tests/lib/cff_1_2_0/authors/one/GFA_AOE/.zenodo.json +++ b/tests/lib/cff_1_2_0/authors/one/GFA_AOE/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_2_0/authors/one/GFA_AOE/bibtex.bib b/tests/lib/cff_1_2_0/authors/one/GFA_AOE/bibtex.bib index d4312892..96898e95 100644 --- a/tests/lib/cff_1_2_0/authors/one/GFA_AOE/bibtex.bib +++ b/tests/lib/cff_1_2_0/authors/one/GFA_AOE/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {von der Spaaks Jr., Jurriaan H.}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_2_0/authors/one/GFA_AO_/.zenodo.json b/tests/lib/cff_1_2_0/authors/one/GFA_AO_/.zenodo.json index 64115008..c6c09e61 100644 --- a/tests/lib/cff_1_2_0/authors/one/GFA_AO_/.zenodo.json +++ b/tests/lib/cff_1_2_0/authors/one/GFA_AO_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_2_0/authors/one/GFA_AO_/bibtex.bib b/tests/lib/cff_1_2_0/authors/one/GFA_AO_/bibtex.bib index d4312892..96898e95 100644 --- a/tests/lib/cff_1_2_0/authors/one/GFA_AO_/bibtex.bib +++ b/tests/lib/cff_1_2_0/authors/one/GFA_AO_/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {von der Spaaks Jr., Jurriaan H.}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_2_0/authors/one/GFA____/.zenodo.json b/tests/lib/cff_1_2_0/authors/one/GFA____/.zenodo.json index 819d37e2..ef6cd8c6 100644 --- a/tests/lib/cff_1_2_0/authors/one/GFA____/.zenodo.json +++ b/tests/lib/cff_1_2_0/authors/one/GFA____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "van der Vaart III, Rafael" diff --git a/tests/lib/cff_1_2_0/authors/one/GFA____/bibtex.bib b/tests/lib/cff_1_2_0/authors/one/GFA____/bibtex.bib index 50d6faf6..03056211 100644 --- a/tests/lib/cff_1_2_0/authors/one/GFA____/bibtex.bib +++ b/tests/lib/cff_1_2_0/authors/one/GFA____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {van der Vaart III, Rafael}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_2_0/authors/one/GF_____/.zenodo.json b/tests/lib/cff_1_2_0/authors/one/GF_____/.zenodo.json index 819d37e2..ef6cd8c6 100644 --- a/tests/lib/cff_1_2_0/authors/one/GF_____/.zenodo.json +++ b/tests/lib/cff_1_2_0/authors/one/GF_____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "van der Vaart III, Rafael" diff --git a/tests/lib/cff_1_2_0/authors/one/GF_____/bibtex.bib b/tests/lib/cff_1_2_0/authors/one/GF_____/bibtex.bib index 50d6faf6..03056211 100644 --- a/tests/lib/cff_1_2_0/authors/one/GF_____/bibtex.bib +++ b/tests/lib/cff_1_2_0/authors/one/GF_____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {van der Vaart III, Rafael}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_2_0/authors/one/G_A____/.zenodo.json b/tests/lib/cff_1_2_0/authors/one/G_A____/.zenodo.json index 4a717f40..167b16ca 100644 --- a/tests/lib/cff_1_2_0/authors/one/G_A____/.zenodo.json +++ b/tests/lib/cff_1_2_0/authors/one/G_A____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Rafael" diff --git a/tests/lib/cff_1_2_0/authors/one/G_A____/bibtex.bib b/tests/lib/cff_1_2_0/authors/one/G_A____/bibtex.bib index 333bbc11..6fb30cfe 100644 --- a/tests/lib/cff_1_2_0/authors/one/G_A____/bibtex.bib +++ b/tests/lib/cff_1_2_0/authors/one/G_A____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {Rafael}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_2_0/authors/one/G______/.zenodo.json b/tests/lib/cff_1_2_0/authors/one/G______/.zenodo.json index 4a717f40..167b16ca 100644 --- a/tests/lib/cff_1_2_0/authors/one/G______/.zenodo.json +++ b/tests/lib/cff_1_2_0/authors/one/G______/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Rafael" diff --git a/tests/lib/cff_1_2_0/authors/one/G______/bibtex.bib b/tests/lib/cff_1_2_0/authors/one/G______/bibtex.bib index 333bbc11..6fb30cfe 100644 --- a/tests/lib/cff_1_2_0/authors/one/G______/bibtex.bib +++ b/tests/lib/cff_1_2_0/authors/one/G______/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {Rafael}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_2_0/authors/one/_FA____/.zenodo.json b/tests/lib/cff_1_2_0/authors/one/_FA____/.zenodo.json index 6c0080d5..866b56b0 100644 --- a/tests/lib/cff_1_2_0/authors/one/_FA____/.zenodo.json +++ b/tests/lib/cff_1_2_0/authors/one/_FA____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "van der Vaart III" diff --git a/tests/lib/cff_1_2_0/authors/one/_FA____/bibtex.bib b/tests/lib/cff_1_2_0/authors/one/_FA____/bibtex.bib index 269c7582..b43ba3b3 100644 --- a/tests/lib/cff_1_2_0/authors/one/_FA____/bibtex.bib +++ b/tests/lib/cff_1_2_0/authors/one/_FA____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {van der Vaart III}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_2_0/authors/one/_F_____/.zenodo.json b/tests/lib/cff_1_2_0/authors/one/_F_____/.zenodo.json index 6c0080d5..866b56b0 100644 --- a/tests/lib/cff_1_2_0/authors/one/_F_____/.zenodo.json +++ b/tests/lib/cff_1_2_0/authors/one/_F_____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "van der Vaart III" diff --git a/tests/lib/cff_1_2_0/authors/one/_F_____/bibtex.bib b/tests/lib/cff_1_2_0/authors/one/_F_____/bibtex.bib index 269c7582..b43ba3b3 100644 --- a/tests/lib/cff_1_2_0/authors/one/_F_____/bibtex.bib +++ b/tests/lib/cff_1_2_0/authors/one/_F_____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {van der Vaart III}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_2_0/authors/one/__AN___/.zenodo.json b/tests/lib/cff_1_2_0/authors/one/__AN___/.zenodo.json index 2bd4a7a8..63a5392b 100644 --- a/tests/lib/cff_1_2_0/authors/one/__AN___/.zenodo.json +++ b/tests/lib/cff_1_2_0/authors/one/__AN___/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "The soccer team members" diff --git a/tests/lib/cff_1_2_0/authors/one/__AN___/bibtex.bib b/tests/lib/cff_1_2_0/authors/one/__AN___/bibtex.bib index f1409386..e103ca63 100644 --- a/tests/lib/cff_1_2_0/authors/one/__AN___/bibtex.bib +++ b/tests/lib/cff_1_2_0/authors/one/__AN___/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The soccer team members}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_2_0/authors/one/___N___/.zenodo.json b/tests/lib/cff_1_2_0/authors/one/___N___/.zenodo.json index 2bd4a7a8..63a5392b 100644 --- a/tests/lib/cff_1_2_0/authors/one/___N___/.zenodo.json +++ b/tests/lib/cff_1_2_0/authors/one/___N___/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "The soccer team members" diff --git a/tests/lib/cff_1_2_0/authors/one/___N___/bibtex.bib b/tests/lib/cff_1_2_0/authors/one/___N___/bibtex.bib index f1409386..e103ca63 100644 --- a/tests/lib/cff_1_2_0/authors/one/___N___/bibtex.bib +++ b/tests/lib/cff_1_2_0/authors/one/___N___/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The soccer team members}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_2_0/authors/two/GF_____/.zenodo.json b/tests/lib/cff_1_2_0/authors/two/GF_____/.zenodo.json index 4f26b97b..c424328a 100644 --- a/tests/lib/cff_1_2_0/authors/two/GF_____/.zenodo.json +++ b/tests/lib/cff_1_2_0/authors/two/GF_____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "van der Vaart III, Rafael" diff --git a/tests/lib/cff_1_2_0/authors/two/GF_____/bibtex.bib b/tests/lib/cff_1_2_0/authors/two/GF_____/bibtex.bib index cc2e0579..37dd6da9 100644 --- a/tests/lib/cff_1_2_0/authors/two/GF_____/bibtex.bib +++ b/tests/lib/cff_1_2_0/authors/two/GF_____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {van der Vaart III, Rafael and dos Santos Aveiro, Cristiano Ronaldo}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_2_0/identifiers/DI/.zenodo.json b/tests/lib/cff_1_2_0/identifiers/DI/.zenodo.json index 113c8dda..9e17aa30 100644 --- a/tests/lib/cff_1_2_0/identifiers/DI/.zenodo.json +++ b/tests/lib/cff_1_2_0/identifiers/DI/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing dois", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/identifiers/DI/bibtex.bib b/tests/lib/cff_1_2_0/identifiers/DI/bibtex.bib index 2685968e..dd89ae3d 100644 --- a/tests/lib/cff_1_2_0/identifiers/DI/bibtex.bib +++ b/tests/lib/cff_1_2_0/identifiers/DI/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, doi = {10.0000/from-identifiers}, -title = {Test title} +title = {Test title}, +note = {test for constructing dois} } diff --git a/tests/lib/cff_1_2_0/identifiers/DI_duplicate_values/.zenodo.json b/tests/lib/cff_1_2_0/identifiers/DI_duplicate_values/.zenodo.json index 5a0489b6..57124f31 100644 --- a/tests/lib/cff_1_2_0/identifiers/DI_duplicate_values/.zenodo.json +++ b/tests/lib/cff_1_2_0/identifiers/DI_duplicate_values/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing dois", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/identifiers/DI_duplicate_values/bibtex.bib b/tests/lib/cff_1_2_0/identifiers/DI_duplicate_values/bibtex.bib index 98feae92..b0bf9505 100644 --- a/tests/lib/cff_1_2_0/identifiers/DI_duplicate_values/bibtex.bib +++ b/tests/lib/cff_1_2_0/identifiers/DI_duplicate_values/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, doi = {10.0000/some-doi}, -title = {Test title} +title = {Test title}, +note = {test for constructing dois} } diff --git a/tests/lib/cff_1_2_0/identifiers/D_/.zenodo.json b/tests/lib/cff_1_2_0/identifiers/D_/.zenodo.json index d6893fc3..72d6270c 100644 --- a/tests/lib/cff_1_2_0/identifiers/D_/.zenodo.json +++ b/tests/lib/cff_1_2_0/identifiers/D_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing dois", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/identifiers/D_/bibtex.bib b/tests/lib/cff_1_2_0/identifiers/D_/bibtex.bib index f2ce178d..c52079b0 100644 --- a/tests/lib/cff_1_2_0/identifiers/D_/bibtex.bib +++ b/tests/lib/cff_1_2_0/identifiers/D_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, doi = {10.0000/from-doi}, -title = {Test title} +title = {Test title}, +note = {test for constructing dois} } diff --git a/tests/lib/cff_1_2_0/identifiers/_I/.zenodo.json b/tests/lib/cff_1_2_0/identifiers/_I/.zenodo.json index 4f4f97ed..9c3defad 100644 --- a/tests/lib/cff_1_2_0/identifiers/_I/.zenodo.json +++ b/tests/lib/cff_1_2_0/identifiers/_I/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing dois", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/identifiers/_I/bibtex.bib b/tests/lib/cff_1_2_0/identifiers/_I/bibtex.bib index 2685968e..dd89ae3d 100644 --- a/tests/lib/cff_1_2_0/identifiers/_I/bibtex.bib +++ b/tests/lib/cff_1_2_0/identifiers/_I/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, doi = {10.0000/from-identifiers}, -title = {Test title} +title = {Test title}, +note = {test for constructing dois} } diff --git a/tests/lib/cff_1_2_0/identifiers/__/.zenodo.json b/tests/lib/cff_1_2_0/identifiers/__/.zenodo.json index e22cacee..17fffbcd 100644 --- a/tests/lib/cff_1_2_0/identifiers/__/.zenodo.json +++ b/tests/lib/cff_1_2_0/identifiers/__/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing dois", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/identifiers/__/bibtex.bib b/tests/lib/cff_1_2_0/identifiers/__/bibtex.bib index c3d8f958..df8fc42a 100644 --- a/tests/lib/cff_1_2_0/identifiers/__/bibtex.bib +++ b/tests/lib/cff_1_2_0/identifiers/__/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{Test author}}, -title = {Test title} +title = {Test title}, +note = {test for constructing dois} } diff --git a/tests/lib/cff_1_2_0/types/dataset/.zenodo.json b/tests/lib/cff_1_2_0/types/dataset/.zenodo.json index a1b7980d..88f1a032 100644 --- a/tests/lib/cff_1_2_0/types/dataset/.zenodo.json +++ b/tests/lib/cff_1_2_0/types/dataset/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "The message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "The name" diff --git a/tests/lib/cff_1_2_0/types/none/.zenodo.json b/tests/lib/cff_1_2_0/types/none/.zenodo.json index cdbd8f83..6b73f74c 100644 --- a/tests/lib/cff_1_2_0/types/none/.zenodo.json +++ b/tests/lib/cff_1_2_0/types/none/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "The message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "The name" diff --git a/tests/lib/cff_1_2_0/types/software/.zenodo.json b/tests/lib/cff_1_2_0/types/software/.zenodo.json index cdbd8f83..6b73f74c 100644 --- a/tests/lib/cff_1_2_0/types/software/.zenodo.json +++ b/tests/lib/cff_1_2_0/types/software/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "The message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "The name" diff --git a/tests/lib/cff_1_2_0/urls/IRACU/.zenodo.json b/tests/lib/cff_1_2_0/urls/IRACU/.zenodo.json index 67d6e016..20e8ab10 100644 --- a/tests/lib/cff_1_2_0/urls/IRACU/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/IRACU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/IRACU/bibtex.bib b/tests/lib/cff_1_2_0/urls/IRACU/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/IRACU/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/IRACU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/IRAC_/.zenodo.json b/tests/lib/cff_1_2_0/urls/IRAC_/.zenodo.json index b76cf35c..c265f533 100644 --- a/tests/lib/cff_1_2_0/urls/IRAC_/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/IRAC_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/IRAC_/bibtex.bib b/tests/lib/cff_1_2_0/urls/IRAC_/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/IRAC_/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/IRAC_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/IRA_U/.zenodo.json b/tests/lib/cff_1_2_0/urls/IRA_U/.zenodo.json index c2b0bc16..711e089d 100644 --- a/tests/lib/cff_1_2_0/urls/IRA_U/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/IRA_U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/IRA_U/bibtex.bib b/tests/lib/cff_1_2_0/urls/IRA_U/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/IRA_U/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/IRA_U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/IRA__/.zenodo.json b/tests/lib/cff_1_2_0/urls/IRA__/.zenodo.json index 4e953a15..3144c037 100644 --- a/tests/lib/cff_1_2_0/urls/IRA__/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/IRA__/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/IRA__/bibtex.bib b/tests/lib/cff_1_2_0/urls/IRA__/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/IRA__/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/IRA__/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/IR_CU/.zenodo.json b/tests/lib/cff_1_2_0/urls/IR_CU/.zenodo.json index 584248fe..3a2064d2 100644 --- a/tests/lib/cff_1_2_0/urls/IR_CU/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/IR_CU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/IR_CU/bibtex.bib b/tests/lib/cff_1_2_0/urls/IR_CU/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/IR_CU/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/IR_CU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/IR_C_/.zenodo.json b/tests/lib/cff_1_2_0/urls/IR_C_/.zenodo.json index bdf341f3..a430bdbb 100644 --- a/tests/lib/cff_1_2_0/urls/IR_C_/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/IR_C_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/IR_C_/bibtex.bib b/tests/lib/cff_1_2_0/urls/IR_C_/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/IR_C_/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/IR_C_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/IR__U/.zenodo.json b/tests/lib/cff_1_2_0/urls/IR__U/.zenodo.json index e5835483..ffc9cef7 100644 --- a/tests/lib/cff_1_2_0/urls/IR__U/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/IR__U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/IR__U/bibtex.bib b/tests/lib/cff_1_2_0/urls/IR__U/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/IR__U/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/IR__U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/IR___/.zenodo.json b/tests/lib/cff_1_2_0/urls/IR___/.zenodo.json index e7bfd80d..6f706b77 100644 --- a/tests/lib/cff_1_2_0/urls/IR___/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/IR___/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/IR___/bibtex.bib b/tests/lib/cff_1_2_0/urls/IR___/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/IR___/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/IR___/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/I_ACU/.zenodo.json b/tests/lib/cff_1_2_0/urls/I_ACU/.zenodo.json index b1aa1f59..78996fe1 100644 --- a/tests/lib/cff_1_2_0/urls/I_ACU/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/I_ACU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/I_ACU/bibtex.bib b/tests/lib/cff_1_2_0/urls/I_ACU/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/I_ACU/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/I_ACU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/I_AC_/.zenodo.json b/tests/lib/cff_1_2_0/urls/I_AC_/.zenodo.json index 7eb67015..2924180e 100644 --- a/tests/lib/cff_1_2_0/urls/I_AC_/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/I_AC_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/I_AC_/bibtex.bib b/tests/lib/cff_1_2_0/urls/I_AC_/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/I_AC_/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/I_AC_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/I_A_U/.zenodo.json b/tests/lib/cff_1_2_0/urls/I_A_U/.zenodo.json index 218642dc..22bb3bf7 100644 --- a/tests/lib/cff_1_2_0/urls/I_A_U/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/I_A_U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/I_A_U/bibtex.bib b/tests/lib/cff_1_2_0/urls/I_A_U/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/I_A_U/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/I_A_U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/I_A__/.zenodo.json b/tests/lib/cff_1_2_0/urls/I_A__/.zenodo.json index 5348b2b0..8f06ca1b 100644 --- a/tests/lib/cff_1_2_0/urls/I_A__/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/I_A__/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/I_A__/bibtex.bib b/tests/lib/cff_1_2_0/urls/I_A__/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/I_A__/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/I_A__/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/I__CU/.zenodo.json b/tests/lib/cff_1_2_0/urls/I__CU/.zenodo.json index 38ea308a..791aabb7 100644 --- a/tests/lib/cff_1_2_0/urls/I__CU/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/I__CU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/I__CU/bibtex.bib b/tests/lib/cff_1_2_0/urls/I__CU/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/I__CU/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/I__CU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/I__C_/.zenodo.json b/tests/lib/cff_1_2_0/urls/I__C_/.zenodo.json index 4361da3e..f53b9843 100644 --- a/tests/lib/cff_1_2_0/urls/I__C_/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/I__C_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/I__C_/bibtex.bib b/tests/lib/cff_1_2_0/urls/I__C_/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/I__C_/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/I__C_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/I___U/.zenodo.json b/tests/lib/cff_1_2_0/urls/I___U/.zenodo.json index 496ae839..274cad39 100644 --- a/tests/lib/cff_1_2_0/urls/I___U/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/I___U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/I___U/bibtex.bib b/tests/lib/cff_1_2_0/urls/I___U/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/I___U/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/I___U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/I____/.zenodo.json b/tests/lib/cff_1_2_0/urls/I____/.zenodo.json index 796b4265..5571fc9c 100644 --- a/tests/lib/cff_1_2_0/urls/I____/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/I____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/I____/bibtex.bib b/tests/lib/cff_1_2_0/urls/I____/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_2_0/urls/I____/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/I____/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/_RACU/.zenodo.json b/tests/lib/cff_1_2_0/urls/_RACU/.zenodo.json index 23135085..3cd60ada 100644 --- a/tests/lib/cff_1_2_0/urls/_RACU/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/_RACU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/_RACU/bibtex.bib b/tests/lib/cff_1_2_0/urls/_RACU/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_2_0/urls/_RACU/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/_RACU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/_RAC_/.zenodo.json b/tests/lib/cff_1_2_0/urls/_RAC_/.zenodo.json index d784342a..53fe2e58 100644 --- a/tests/lib/cff_1_2_0/urls/_RAC_/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/_RAC_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/_RAC_/bibtex.bib b/tests/lib/cff_1_2_0/urls/_RAC_/bibtex.bib index 761deec3..0d0ac38e 100644 --- a/tests/lib/cff_1_2_0/urls/_RAC_/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/_RAC_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository-code} +url = {https://github.com/the-url-from-repository-code}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/_RA_U/.zenodo.json b/tests/lib/cff_1_2_0/urls/_RA_U/.zenodo.json index 3ce04e2f..f7bb6cd7 100644 --- a/tests/lib/cff_1_2_0/urls/_RA_U/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/_RA_U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/_RA_U/bibtex.bib b/tests/lib/cff_1_2_0/urls/_RA_U/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_2_0/urls/_RA_U/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/_RA_U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/_RA__/.zenodo.json b/tests/lib/cff_1_2_0/urls/_RA__/.zenodo.json index 876fa2d0..98516d23 100644 --- a/tests/lib/cff_1_2_0/urls/_RA__/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/_RA__/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/_RA__/bibtex.bib b/tests/lib/cff_1_2_0/urls/_RA__/bibtex.bib index 29baadc3..74fd138d 100644 --- a/tests/lib/cff_1_2_0/urls/_RA__/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/_RA__/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository} +url = {https://github.com/the-url-from-repository}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/_R_CU/.zenodo.json b/tests/lib/cff_1_2_0/urls/_R_CU/.zenodo.json index 65c348ad..4a55232e 100644 --- a/tests/lib/cff_1_2_0/urls/_R_CU/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/_R_CU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/_R_CU/bibtex.bib b/tests/lib/cff_1_2_0/urls/_R_CU/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_2_0/urls/_R_CU/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/_R_CU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/_R_C_/.zenodo.json b/tests/lib/cff_1_2_0/urls/_R_C_/.zenodo.json index fe165681..f39ddc07 100644 --- a/tests/lib/cff_1_2_0/urls/_R_C_/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/_R_C_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/_R_C_/bibtex.bib b/tests/lib/cff_1_2_0/urls/_R_C_/bibtex.bib index 761deec3..0d0ac38e 100644 --- a/tests/lib/cff_1_2_0/urls/_R_C_/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/_R_C_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository-code} +url = {https://github.com/the-url-from-repository-code}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/_R__U/.zenodo.json b/tests/lib/cff_1_2_0/urls/_R__U/.zenodo.json index eacb4dd1..787fbf36 100644 --- a/tests/lib/cff_1_2_0/urls/_R__U/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/_R__U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/_R__U/bibtex.bib b/tests/lib/cff_1_2_0/urls/_R__U/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_2_0/urls/_R__U/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/_R__U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/_R___/.zenodo.json b/tests/lib/cff_1_2_0/urls/_R___/.zenodo.json index 47b48387..3989fbaa 100644 --- a/tests/lib/cff_1_2_0/urls/_R___/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/_R___/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/_R___/bibtex.bib b/tests/lib/cff_1_2_0/urls/_R___/bibtex.bib index 29baadc3..74fd138d 100644 --- a/tests/lib/cff_1_2_0/urls/_R___/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/_R___/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository} +url = {https://github.com/the-url-from-repository}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/__ACU/.zenodo.json b/tests/lib/cff_1_2_0/urls/__ACU/.zenodo.json index dcc3f827..f30510bd 100644 --- a/tests/lib/cff_1_2_0/urls/__ACU/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/__ACU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/__ACU/bibtex.bib b/tests/lib/cff_1_2_0/urls/__ACU/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_2_0/urls/__ACU/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/__ACU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/__AC_/.zenodo.json b/tests/lib/cff_1_2_0/urls/__AC_/.zenodo.json index 734b5ab5..7f73f362 100644 --- a/tests/lib/cff_1_2_0/urls/__AC_/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/__AC_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/__AC_/bibtex.bib b/tests/lib/cff_1_2_0/urls/__AC_/bibtex.bib index 761deec3..0d0ac38e 100644 --- a/tests/lib/cff_1_2_0/urls/__AC_/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/__AC_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository-code} +url = {https://github.com/the-url-from-repository-code}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/__A_U/.zenodo.json b/tests/lib/cff_1_2_0/urls/__A_U/.zenodo.json index b1670117..d699cdb7 100644 --- a/tests/lib/cff_1_2_0/urls/__A_U/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/__A_U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/__A_U/bibtex.bib b/tests/lib/cff_1_2_0/urls/__A_U/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_2_0/urls/__A_U/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/__A_U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/__A__/.zenodo.json b/tests/lib/cff_1_2_0/urls/__A__/.zenodo.json index 3e11dfc1..f14b71f0 100644 --- a/tests/lib/cff_1_2_0/urls/__A__/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/__A__/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/__A__/bibtex.bib b/tests/lib/cff_1_2_0/urls/__A__/bibtex.bib index 1b19bd5d..627a252d 100644 --- a/tests/lib/cff_1_2_0/urls/__A__/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/__A__/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository-artifact} +url = {https://github.com/the-url-from-repository-artifact}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/___CU/.zenodo.json b/tests/lib/cff_1_2_0/urls/___CU/.zenodo.json index 429035fc..0afb472d 100644 --- a/tests/lib/cff_1_2_0/urls/___CU/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/___CU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/___CU/bibtex.bib b/tests/lib/cff_1_2_0/urls/___CU/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_2_0/urls/___CU/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/___CU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/___C_/.zenodo.json b/tests/lib/cff_1_2_0/urls/___C_/.zenodo.json index 5719620a..ca1f9cb1 100644 --- a/tests/lib/cff_1_2_0/urls/___C_/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/___C_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/___C_/bibtex.bib b/tests/lib/cff_1_2_0/urls/___C_/bibtex.bib index 761deec3..0d0ac38e 100644 --- a/tests/lib/cff_1_2_0/urls/___C_/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/___C_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository-code} +url = {https://github.com/the-url-from-repository-code}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/____U/.zenodo.json b/tests/lib/cff_1_2_0/urls/____U/.zenodo.json index 92ac0459..1cab788d 100644 --- a/tests/lib/cff_1_2_0/urls/____U/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/____U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/____U/bibtex.bib b/tests/lib/cff_1_2_0/urls/____U/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_2_0/urls/____U/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/____U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_2_0/urls/_____/.zenodo.json b/tests/lib/cff_1_2_0/urls/_____/.zenodo.json index e22cacee..59078187 100644 --- a/tests/lib/cff_1_2_0/urls/_____/.zenodo.json +++ b/tests/lib/cff_1_2_0/urls/_____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_2_0/urls/_____/bibtex.bib b/tests/lib/cff_1_2_0/urls/_____/bibtex.bib index c3d8f958..f42fa70d 100644 --- a/tests/lib/cff_1_2_0/urls/_____/bibtex.bib +++ b/tests/lib/cff_1_2_0/urls/_____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{Test author}}, -title = {Test title} +title = {Test title}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/authors/one/GFA_AOE/.zenodo.json b/tests/lib/cff_1_3_0/authors/one/GFA_AOE/.zenodo.json index 64115008..c6c09e61 100644 --- a/tests/lib/cff_1_3_0/authors/one/GFA_AOE/.zenodo.json +++ b/tests/lib/cff_1_3_0/authors/one/GFA_AOE/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_3_0/authors/one/GFA_AOE/bibtex.bib b/tests/lib/cff_1_3_0/authors/one/GFA_AOE/bibtex.bib index d4312892..96898e95 100644 --- a/tests/lib/cff_1_3_0/authors/one/GFA_AOE/bibtex.bib +++ b/tests/lib/cff_1_3_0/authors/one/GFA_AOE/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {von der Spaaks Jr., Jurriaan H.}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/authors/one/GFA_AO_/.zenodo.json b/tests/lib/cff_1_3_0/authors/one/GFA_AO_/.zenodo.json index 64115008..c6c09e61 100644 --- a/tests/lib/cff_1_3_0/authors/one/GFA_AO_/.zenodo.json +++ b/tests/lib/cff_1_3_0/authors/one/GFA_AO_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_3_0/authors/one/GFA_AO_/bibtex.bib b/tests/lib/cff_1_3_0/authors/one/GFA_AO_/bibtex.bib index d4312892..96898e95 100644 --- a/tests/lib/cff_1_3_0/authors/one/GFA_AO_/bibtex.bib +++ b/tests/lib/cff_1_3_0/authors/one/GFA_AO_/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {von der Spaaks Jr., Jurriaan H.}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/authors/one/GFA____/.zenodo.json b/tests/lib/cff_1_3_0/authors/one/GFA____/.zenodo.json index 819d37e2..ef6cd8c6 100644 --- a/tests/lib/cff_1_3_0/authors/one/GFA____/.zenodo.json +++ b/tests/lib/cff_1_3_0/authors/one/GFA____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "van der Vaart III, Rafael" diff --git a/tests/lib/cff_1_3_0/authors/one/GFA____/bibtex.bib b/tests/lib/cff_1_3_0/authors/one/GFA____/bibtex.bib index 50d6faf6..03056211 100644 --- a/tests/lib/cff_1_3_0/authors/one/GFA____/bibtex.bib +++ b/tests/lib/cff_1_3_0/authors/one/GFA____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {van der Vaart III, Rafael}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/authors/one/GF_____/.zenodo.json b/tests/lib/cff_1_3_0/authors/one/GF_____/.zenodo.json index 819d37e2..ef6cd8c6 100644 --- a/tests/lib/cff_1_3_0/authors/one/GF_____/.zenodo.json +++ b/tests/lib/cff_1_3_0/authors/one/GF_____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "van der Vaart III, Rafael" diff --git a/tests/lib/cff_1_3_0/authors/one/GF_____/bibtex.bib b/tests/lib/cff_1_3_0/authors/one/GF_____/bibtex.bib index 50d6faf6..03056211 100644 --- a/tests/lib/cff_1_3_0/authors/one/GF_____/bibtex.bib +++ b/tests/lib/cff_1_3_0/authors/one/GF_____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {van der Vaart III, Rafael}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/authors/one/G_A____/.zenodo.json b/tests/lib/cff_1_3_0/authors/one/G_A____/.zenodo.json index 4a717f40..167b16ca 100644 --- a/tests/lib/cff_1_3_0/authors/one/G_A____/.zenodo.json +++ b/tests/lib/cff_1_3_0/authors/one/G_A____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Rafael" diff --git a/tests/lib/cff_1_3_0/authors/one/G_A____/bibtex.bib b/tests/lib/cff_1_3_0/authors/one/G_A____/bibtex.bib index 333bbc11..6fb30cfe 100644 --- a/tests/lib/cff_1_3_0/authors/one/G_A____/bibtex.bib +++ b/tests/lib/cff_1_3_0/authors/one/G_A____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {Rafael}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/authors/one/G______/.zenodo.json b/tests/lib/cff_1_3_0/authors/one/G______/.zenodo.json index 4a717f40..167b16ca 100644 --- a/tests/lib/cff_1_3_0/authors/one/G______/.zenodo.json +++ b/tests/lib/cff_1_3_0/authors/one/G______/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Rafael" diff --git a/tests/lib/cff_1_3_0/authors/one/G______/bibtex.bib b/tests/lib/cff_1_3_0/authors/one/G______/bibtex.bib index 333bbc11..6fb30cfe 100644 --- a/tests/lib/cff_1_3_0/authors/one/G______/bibtex.bib +++ b/tests/lib/cff_1_3_0/authors/one/G______/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {Rafael}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/authors/one/_FA____/.zenodo.json b/tests/lib/cff_1_3_0/authors/one/_FA____/.zenodo.json index 6c0080d5..866b56b0 100644 --- a/tests/lib/cff_1_3_0/authors/one/_FA____/.zenodo.json +++ b/tests/lib/cff_1_3_0/authors/one/_FA____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "van der Vaart III" diff --git a/tests/lib/cff_1_3_0/authors/one/_FA____/bibtex.bib b/tests/lib/cff_1_3_0/authors/one/_FA____/bibtex.bib index 269c7582..b43ba3b3 100644 --- a/tests/lib/cff_1_3_0/authors/one/_FA____/bibtex.bib +++ b/tests/lib/cff_1_3_0/authors/one/_FA____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {van der Vaart III}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/authors/one/_F_____/.zenodo.json b/tests/lib/cff_1_3_0/authors/one/_F_____/.zenodo.json index 6c0080d5..866b56b0 100644 --- a/tests/lib/cff_1_3_0/authors/one/_F_____/.zenodo.json +++ b/tests/lib/cff_1_3_0/authors/one/_F_____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "van der Vaart III" diff --git a/tests/lib/cff_1_3_0/authors/one/_F_____/bibtex.bib b/tests/lib/cff_1_3_0/authors/one/_F_____/bibtex.bib index 269c7582..b43ba3b3 100644 --- a/tests/lib/cff_1_3_0/authors/one/_F_____/bibtex.bib +++ b/tests/lib/cff_1_3_0/authors/one/_F_____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {van der Vaart III}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/authors/one/__AN___/.zenodo.json b/tests/lib/cff_1_3_0/authors/one/__AN___/.zenodo.json index 2bd4a7a8..63a5392b 100644 --- a/tests/lib/cff_1_3_0/authors/one/__AN___/.zenodo.json +++ b/tests/lib/cff_1_3_0/authors/one/__AN___/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "The soccer team members" diff --git a/tests/lib/cff_1_3_0/authors/one/__AN___/bibtex.bib b/tests/lib/cff_1_3_0/authors/one/__AN___/bibtex.bib index f1409386..e103ca63 100644 --- a/tests/lib/cff_1_3_0/authors/one/__AN___/bibtex.bib +++ b/tests/lib/cff_1_3_0/authors/one/__AN___/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The soccer team members}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/authors/one/__A____/.zenodo.json b/tests/lib/cff_1_3_0/authors/one/__A____/.zenodo.json index d1486bfe..52b97023 100644 --- a/tests/lib/cff_1_3_0/authors/one/__A____/.zenodo.json +++ b/tests/lib/cff_1_3_0/authors/one/__A____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Rafa" diff --git a/tests/lib/cff_1_3_0/authors/one/__A____/bibtex.bib b/tests/lib/cff_1_3_0/authors/one/__A____/bibtex.bib index a1d70de1..3f9abf7c 100644 --- a/tests/lib/cff_1_3_0/authors/one/__A____/bibtex.bib +++ b/tests/lib/cff_1_3_0/authors/one/__A____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{Rafa}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/authors/one/___N___/.zenodo.json b/tests/lib/cff_1_3_0/authors/one/___N___/.zenodo.json index 2bd4a7a8..63a5392b 100644 --- a/tests/lib/cff_1_3_0/authors/one/___N___/.zenodo.json +++ b/tests/lib/cff_1_3_0/authors/one/___N___/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "The soccer team members" diff --git a/tests/lib/cff_1_3_0/authors/one/___N___/bibtex.bib b/tests/lib/cff_1_3_0/authors/one/___N___/bibtex.bib index f1409386..e103ca63 100644 --- a/tests/lib/cff_1_3_0/authors/one/___N___/bibtex.bib +++ b/tests/lib/cff_1_3_0/authors/one/___N___/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The soccer team members}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/authors/two/GF_____/.zenodo.json b/tests/lib/cff_1_3_0/authors/two/GF_____/.zenodo.json index 4f26b97b..c424328a 100644 --- a/tests/lib/cff_1_3_0/authors/two/GF_____/.zenodo.json +++ b/tests/lib/cff_1_3_0/authors/two/GF_____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "van der Vaart III, Rafael" diff --git a/tests/lib/cff_1_3_0/authors/two/GF_____/bibtex.bib b/tests/lib/cff_1_3_0/authors/two/GF_____/bibtex.bib index cc2e0579..37dd6da9 100644 --- a/tests/lib/cff_1_3_0/authors/two/GF_____/bibtex.bib +++ b/tests/lib/cff_1_3_0/authors/two/GF_____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {van der Vaart III, Rafael and dos Santos Aveiro, Cristiano Ronaldo}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/contributors/one/GFA_AOE/.zenodo.json b/tests/lib/cff_1_3_0/contributors/one/GFA_AOE/.zenodo.json index 9e0c02ff..34de4c53 100644 --- a/tests/lib/cff_1_3_0/contributors/one/GFA_AOE/.zenodo.json +++ b/tests/lib/cff_1_3_0/contributors/one/GFA_AOE/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "contributors": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_3_0/contributors/one/GFA_AOE/bibtex.bib b/tests/lib/cff_1_3_0/contributors/one/GFA_AOE/bibtex.bib index 8befb98a..90501279 100644 --- a/tests/lib/cff_1_3_0/contributors/one/GFA_AOE/bibtex.bib +++ b/tests/lib/cff_1_3_0/contributors/one/GFA_AOE/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The author}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/contributors/one/GFA_AO_/.zenodo.json b/tests/lib/cff_1_3_0/contributors/one/GFA_AO_/.zenodo.json index 9e0c02ff..34de4c53 100644 --- a/tests/lib/cff_1_3_0/contributors/one/GFA_AO_/.zenodo.json +++ b/tests/lib/cff_1_3_0/contributors/one/GFA_AO_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "contributors": [ { "affiliation": "Netherlands eScience Center", diff --git a/tests/lib/cff_1_3_0/contributors/one/GFA_AO_/bibtex.bib b/tests/lib/cff_1_3_0/contributors/one/GFA_AO_/bibtex.bib index 8befb98a..90501279 100644 --- a/tests/lib/cff_1_3_0/contributors/one/GFA_AO_/bibtex.bib +++ b/tests/lib/cff_1_3_0/contributors/one/GFA_AO_/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The author}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/contributors/one/GFA____/.zenodo.json b/tests/lib/cff_1_3_0/contributors/one/GFA____/.zenodo.json index afcb6189..dd1e576a 100644 --- a/tests/lib/cff_1_3_0/contributors/one/GFA____/.zenodo.json +++ b/tests/lib/cff_1_3_0/contributors/one/GFA____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "contributors": [ { "name": "van der Vaart III, Rafael", diff --git a/tests/lib/cff_1_3_0/contributors/one/GFA____/bibtex.bib b/tests/lib/cff_1_3_0/contributors/one/GFA____/bibtex.bib index 8befb98a..90501279 100644 --- a/tests/lib/cff_1_3_0/contributors/one/GFA____/bibtex.bib +++ b/tests/lib/cff_1_3_0/contributors/one/GFA____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The author}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/contributors/one/GF_____/.zenodo.json b/tests/lib/cff_1_3_0/contributors/one/GF_____/.zenodo.json index afcb6189..dd1e576a 100644 --- a/tests/lib/cff_1_3_0/contributors/one/GF_____/.zenodo.json +++ b/tests/lib/cff_1_3_0/contributors/one/GF_____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "contributors": [ { "name": "van der Vaart III, Rafael", diff --git a/tests/lib/cff_1_3_0/contributors/one/GF_____/bibtex.bib b/tests/lib/cff_1_3_0/contributors/one/GF_____/bibtex.bib index 8befb98a..90501279 100644 --- a/tests/lib/cff_1_3_0/contributors/one/GF_____/bibtex.bib +++ b/tests/lib/cff_1_3_0/contributors/one/GF_____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The author}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/contributors/one/G_A____/.zenodo.json b/tests/lib/cff_1_3_0/contributors/one/G_A____/.zenodo.json index 1cf775d7..8c185ccb 100644 --- a/tests/lib/cff_1_3_0/contributors/one/G_A____/.zenodo.json +++ b/tests/lib/cff_1_3_0/contributors/one/G_A____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "contributors": [ { "name": "Rafael", diff --git a/tests/lib/cff_1_3_0/contributors/one/G_A____/bibtex.bib b/tests/lib/cff_1_3_0/contributors/one/G_A____/bibtex.bib index 8befb98a..90501279 100644 --- a/tests/lib/cff_1_3_0/contributors/one/G_A____/bibtex.bib +++ b/tests/lib/cff_1_3_0/contributors/one/G_A____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The author}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/contributors/one/G______/.zenodo.json b/tests/lib/cff_1_3_0/contributors/one/G______/.zenodo.json index 1cf775d7..8c185ccb 100644 --- a/tests/lib/cff_1_3_0/contributors/one/G______/.zenodo.json +++ b/tests/lib/cff_1_3_0/contributors/one/G______/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "contributors": [ { "name": "Rafael", diff --git a/tests/lib/cff_1_3_0/contributors/one/G______/bibtex.bib b/tests/lib/cff_1_3_0/contributors/one/G______/bibtex.bib index 8befb98a..90501279 100644 --- a/tests/lib/cff_1_3_0/contributors/one/G______/bibtex.bib +++ b/tests/lib/cff_1_3_0/contributors/one/G______/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The author}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/contributors/one/_FA____/.zenodo.json b/tests/lib/cff_1_3_0/contributors/one/_FA____/.zenodo.json index 5e543778..c9879b9f 100644 --- a/tests/lib/cff_1_3_0/contributors/one/_FA____/.zenodo.json +++ b/tests/lib/cff_1_3_0/contributors/one/_FA____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "contributors": [ { "name": "van der Vaart III", diff --git a/tests/lib/cff_1_3_0/contributors/one/_FA____/bibtex.bib b/tests/lib/cff_1_3_0/contributors/one/_FA____/bibtex.bib index 8befb98a..90501279 100644 --- a/tests/lib/cff_1_3_0/contributors/one/_FA____/bibtex.bib +++ b/tests/lib/cff_1_3_0/contributors/one/_FA____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The author}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/contributors/one/_F_____/.zenodo.json b/tests/lib/cff_1_3_0/contributors/one/_F_____/.zenodo.json index 5e543778..c9879b9f 100644 --- a/tests/lib/cff_1_3_0/contributors/one/_F_____/.zenodo.json +++ b/tests/lib/cff_1_3_0/contributors/one/_F_____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "contributors": [ { "name": "van der Vaart III", diff --git a/tests/lib/cff_1_3_0/contributors/one/_F_____/bibtex.bib b/tests/lib/cff_1_3_0/contributors/one/_F_____/bibtex.bib index 8befb98a..90501279 100644 --- a/tests/lib/cff_1_3_0/contributors/one/_F_____/bibtex.bib +++ b/tests/lib/cff_1_3_0/contributors/one/_F_____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The author}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/contributors/one/__AN___/.zenodo.json b/tests/lib/cff_1_3_0/contributors/one/__AN___/.zenodo.json index 5e12993c..1773cc36 100644 --- a/tests/lib/cff_1_3_0/contributors/one/__AN___/.zenodo.json +++ b/tests/lib/cff_1_3_0/contributors/one/__AN___/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "contributors": [ { "name": "The soccer team members", diff --git a/tests/lib/cff_1_3_0/contributors/one/__AN___/bibtex.bib b/tests/lib/cff_1_3_0/contributors/one/__AN___/bibtex.bib index 8befb98a..90501279 100644 --- a/tests/lib/cff_1_3_0/contributors/one/__AN___/bibtex.bib +++ b/tests/lib/cff_1_3_0/contributors/one/__AN___/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The author}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/contributors/one/___N___/.zenodo.json b/tests/lib/cff_1_3_0/contributors/one/___N___/.zenodo.json index 5e12993c..1773cc36 100644 --- a/tests/lib/cff_1_3_0/contributors/one/___N___/.zenodo.json +++ b/tests/lib/cff_1_3_0/contributors/one/___N___/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "contributors": [ { "name": "The soccer team members", diff --git a/tests/lib/cff_1_3_0/contributors/one/___N___/bibtex.bib b/tests/lib/cff_1_3_0/contributors/one/___N___/bibtex.bib index 8befb98a..90501279 100644 --- a/tests/lib/cff_1_3_0/contributors/one/___N___/bibtex.bib +++ b/tests/lib/cff_1_3_0/contributors/one/___N___/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The author}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/contributors/two/GF_____/.zenodo.json b/tests/lib/cff_1_3_0/contributors/two/GF_____/.zenodo.json index a2dd235b..d9ac7b04 100644 --- a/tests/lib/cff_1_3_0/contributors/two/GF_____/.zenodo.json +++ b/tests/lib/cff_1_3_0/contributors/two/GF_____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test of author inputs", + "type": { + "id": "notes" + } + } + ], "contributors": [ { "name": "van der Vaart III, Rafael", diff --git a/tests/lib/cff_1_3_0/contributors/two/GF_____/bibtex.bib b/tests/lib/cff_1_3_0/contributors/two/GF_____/bibtex.bib index 8befb98a..90501279 100644 --- a/tests/lib/cff_1_3_0/contributors/two/GF_____/bibtex.bib +++ b/tests/lib/cff_1_3_0/contributors/two/GF_____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{The author}}, -title = {the title} +title = {the title}, +note = {test of author inputs} } diff --git a/tests/lib/cff_1_3_0/identifiers/relation/.zenodo.json b/tests/lib/cff_1_3_0/identifiers/relation/.zenodo.json index 05e56f09..77a4b9fe 100644 --- a/tests/lib/cff_1_3_0/identifiers/relation/.zenodo.json +++ b/tests/lib/cff_1_3_0/identifiers/relation/.zenodo.json @@ -1,16 +1,24 @@ { + "additional_descriptions": [ + { + "description": "Test for relation type", + "type": { + "id": "notes" + } + } + ], "creators": [ { - "name": "Test author" + "name": "The author name" } ], "related_identifiers": [ { - "identifier": "10.0000/from-identifiers", + "identifier": "10.0000/some-identifier", "relation": "isCompiledBy", "scheme": "doi" } ], - "title": "Test title", + "title": "The title", "upload_type": "software" } diff --git a/tests/lib/cff_1_3_0/identifiers/sources/DI/.zenodo.json b/tests/lib/cff_1_3_0/identifiers/sources/DI/.zenodo.json index 113c8dda..9e17aa30 100644 --- a/tests/lib/cff_1_3_0/identifiers/sources/DI/.zenodo.json +++ b/tests/lib/cff_1_3_0/identifiers/sources/DI/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing dois", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/identifiers/sources/DI/bibtex.bib b/tests/lib/cff_1_3_0/identifiers/sources/DI/bibtex.bib index 2685968e..dd89ae3d 100644 --- a/tests/lib/cff_1_3_0/identifiers/sources/DI/bibtex.bib +++ b/tests/lib/cff_1_3_0/identifiers/sources/DI/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, doi = {10.0000/from-identifiers}, -title = {Test title} +title = {Test title}, +note = {test for constructing dois} } diff --git a/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_dois/.zenodo.json b/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_dois/.zenodo.json index 5a0489b6..57124f31 100644 --- a/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_dois/.zenodo.json +++ b/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_dois/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing dois", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_dois/bibtex.bib b/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_dois/bibtex.bib index 98feae92..b0bf9505 100644 --- a/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_dois/bibtex.bib +++ b/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_dois/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, doi = {10.0000/some-doi}, -title = {Test title} +title = {Test title}, +note = {test for constructing dois} } diff --git a/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_urls/.zenodo.json b/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_urls/.zenodo.json index 1fca6638..410c39db 100644 --- a/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_urls/.zenodo.json +++ b/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_urls/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing urls", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_urls/bibtex.bib b/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_urls/bibtex.bib index 6840e7d5..a73cd413 100644 --- a/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_urls/bibtex.bib +++ b/tests/lib/cff_1_3_0/identifiers/sources/DI_duplicate_urls/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/somewhere} +url = {https://github.com/somewhere}, +note = {test for constructing urls} } diff --git a/tests/lib/cff_1_3_0/identifiers/sources/D_/.zenodo.json b/tests/lib/cff_1_3_0/identifiers/sources/D_/.zenodo.json index d6893fc3..72d6270c 100644 --- a/tests/lib/cff_1_3_0/identifiers/sources/D_/.zenodo.json +++ b/tests/lib/cff_1_3_0/identifiers/sources/D_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing dois", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/identifiers/sources/D_/bibtex.bib b/tests/lib/cff_1_3_0/identifiers/sources/D_/bibtex.bib index f2ce178d..c52079b0 100644 --- a/tests/lib/cff_1_3_0/identifiers/sources/D_/bibtex.bib +++ b/tests/lib/cff_1_3_0/identifiers/sources/D_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, doi = {10.0000/from-doi}, -title = {Test title} +title = {Test title}, +note = {test for constructing dois} } diff --git a/tests/lib/cff_1_3_0/identifiers/sources/_I/.zenodo.json b/tests/lib/cff_1_3_0/identifiers/sources/_I/.zenodo.json index 4f4f97ed..9c3defad 100644 --- a/tests/lib/cff_1_3_0/identifiers/sources/_I/.zenodo.json +++ b/tests/lib/cff_1_3_0/identifiers/sources/_I/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing dois", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/identifiers/sources/_I/bibtex.bib b/tests/lib/cff_1_3_0/identifiers/sources/_I/bibtex.bib index 2685968e..dd89ae3d 100644 --- a/tests/lib/cff_1_3_0/identifiers/sources/_I/bibtex.bib +++ b/tests/lib/cff_1_3_0/identifiers/sources/_I/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, doi = {10.0000/from-identifiers}, -title = {Test title} +title = {Test title}, +note = {test for constructing dois} } diff --git a/tests/lib/cff_1_3_0/identifiers/sources/__/.zenodo.json b/tests/lib/cff_1_3_0/identifiers/sources/__/.zenodo.json index e22cacee..17fffbcd 100644 --- a/tests/lib/cff_1_3_0/identifiers/sources/__/.zenodo.json +++ b/tests/lib/cff_1_3_0/identifiers/sources/__/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "test for constructing dois", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/identifiers/sources/__/bibtex.bib b/tests/lib/cff_1_3_0/identifiers/sources/__/bibtex.bib index c3d8f958..df8fc42a 100644 --- a/tests/lib/cff_1_3_0/identifiers/sources/__/bibtex.bib +++ b/tests/lib/cff_1_3_0/identifiers/sources/__/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{Test author}}, -title = {Test title} +title = {Test title}, +note = {test for constructing dois} } diff --git a/tests/lib/cff_1_3_0/types/dataset/.zenodo.json b/tests/lib/cff_1_3_0/types/dataset/.zenodo.json index a1b7980d..88f1a032 100644 --- a/tests/lib/cff_1_3_0/types/dataset/.zenodo.json +++ b/tests/lib/cff_1_3_0/types/dataset/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "The message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "The name" diff --git a/tests/lib/cff_1_3_0/types/none/.zenodo.json b/tests/lib/cff_1_3_0/types/none/.zenodo.json index cdbd8f83..6b73f74c 100644 --- a/tests/lib/cff_1_3_0/types/none/.zenodo.json +++ b/tests/lib/cff_1_3_0/types/none/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "The message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "The name" diff --git a/tests/lib/cff_1_3_0/types/software/.zenodo.json b/tests/lib/cff_1_3_0/types/software/.zenodo.json index cdbd8f83..6b73f74c 100644 --- a/tests/lib/cff_1_3_0/types/software/.zenodo.json +++ b/tests/lib/cff_1_3_0/types/software/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "The message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "The name" diff --git a/tests/lib/cff_1_3_0/urls/IRACU/.zenodo.json b/tests/lib/cff_1_3_0/urls/IRACU/.zenodo.json index 67d6e016..20e8ab10 100644 --- a/tests/lib/cff_1_3_0/urls/IRACU/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/IRACU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/IRACU/bibtex.bib b/tests/lib/cff_1_3_0/urls/IRACU/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/IRACU/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/IRACU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/IRAC_/.zenodo.json b/tests/lib/cff_1_3_0/urls/IRAC_/.zenodo.json index b76cf35c..c265f533 100644 --- a/tests/lib/cff_1_3_0/urls/IRAC_/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/IRAC_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/IRAC_/bibtex.bib b/tests/lib/cff_1_3_0/urls/IRAC_/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/IRAC_/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/IRAC_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/IRA_U/.zenodo.json b/tests/lib/cff_1_3_0/urls/IRA_U/.zenodo.json index c2b0bc16..711e089d 100644 --- a/tests/lib/cff_1_3_0/urls/IRA_U/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/IRA_U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/IRA_U/bibtex.bib b/tests/lib/cff_1_3_0/urls/IRA_U/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/IRA_U/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/IRA_U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/IRA__/.zenodo.json b/tests/lib/cff_1_3_0/urls/IRA__/.zenodo.json index 4e953a15..3144c037 100644 --- a/tests/lib/cff_1_3_0/urls/IRA__/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/IRA__/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/IRA__/bibtex.bib b/tests/lib/cff_1_3_0/urls/IRA__/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/IRA__/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/IRA__/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/IR_CU/.zenodo.json b/tests/lib/cff_1_3_0/urls/IR_CU/.zenodo.json index 584248fe..3a2064d2 100644 --- a/tests/lib/cff_1_3_0/urls/IR_CU/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/IR_CU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/IR_CU/bibtex.bib b/tests/lib/cff_1_3_0/urls/IR_CU/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/IR_CU/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/IR_CU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/IR_C_/.zenodo.json b/tests/lib/cff_1_3_0/urls/IR_C_/.zenodo.json index bdf341f3..a430bdbb 100644 --- a/tests/lib/cff_1_3_0/urls/IR_C_/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/IR_C_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/IR_C_/bibtex.bib b/tests/lib/cff_1_3_0/urls/IR_C_/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/IR_C_/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/IR_C_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/IR__U/.zenodo.json b/tests/lib/cff_1_3_0/urls/IR__U/.zenodo.json index e5835483..ffc9cef7 100644 --- a/tests/lib/cff_1_3_0/urls/IR__U/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/IR__U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/IR__U/bibtex.bib b/tests/lib/cff_1_3_0/urls/IR__U/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/IR__U/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/IR__U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/IR___/.zenodo.json b/tests/lib/cff_1_3_0/urls/IR___/.zenodo.json index e7bfd80d..6f706b77 100644 --- a/tests/lib/cff_1_3_0/urls/IR___/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/IR___/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/IR___/bibtex.bib b/tests/lib/cff_1_3_0/urls/IR___/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/IR___/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/IR___/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/I_ACU/.zenodo.json b/tests/lib/cff_1_3_0/urls/I_ACU/.zenodo.json index b1aa1f59..78996fe1 100644 --- a/tests/lib/cff_1_3_0/urls/I_ACU/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/I_ACU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/I_ACU/bibtex.bib b/tests/lib/cff_1_3_0/urls/I_ACU/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/I_ACU/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/I_ACU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/I_AC_/.zenodo.json b/tests/lib/cff_1_3_0/urls/I_AC_/.zenodo.json index 7eb67015..2924180e 100644 --- a/tests/lib/cff_1_3_0/urls/I_AC_/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/I_AC_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/I_AC_/bibtex.bib b/tests/lib/cff_1_3_0/urls/I_AC_/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/I_AC_/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/I_AC_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/I_A_U/.zenodo.json b/tests/lib/cff_1_3_0/urls/I_A_U/.zenodo.json index 218642dc..22bb3bf7 100644 --- a/tests/lib/cff_1_3_0/urls/I_A_U/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/I_A_U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/I_A_U/bibtex.bib b/tests/lib/cff_1_3_0/urls/I_A_U/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/I_A_U/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/I_A_U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/I_A__/.zenodo.json b/tests/lib/cff_1_3_0/urls/I_A__/.zenodo.json index 5348b2b0..8f06ca1b 100644 --- a/tests/lib/cff_1_3_0/urls/I_A__/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/I_A__/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/I_A__/bibtex.bib b/tests/lib/cff_1_3_0/urls/I_A__/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/I_A__/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/I_A__/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/I__CU/.zenodo.json b/tests/lib/cff_1_3_0/urls/I__CU/.zenodo.json index 38ea308a..791aabb7 100644 --- a/tests/lib/cff_1_3_0/urls/I__CU/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/I__CU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/I__CU/bibtex.bib b/tests/lib/cff_1_3_0/urls/I__CU/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/I__CU/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/I__CU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/I__C_/.zenodo.json b/tests/lib/cff_1_3_0/urls/I__C_/.zenodo.json index 4361da3e..f53b9843 100644 --- a/tests/lib/cff_1_3_0/urls/I__C_/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/I__C_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/I__C_/bibtex.bib b/tests/lib/cff_1_3_0/urls/I__C_/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/I__C_/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/I__C_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/I___U/.zenodo.json b/tests/lib/cff_1_3_0/urls/I___U/.zenodo.json index 496ae839..274cad39 100644 --- a/tests/lib/cff_1_3_0/urls/I___U/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/I___U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/I___U/bibtex.bib b/tests/lib/cff_1_3_0/urls/I___U/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/I___U/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/I___U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/I____/.zenodo.json b/tests/lib/cff_1_3_0/urls/I____/.zenodo.json index 796b4265..5571fc9c 100644 --- a/tests/lib/cff_1_3_0/urls/I____/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/I____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/I____/bibtex.bib b/tests/lib/cff_1_3_0/urls/I____/bibtex.bib index fea3853a..9e2042aa 100644 --- a/tests/lib/cff_1_3_0/urls/I____/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/I____/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-identifiers} +url = {https://github.com/the-url-from-identifiers}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/_RACU/.zenodo.json b/tests/lib/cff_1_3_0/urls/_RACU/.zenodo.json index 23135085..3cd60ada 100644 --- a/tests/lib/cff_1_3_0/urls/_RACU/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/_RACU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/_RACU/bibtex.bib b/tests/lib/cff_1_3_0/urls/_RACU/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_3_0/urls/_RACU/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/_RACU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/_RAC_/.zenodo.json b/tests/lib/cff_1_3_0/urls/_RAC_/.zenodo.json index d784342a..53fe2e58 100644 --- a/tests/lib/cff_1_3_0/urls/_RAC_/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/_RAC_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/_RAC_/bibtex.bib b/tests/lib/cff_1_3_0/urls/_RAC_/bibtex.bib index 761deec3..0d0ac38e 100644 --- a/tests/lib/cff_1_3_0/urls/_RAC_/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/_RAC_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository-code} +url = {https://github.com/the-url-from-repository-code}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/_RA_U/.zenodo.json b/tests/lib/cff_1_3_0/urls/_RA_U/.zenodo.json index 3ce04e2f..f7bb6cd7 100644 --- a/tests/lib/cff_1_3_0/urls/_RA_U/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/_RA_U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/_RA_U/bibtex.bib b/tests/lib/cff_1_3_0/urls/_RA_U/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_3_0/urls/_RA_U/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/_RA_U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/_RA__/.zenodo.json b/tests/lib/cff_1_3_0/urls/_RA__/.zenodo.json index 876fa2d0..98516d23 100644 --- a/tests/lib/cff_1_3_0/urls/_RA__/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/_RA__/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/_RA__/bibtex.bib b/tests/lib/cff_1_3_0/urls/_RA__/bibtex.bib index 29baadc3..74fd138d 100644 --- a/tests/lib/cff_1_3_0/urls/_RA__/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/_RA__/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository} +url = {https://github.com/the-url-from-repository}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/_R_CU/.zenodo.json b/tests/lib/cff_1_3_0/urls/_R_CU/.zenodo.json index 65c348ad..4a55232e 100644 --- a/tests/lib/cff_1_3_0/urls/_R_CU/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/_R_CU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/_R_CU/bibtex.bib b/tests/lib/cff_1_3_0/urls/_R_CU/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_3_0/urls/_R_CU/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/_R_CU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/_R_C_/.zenodo.json b/tests/lib/cff_1_3_0/urls/_R_C_/.zenodo.json index fe165681..f39ddc07 100644 --- a/tests/lib/cff_1_3_0/urls/_R_C_/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/_R_C_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/_R_C_/bibtex.bib b/tests/lib/cff_1_3_0/urls/_R_C_/bibtex.bib index 761deec3..0d0ac38e 100644 --- a/tests/lib/cff_1_3_0/urls/_R_C_/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/_R_C_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository-code} +url = {https://github.com/the-url-from-repository-code}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/_R__U/.zenodo.json b/tests/lib/cff_1_3_0/urls/_R__U/.zenodo.json index eacb4dd1..787fbf36 100644 --- a/tests/lib/cff_1_3_0/urls/_R__U/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/_R__U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/_R__U/bibtex.bib b/tests/lib/cff_1_3_0/urls/_R__U/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_3_0/urls/_R__U/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/_R__U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/_R___/.zenodo.json b/tests/lib/cff_1_3_0/urls/_R___/.zenodo.json index 47b48387..3989fbaa 100644 --- a/tests/lib/cff_1_3_0/urls/_R___/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/_R___/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/_R___/bibtex.bib b/tests/lib/cff_1_3_0/urls/_R___/bibtex.bib index 29baadc3..74fd138d 100644 --- a/tests/lib/cff_1_3_0/urls/_R___/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/_R___/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository} +url = {https://github.com/the-url-from-repository}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/__ACU/.zenodo.json b/tests/lib/cff_1_3_0/urls/__ACU/.zenodo.json index dcc3f827..f30510bd 100644 --- a/tests/lib/cff_1_3_0/urls/__ACU/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/__ACU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/__ACU/bibtex.bib b/tests/lib/cff_1_3_0/urls/__ACU/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_3_0/urls/__ACU/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/__ACU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/__AC_/.zenodo.json b/tests/lib/cff_1_3_0/urls/__AC_/.zenodo.json index 734b5ab5..7f73f362 100644 --- a/tests/lib/cff_1_3_0/urls/__AC_/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/__AC_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/__AC_/bibtex.bib b/tests/lib/cff_1_3_0/urls/__AC_/bibtex.bib index 761deec3..0d0ac38e 100644 --- a/tests/lib/cff_1_3_0/urls/__AC_/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/__AC_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository-code} +url = {https://github.com/the-url-from-repository-code}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/__A_U/.zenodo.json b/tests/lib/cff_1_3_0/urls/__A_U/.zenodo.json index b1670117..d699cdb7 100644 --- a/tests/lib/cff_1_3_0/urls/__A_U/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/__A_U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/__A_U/bibtex.bib b/tests/lib/cff_1_3_0/urls/__A_U/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_3_0/urls/__A_U/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/__A_U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/__A__/.zenodo.json b/tests/lib/cff_1_3_0/urls/__A__/.zenodo.json index 3e11dfc1..f14b71f0 100644 --- a/tests/lib/cff_1_3_0/urls/__A__/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/__A__/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/__A__/bibtex.bib b/tests/lib/cff_1_3_0/urls/__A__/bibtex.bib index 1b19bd5d..627a252d 100644 --- a/tests/lib/cff_1_3_0/urls/__A__/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/__A__/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository-artifact} +url = {https://github.com/the-url-from-repository-artifact}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/___CU/.zenodo.json b/tests/lib/cff_1_3_0/urls/___CU/.zenodo.json index 429035fc..0afb472d 100644 --- a/tests/lib/cff_1_3_0/urls/___CU/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/___CU/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/___CU/bibtex.bib b/tests/lib/cff_1_3_0/urls/___CU/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_3_0/urls/___CU/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/___CU/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/___C_/.zenodo.json b/tests/lib/cff_1_3_0/urls/___C_/.zenodo.json index 5719620a..ca1f9cb1 100644 --- a/tests/lib/cff_1_3_0/urls/___C_/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/___C_/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/___C_/bibtex.bib b/tests/lib/cff_1_3_0/urls/___C_/bibtex.bib index 761deec3..0d0ac38e 100644 --- a/tests/lib/cff_1_3_0/urls/___C_/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/___C_/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-repository-code} +url = {https://github.com/the-url-from-repository-code}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/____U/.zenodo.json b/tests/lib/cff_1_3_0/urls/____U/.zenodo.json index 92ac0459..1cab788d 100644 --- a/tests/lib/cff_1_3_0/urls/____U/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/____U/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/____U/bibtex.bib b/tests/lib/cff_1_3_0/urls/____U/bibtex.bib index 6cb025d4..59d58d23 100644 --- a/tests/lib/cff_1_3_0/urls/____U/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/____U/bibtex.bib @@ -1,5 +1,6 @@ @misc{YourReferenceHere, author = {{Test author}}, title = {Test title}, -url = {https://github.com/the-url-from-url} +url = {https://github.com/the-url-from-url}, +note = {Test message} } diff --git a/tests/lib/cff_1_3_0/urls/_____/.zenodo.json b/tests/lib/cff_1_3_0/urls/_____/.zenodo.json index e22cacee..59078187 100644 --- a/tests/lib/cff_1_3_0/urls/_____/.zenodo.json +++ b/tests/lib/cff_1_3_0/urls/_____/.zenodo.json @@ -1,4 +1,12 @@ { + "additional_descriptions": [ + { + "description": "Test message", + "type": { + "id": "notes" + } + } + ], "creators": [ { "name": "Test author" diff --git a/tests/lib/cff_1_3_0/urls/_____/bibtex.bib b/tests/lib/cff_1_3_0/urls/_____/bibtex.bib index c3d8f958..f42fa70d 100644 --- a/tests/lib/cff_1_3_0/urls/_____/bibtex.bib +++ b/tests/lib/cff_1_3_0/urls/_____/bibtex.bib @@ -1,4 +1,5 @@ @misc{YourReferenceHere, author = {{Test author}}, -title = {Test title} +title = {Test title}, +note = {Test message} }