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
{
    "@context": ["http://schema.org", {"author": {"@id": "schema:author", "@container": "@list"} } ] ,
    "name": "Generate CodeMeta Metadata for R Packages",
    "description": "Codemeta defines a 'JSON-LD' format for describing software metadata. This package provides utilities to generate, parse, and modify codemeta.jsonld files automatically for R packages.",
    "identifier": "http://dx.doi.org/10.5281/zenodo.XXXX",
    "@type": "SoftwareSourceCode",
    "author": [{
        "@id": "http://orcid.org/0000-0002-2192-403X",
        "@type": "Person",
        "email": "slaughter@nceas.ucsb.edu",
        "givenName": "Peter",
        "familyName":  "Slaughter",
        "affiliation": "NCEAS"
    },
    {
        "@id": "http://orcid.org/0000-0003-0077-4738",
        "@type": "Person",
        "givenName": "Matthew",
        "familyName": "Jones",
        "affiliation": "NCEAS"
    },
    {
        "@id": "http://orcid.org/0000-0002-1642-628X",
        "@type": "Person",
        "givenName": "Carl",
        "familyName": "Boettiger",
        "email": "cobettig@gmail.com",
        "affiliation": "UC Berkeley"
    }
    ],
    "copyrightHolder": {
        "@type": "Organization",
        "email": "info@ucop.edu",
        "name": "University of California, Santa Barbara"
    },
    "creator": {
      "@id": "http://orcid.org/0000-0002-1642-628X"
    },
    "codeRepository": "https://github.com/codemeta/codemetar",
    "datePublished": "2014-09-06",
    "dateModified": "2014-08-15",
    "dateCreated": "2014-08-06",
    "publisher": "zenodo",
    "keywords": [
        "publishing",
        "DOI",
        "credit for code"
    ],
    "license": "https://opensource.org/licenses/BSD-2-Clause",
    "version": "0.1.0",

    "programmingLanguage": {
        "name": "R",
        "URL": "https://www.r-project.org"
    },
    "downloadUrl": "https://github.com/codemeta/codemetar/releases/",
    "softwareRequirements": [ "https://cran.r-project.org/package=jsonlite" ]
}