Scientific dataset (v1, tby-sd1)

This convention defines a fairly minimalistic description of a scientific dataset. With few exceptions the convention is built on the https://schema.org vocabulary.

Sheet authors

Context

{
  "bibo": "https://purl.org/ontology/bibo/",
  "obo": "https://purl.obolibrary.org/",
  "schema": "https://schema.org/",
  "affiliation": "schema:affiliation",
  "email": "schema:email",
  "name": "schema:name",
  "orcid": "obo:IAO_0000708"
}

Overrides

Any entity in the sheet is declared to be of type https://schema.org/Person, using a given ORCID as a globally unique IRI.

{
  "@id": "https://orcid.org/{orcid[0]}",
  "@type": "schema:Person"
}

Sheet dataset

Context

{
  "bibo": "https://purl.org/ontology/bibo/",
  "obo": "https://purl.obolibrary.org/",
  "schema": "https://schema.org/",
  "author": "schema:author",
  "citation": "schema:citation",
  "description": "schema:description",
  "doi": "bibo:doi",
  "funding": "schema:funding",
  "homepage": "schema:mainEntityOfPage",
  "identifier": "schema:identifier",
  "keywords": "schema:keywords",
  "last-updated": "schema:dateModified",
  "license": "schema:license",
  "name": "schema:name",
  "title": "schema:title",
  "version": "schema:version"
}

Default (JSON) data

A dataset must declare authors in a dedicated authors sheet. A dataset may declare associated funding in a dedicated funding sheet. Both sheets use the tby-sd1 convention.

{
  "author": "@tabby-many-authors@tby-sd1",
  "funding": "@tabby-optional-many-funding@tby-sd1"
}

Sheet funding

Context

{
  "schema": "https://schema.org/",
  "funder": "schema:funder",
  "grant_id": "schema:identifier",
  "title": "schema:title"
}

Overrides

Any entity in the sheet is declared to be of type https://schema.org/Grant.

{
  "@type": "schema:Grant"
}