-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adopt funding
property if it gets accepted
#109
Comments
I think the property is 'funding', not 'funded' |
funded
property if it gets acceptedfunding
property if it gets accepted
note DINGO "an ontology expressly designed to provide an extensible interoperable framework for formally conceptualizing and expressing the relevant parts of the research/cultural landscape in relation to funding," |
Port of #158PROBLEM: No property from schema:Dataset to describe the funding award (schema:funder describes the Funding Agency). PROPOSED SOLUTION: There is a property, schema:fundedItem, on schema:Grant that links to the CreativeWork. Using JSON-LD 1.1 @reverse property, it's possible from a Dataset landing page to use the schema:fundedItem property. See: schemaorg/schemaorg#383 (comment)
generates RDF triples:
|
Several groups are converging on a shared structure, including CodeMeta (codemeta/codemeta#160), the EML 2.2.0 UPDATED example to fix NSF identifiers {
"@context": "http://schema.org/",
"@type": "Dataset",
"@id": "urn:example:dataset:1",
"@reverse": {
"fundedItem": [
{
"@id": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=1546024",
"@type": "MonetaryGrant",
"identifier": "1546024",
"name": "Scientia Arctica: A Knowledge Archive for Discovery and Reproducible Science in the Arctic",
"url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=1546024",
"funder": {
"@id": "http://dx.doi.org/10.13039/100000001",
"@type": "Organization",
"name": "National Science Foundation",
"identifier": [
"http://dx.doi.org/10.13039/100000001",
"https://ror.org/021nxhr62"
]
}
}
]
}
} When parsed, this produces the following triples:
|
does it make sense to include RORs? |
I think that would be a good identifier to use. The DOI in Matt's example is a dummy (doesn't resolve) |
I must confess that while the @reverse works technically, it seems to me that it will be confusing to many people... |
@elishawc Thanks. The DOI in my example was not meant to be a dummy -- it was from the CrossRef Funder Registry, and I made a typo in my example, which is now fixed. The ID is http://dx.doi.org/10.13039/100000001, which is nice because all of the metadata is already in an RDF graph. That said, I think using a ROR is a good idea too, and I added that to the example above as well. So both are now updated. @smrgeoinfo I agree it is a bit awkward, but it it is a legit feature of JSON-LD and one that validates well. Is there an alternative, given that the inverse property of |
I also noticed that I somehow missed the |
Discussed on the SOSO call from 2021-05-03, agreed that using TODO: Matt to writeup guidance docs, and ADR, and a PR for everyone to review. |
I edited Funding as we discussed, which is all on the
Please comment on the PR or in this issue. Thanks! |
I see an award landing page field. |
@elishawc Our convention for an award DOI would be to add it to the |
Using (edited to correct url) |
Merged the PR into |
schema.org just added |
schemaorg/schemaorg#2618
The text was updated successfully, but these errors were encountered: