From 7677662469f9f90a6233533f994efe44685c888e Mon Sep 17 00:00:00 2001 From: Michael Hucka Date: Mon, 27 Nov 2023 12:27:07 -0800 Subject: [PATCH] fix: update codemeta template for latest form --- codemeta-TEMPLATE.json | 92 ++++++++++++++++++++++++++---------------- 1 file changed, 58 insertions(+), 34 deletions(-) diff --git a/codemeta-TEMPLATE.json b/codemeta-TEMPLATE.json index 77a2b28..6183405 100644 --- a/codemeta-TEMPLATE.json +++ b/codemeta-TEMPLATE.json @@ -1,45 +1,69 @@ { "@context": "https://doi.org/10.5063/schema/codemeta-2.0", "@type": "SoftwareSourceCode", - "description": "YOUR DESCRIPTION", - "name": "YOUR REPOSITORY NAME", - "codeRepository": "https://github.com/caltechlibrary/REPONAME", - "issueTracker": "https://github.com/caltechlibrary/REPONAME/issues", - "license": "https://github.com/caltechlibrary/REPONAME/blob/main/LICENSE", + "name": "THE NAME OF YOUR SOFTWARE (may or may not be same as repo name)", + "identifier": "YOUR REPOSITORY NAME (ALONE, WITHOUT THE ACCOUNT NAME)", + "description": "SUMMARY OF YOUR SOFTWARE PROJECT", "version": "0.0.0", + "datePublished": "DATE OF RELEASE", + "dateCreated": "DATE PROJECT STARTED", "author": [ { - "@type": "Person", - "givenName": "FIRSTNAME", - "familyName": "LASTNAME", - "affiliation": { - "@type": "Organization", - "name": "Caltech" - }, - "email": "EMAIL", - "@id": "https://orcid.org/YOUR-ORCID" - }], - "developmentStatus": "active", + "@type": "Person", + "givenName": "FIRSTNAME", + "familyName": "LASTNAME", + "affiliation": { + "@type": "Organization", + "name": "California Institute of Technology Library" + }, + "email": "EMAIL", + "@id": "https://orcid.org/YOUR-ORCID" + } + ], + "maintainer": [ + { + "@type": "Person", + "givenName": "FIRSTNAME", + "familyName": "LASTNAME", + "affiliation": { + "@type": "Organization", + "name": "California Institute of Technology Library" + }, + "email": "EMAIL", + "@id": "https://orcid.org/YOUR-ORCID" + } + ], + "funder": { + "@id": "https://ror.org/05dxps055", + "@type": "Organization", + "name": "California Institute of Technology Library" + }, + "copyrightHolder": [ + { + "@id": "https://ror.org/05dxps055", + "@type": "Organization", + "name": "California Institute of Technology" + } + ], + "copyrightYear": 2023, + "license": "https://github.com/caltechlibrary/REPONAME/blob/main/LICENSE", + "isAccessibleForFree": true, + "url": "https://github.com/caltechlibrary/REPONAME", + "codeRepository": "https://github.com/caltechlibrary/REPONAME", + "readme": "https://github.com/caltechlibrary/REPONAME/blob/main/README.md", + "releaseNotes": "https://github.com/caltechlibrary/REPONAME/blob/main/CHANGES.md", + "issueTracker": "https://github.com/caltechlibrary/REPONAME/issues", "downloadUrl": "https://github.com/caltechlibrary/REPONAME/archive/main.zip", + "programmingLanguage": { + "@type": "ComputerLanguage", + "name": "THE PRIMARY PROGRAMMING LANGUAGE", + "version": "MINIMUM LANGUAGE VERSION IF APPLICABLE" + }, "keywords": [ "software", - "science" + "library", + "ANOTHER KEYWORD", + "ANOTHER KEYWORD" ], - "maintainer": [ - { - "@type": "Person", - "givenName": "FIRSTNAME", - "familyName": "LASTNAME", - "affiliation": { - "@type": "Organization", - "name": "Caltech Library" - }, - "email": "EMAIL", - "@id": "https://orcid.org/YOUR-ORCID" - }], - "funder": [{ - "@id": "https://doi.org/10.13039/100006961", - "@type": "Organization", - "name": "Caltech Library" - }] + "developmentStatus": "STATUS" }