-
Notifications
You must be signed in to change notification settings - Fork 2
/
codemeta-TEMPLATE.json
72 lines (72 loc) · 2.27 KB
/
codemeta-TEMPLATE.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
"@type": "SoftwareSourceCode",
"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",
"dateCreated": "DATE PROJECT STARTED",
"author": [
{
"@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": 2024,
"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",
"softwareHelp": "DOCUMENTATION PAGES/SITE IF ANY",
"relatedLink": "https://data.caltech.edu/records/INVENIORDM-RECORD-ID-IF-ANY",
"programmingLanguage": [
{
"@type": "ComputerLanguage",
"name": "THE PRIMARY PROGRAMMING LANGUAGE",
"version": "MINIMUM LANGUAGE VERSION IF APPLICABLE"
}
],
"keywords": [
"software",
"library",
"ANOTHER KEYWORD",
"ANOTHER KEYWORD"
],
"developmentStatus": "STATUS"
}