Last active
April 16, 2016 14:47
-
-
Save arfon/151ea4dd0929d087fbdbd19c5905e376 to your computer and use it in GitHub Desktop.
Transitive credit example
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
{ | |
"@context":"http://schema.org", | |
"@type":"ScholarlyArticle", | |
"headline":"Implementing Transitive Credit with JSON-LD", | |
"dateCreated":"2014-07-10", | |
"keywords":"transitive credit, credit for code, json-ld, linked data", | |
"author":[ | |
{ | |
"@type":"Person", | |
"name":"Daniel S. Katz", | |
"@id":"http://orcid.org/0000-0001-5934-7525", | |
"email":"[email protected]", | |
"creditWeight":"0.25" | |
}, | |
{ | |
"@type":"Person", | |
"name":"Arfon Smith", | |
"@id":"http://orcid.org/0000-0002-7217-4494", | |
"email":"[email protected]", | |
"creditWeight":"0.25" | |
} | |
], | |
"citation":{ | |
"articles":[ | |
{ | |
"@type":"ScholarlyArticle", | |
"headline":"Transitive credit as a means to address social and technological concerns stemming from citation and attribution of digital products", | |
"doi":"10.5334/jors.be", | |
"creditWeight":"0.3" | |
} | |
], | |
"software":[ | |
{ | |
"@type":"Code", | |
"name":"Fidgit", | |
"codeRepository":"https://github.com/arfon/fidgit", | |
"license":"http://opensource.org/licenses/MIT", | |
"creditWeight":"0.04" | |
} | |
], | |
"acknowledgment":[ | |
{ | |
"@type":"Person", | |
"name":"James Howison", | |
"@id":"http://orcid.org/0000-0002-5702-149X", | |
"email":"[email protected]", | |
"creditWeight":"0.01" | |
} | |
], | |
"other":[ | |
{ | |
"@type":"BlogPosting", | |
"headline":"JSON-LD for software discovery, reuse and credit", | |
"url":"http://www.arfon.org/json-ld-for-software-discovery-reuse-and-credit", | |
"license":"http://creativecommons.org/licenses/by/4.0/", | |
"creditWeight":"0.15" | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment