Add CITATION.cff and codemeta.json for Zenodo archival#94
Merged
Conversation
Adds machine-readable citation metadata so the GitHub ↔ Zenodo integration captures rich author + license + keyword data on the next release. Authors: - Anne Fouilloux (LifeWatch ERIC, ORCID 0000-0002-1784-2920) - Vijay Prema (Prophet Town) - VitenHub AS (institutional author) Both files declare version 1.0.6 to match the latest release tag. The DOI field is intentionally omitted; it will be added in the release commit that triggers the first Zenodo mint. References: - CITATION.cff schema: https://citation-file-format.github.io/ - CodeMeta-2.0 schema: https://codemeta.github.io/ - FAIR4RS principles F1.1, F2, F3, R1.1: rich citable metadata.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds machine-readable citation metadata to the repo so the GitHub ↔ Zenodo integration captures rich author + license + keyword data on the next release.
Authors listed (consistent across both files):
0000-0002-1784-2920type: entity/ CodeMeta@type: Organization)Both files declare
version: "1.0.6"to match the latest release tag.Why now
Zenodo ↔ GitHub integration was just enabled for
ScienceLiveHub/science-live-platform. On the next release, Zenodo will read these files to populate the deposit's authors, abstract, license, and keywords. Without them, the deposit gets the GitHub commit-based defaults (just an automated description).DOI field — deferred
CITATION.cffdoes not yet have adoi:field, andcodemeta.jsondoes not yet haveidentifier/@id. These will be added in the release commit that mints the first Zenodo concept DOI (likely v1.0.7 or whichever next release happens, bundled with real fixes per the team's preference to avoid metadata-only releases).Test plan
python3 -c "import yaml; yaml.safe_load(open('CITATION.cff'))"parses cleanlypython3 -c "import json; json.load(open('codemeta.json'))"parses cleanlyReferences