RO-Crate (Research Objects Crate) is a community initiative started around 2019 that provides
an approach to package and aggregate research artefacts with their metadata and relationships. RO-Crate is based on
Schema.org annotations in
JSON-LD, aiming to establish best practices to formally describe metadata in an accessible and practical way. It has the intent of applying “just enough”
Linked Data standards for making research outputs
FAIR while also enhancing research
reproducibility. It seeks to bridge the complexity gap in the tooling for metadata specifications by following 4 principles: • being conceptually simple and easy to understand for developers; • providing strong, easy tooling for integration into community projects; • providing a strong and opinionated guide regarding current best practices; • adopting
de-facto standards that are widely used on the
Web. The Root Data Entity is a directory, the
RO-Crate Root, identified by the presence of the
RO-Crate Metadata File ro-crate-metadata.json. RO-Crates can be stored, transferred or published in multiple ways, including downloadable
ZIP archives in
Zenodo or through dedicated online repositories, as well as published directly on the Web, e.g. using
GitHub Pages. A simple RO-Crate metadata file describing data entities (
CSV and
JPG files) with contextual entities (authors identified by name or
ORCID) can be seen below: { "@context": "https://w3id.org/ro/crate/1.1/context", "@graph": [ { "@id": "ro-crate-metadata.json", "@type": "CreativeWork", "conformsTo": {"@id": "https://w3id.org/ro/crate/1.1"}, "about": {"@id": "./"} }, { "@id": "./", "@type": "Dataset", "name": "A simplified RO-Crate", "author": {"@id": "#alice"}, "license": {"@id": "https://spdx.org/licenses/CC-BY-4.0"}, "datePublished": "2021-11-02T16:04:43Z", "hasPart": [ {"@id": "survey-responses-2019.csv"}, {"@id": "https://example.com/pics/5707039334816454031_o.jpg"} ] }, { "@id": "survey-responses-2019.csv", "@type": "File", "about": {"@id": "https://example.com/pics/5707039334816454031_o.jpg"}, "author": {"@id": "#alice"} }, { "@id": "https://example.com/pics/5707039334816454031_o.jpg", "@type": ["File", "ImageObject"], "contentLocation": {"@id": "http://sws.geonames.org/8152662/"}, "author": {"@id": "https://orcid.org/0000-0002-1825-0097"} }, { "@id": "#alice", "@type": "Person", "name": "Alice" }, { "@id": "https://orcid.org/0000-0002-1825-0097", "@type": "Person", "name": "Josiah Carberry" }, { "@id": "http://sws.geonames.org/8152662/", "@type": "Place", "name": "Catalina Park" }, { "@id": "https://spdx.org/licenses/CC-BY-4.0", "@type": "CreativeWork", "name": "Creative Commons Attribution 4.0" } ] } == References ==