The DataCite Ontology
language en

The DataCite Ontology

Release: 2016-01-21

Modified on: 2026-05-05
This version:
http://purl.org/spar/datacite/2026-05-05
Latest version:
http://purl.org/spar/datacite
Previous version:
http://purl.org/spar/datacite/2025-09-22
Revision:
1.3.1
Issued on:
2016-01-21
Authors:
David Shotton
Silvio Peroni
Contributors:
Amy J. Barton
Egbert Gramsbergen
Jan Ashton
Marie-Christine Jacquemot
Sebastian Barzaghi
Imported Ontologies:
literal
region.owl
cpannotationschema.owl
Source:
https://datacite-metadata-schema.readthedocs.io/en/4.7/
See also:
http://www.sparontologies.net/ontologies/datacite
Download serialization:
JSON-LD RDF/XML N-Triples TTL
License:
http://creativecommons.org/licenses/by/4.0/
Cite as:
David Shotton, Silvio Peroni. The DataCite Ontology. Revision: 1.3.1. Retrieved from: http://purl.org/spar/datacite/2026-05-05
Vocabulary maintained at:
https://github.com/SPAROntologies/datacite

Ontology Specification Draft

Abstract

The DataCite Ontology is an ontology written in OWL 2 DL to enable the metadata properties of the [DataCite Metadata Schema (version 4.7)](https://datacite-metadata-schema.readthedocs.io/en/4.7/) to be described in RDF.

Introduction back to ToC

This is a place holder text for the introduction. The introduction should briefly describe the ontology, its motivation, state of the art and goals.

Namespace declarations

Table 1: Namespaces used in the document
co<http://purl.org/co/>
datacite<http://purl.org/spar/datacite/>
dc<http://purl.org/dc/elements/1.1/>
fabio<http://purl.org/spar/fabio/>
literalreification<http://www.essepuntato.it/2010/06/literalreification/>
owl<http://www.w3.org/2002/07/owl#>
rdf<http://www.w3.org/1999/02/22-rdf-syntax-ns#>
rdfs<http://www.w3.org/2000/01/rdf-schema#>
schema<https://schema.org/>
situation<http://www.ontologydesignpatterns.org/cp/owl/situation.owl#>
skos<http://www.w3.org/2004/02/skos/core#>
terms<http://purl.org/dc/terms/>
vann<http://purl.org/vocab/vann/>
xml<http://www.w3.org/XML/1998/namespace>
xsd<http://www.w3.org/2001/XMLSchema#>

The DataCite Ontology: Overview back to ToC

This ontology has the following classes and properties.

Classes

Object Properties

Named Individuals

Description

The DataCite Ontology (or simply DataCite) is an ontology written in OWL 2 DL to enable the metadata properties of the DataCite Metadata Schema (version 4.7) to be described in RDF.

A diagram of the DataCite Ontology.

The main intent of the DataCite Ontology is to provide a flexible mechanism to define identifiers for bibliographic resources (e.g., papers and datasets) and related entities (e.g., authors). To this end, DataCite uses the object property datacite:hasIdentifier, which has as its object a member of the class datacite:Identifier or of one of its sub-classes (datacite:ResourceIdentifier, datacite:AgentIdentifier or datacite:RightsIdentifier). In turn, datacite:AgentIdentifier is further sub-classed by three additional classes, i.e., datacite:PersonalIdentifier, datacite:OrganizationIdentifier, and datacite:FunderIdentifier. The exact nature of the identifier is then defined using the second DataCite object property datacite:usesIdentifierScheme, which has as its object the class datacite:IdentifierScheme or one of its sub-classes: datacite:ResourceIdentifierScheme, datacite:AgentIdentifierScheme or datacite:RightsIdentifierScheme. datacite:AgentIdentifierScheme is further sub-classed by three additional classes, i.e., datacite:PersonalIdentifierScheme, datacite:OrganizationIdentifierScheme, and datacite:FunderIdentifierScheme. This provides a robust method for defining identifiers, since each specific identifier is defined as an individual member of its appropriate identifier scheme class. Of course, existing identifier schemes have been already defined within the ontology. For instance:

As need arises, new identifiers can be added later as new members of each class, without having to modify the structure of the DataCite Ontology. In addition, some members, i.e., datacite:local-resource-identifier-scheme, datacite:local-personal-identifier-scheme, datacite:local-organization-identifier-scheme and datacite:local-funder-identifier-scheme, have been already added to permit the use of local identifiers.

The class datacite:DescriptionType, and the object properties datacite:hasDescription and datacite:hasDescriptionType, have also been defined in order to link an entity to another item representing an entity description of a particular type. This is defined using the property datacite:hasDescriptionType, which must have as its object one of the members of the class datacite:DescriptionType, i.e., datacite:abstract, datacite:methods, datacite:other, datacite:series-information and datacite:table-of-content. In this way, it is possible to associate written documents (e.g. journal articles or data articles) as descriptions of datasets.

It is also possible to provide a link between a resource, such as a dataset, and the document describing its metadata by means of the Citation Typing Ontology (CiTO), using the property cito:citesAsMetadataDocument, and the FRBR-aligned Bibliographic Ontology (FaBiO), by means of the class fabio:MetadataDocument. In addition to these entities, the DataCite Ontology provides appropriate classes (i.e., datacite:MetadataScheme) and properties (i.e., datacite:hasMetadataScheme) to specify the particular scheme followed for creating the resource metadata exemplified in the metadata document.

Finally, with the DataCite Ontology, it is possible to represent situations where a given relation between two entities needs to be qualified in some way, e.g. with a description that specifies the nature of said relation. This is provided by the class datacite:QualifiedRelation, which represents a certain relationship existing between two entities. The qualified relation is linked with one entity (more specifically, the subject of the relation) via the object property datacite:hasRelationSubject, and with the other (the object of the relation) via the object property datacite:hasRelationObject. The type of relation itself is defined via the property datacite:hasRelationCharacterization, which links a qualified relation to its characterization made by using an object property such as dcterms:relation, cito:cites, or frbr:isPartOf. This usage involves OWL2 punning, a mechanism according to which an object property can be used as the object of an OWL assertion by being considered simultaneously both as a normal property and also as a named individual of the class owl:Thing.

Examples of use

In the following subsections, we introduce some examples to showcase how to use the DataCite Ontology.

The prefixes that are used in all the examples provided below are defined as follows:

@prefix : <http://www.sparontologies.net/example/> .
@prefix co: <http://purl.org/co/> .
@prefix datacite: <http://purl.org/spar/datacite/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix literal: <http://www.essepuntato.it/2010/06/literalreification/> .
@prefix orcid: <http://orcid.org/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

Datasets' DOIs and authors' ORCIDs

DataCite allows one to associate identifiers to a bibliographic entity (e.g., a dataset, a person, an article) specifying their exact nature by means of the object property datacite:usesIdentifierScheme. In addition, it is also possible, through the object property datacite:hasDescription, to link an entity to another item representing an entity description of a particular type. This is defined using the property datacite:hasDescriptionType, which must have as its object one of the members of the class datacite:DescriptionType, i.e., datacite:abstract, datacite:other, datacite:series-information, datacite:methods, and datacite:table-of-content. In this way, it is possible to associate written documents (e.g., journal articles) as descriptions of datasets.

<http://dx.doi.org/10.5061/dryad.15v26> a fabio:Dataset ;
    datacite:hasIdentifier :dataset-doi ;
    dcterms:creator
        orcid:0000-0002-5159-9717 ,
        orcid:0000-0002-7811-3617 ;
    datacite:hasDescription
        <http://dx.doi.org/10.1098/rsbl.2015.0486> .

<http://dx.doi.org/10.1098/rsbl.2015.0486>
    a fabio:JournalArticle ;
    datacite:hasIdentifier :paper-doi ;
    dcterms:creator
        orcid:0000-0002-5159-9717 ,
        orcid:0000-0002-7811-3617 ;
    datacite:hasDescriptionType datacite:other .

:paper-doi a datacite:PrimaryResourceIdentifier ;
    literal:hasLiteralValue \"10.1098/rsbl.2015.0486\" ;
    datacite:usesIdentifierScheme datacite:doi .

:dataset-doi a datacite:PrimaryResourceIdentifier ;
    literal:hasLiteralValue \"10.5061/dryad.mq8r2\" ;
    datacite:usesIdentifierScheme datacite:doi .

orcid:0000-0002-5159-9717 a foaf:Person ;
    foaf:name \"Nidhi Seethapathi\" ;
    datacite:hasIdentifier :seethapathi-orcid .

:seethapathi-orcid a datacite:PersonalIdentifier ;
    literal:hasLiteralValue \"0000-0002-5159-9717\" ;
    datacite:usesIdentifierScheme datacite:orcid .

orcid:0000-0002-7811-3617 a foaf:Person ;
    foaf:name \"Manoj Srinivasan\" ;
    datacite:hasIdentifier :srinivasan-orcid .

:srinivasan-orcid a datacite:PersonalIdentifier ;
    literal:hasLiteralValue \"0000-0002-7811-3617\" ;
    datacite:usesIdentifierScheme datacite:orcid .

Competency Questions

The DataCite Ontology can be used for answering several questions related to related to the identification, attribution, and discoverability of research products within a scholarly knowledge graph. In the following subsections, some of them are introduced together with their respective SPARQL queries.

The prefixes that are used in all the SPARQL queries provided below are defined as follows:

PREFIX datacite: <http://purl.org/spar/datacite/>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX fabio: <http://purl.org/spar/fabio/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX literal: <http://www.essepuntato.it/2010/06/literalreification/>

CQ1

Which article provides the description for a specific dataset identified by the DOI \"10.5061/dryad.mq8r2\"?

SELECT ?article ?article_doi
WHERE {
    ?dataset_id literal:hasLiteralValue \"10.5061/dryad.mq8r2\" .
    ?dataset datacite:hasIdentifier ?dataset_id ;
        a fabio:Dataset ;
        datacite:hasDescription ?article .

    ?article datacite:hasIdentifier ?paper_id .
    ?paper_id literal:hasLiteralValue ?article_doi .
}

CQ2

Who are the creators associated with both the dataset and the article?

SELECT DISTINCT ?name ?orcid_uri
WHERE {
    ?dataset a fabio:Dataset ;
            dcterms:creator ?orcid_uri .

    ?article a fabio:JournalArticle ;
            dcterms:creator ?orcid_uri .

    ?orcid_uri foaf:name ?name .
}

CQ3

What are the names and ORCID iDs of all researchers mentioned in the graph?

SELECT ?name ?orcid_value
WHERE {
    ?person a foaf:Person ;
            foaf:name ?name ;
            datacite:hasIdentifier ?id_node .

    ?id_node datacite:usesIdentifierScheme datacite:orcid ;
            literal:hasLiteralValue ?orcid_value .
}

CQ4

List all resources that have a description type categorized as \"other\".

SELECT ?resource
WHERE {
    ?resource datacite:hasDescriptionType datacite:other .
}

CQ5

How many identifiers are registered for each identifier scheme?

SELECT ?scheme (COUNT(?id_node) AS ?count)
WHERE {
    ?id_node datacite:usesIdentifierScheme ?scheme .
}
GROUP BY ?scheme

Cross-reference for The DataCite Ontology classes, object properties and data properties back to ToC

This section provides details for each class and property defined by The DataCite Ontology.

Classes

agent identifierc back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/AgentIdentifier

An identifier that uniquely identities an individual agent.
Is defined by
http://purl.org/spar/datacite/
Example
        :essepuntato a datacite:AgentIdentifier ;
            literal:hasLiteralValue "https://github.com/essepuntato" .
    
has super-classes
identifier c
has sub-classes
funder identifier c, organization identifier c, personal identifier c
is disjoint with
resource identifier c

agent identifier schemec back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/AgentIdentifierScheme

The identifier scheme used to identify an agent.
Is defined by
http://purl.org/spar/datacite/
Example
        :silvio-peroni-id
            datacite:usesIdentifierScheme datacite:github ;
            literal:hasLiteralValue "essepuntato" .
    
has super-classes
identifier scheme c
has sub-classes
funder identifier scheme c, organization identifier scheme c, personal identifier scheme c
has members
github ni, lattes ni, linkedin ni, orcid ni, twitter ni

alternate resource identifierc back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/AlternateResourceIdentifier

An identifier other than a DOI that is used as an alternative identifier to uniquely identify a resource that is the subject of the DataCite metadata record.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource
            datacite:hasIdentifier :my-resource-alt .
        :my-resource-alt a datacite:AlternateResourceIdentifier ;
            literal:hasLiteralValue "19381256" .
    
has super-classes
resource identifier c
is disjoint with
primary resource identifier c

description typec back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/DescriptionType

This class permits classification of the type of description given to a resource described by the DataCite Metadata schema.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource-additional-info
            datacite:hasDescriptionType datacite:abstract .
    
has super-classes
Concept c
is in range of
has description type op
has members
abstract ni, methods ni, other ni, series information ni, table of content ni

funder identifierc back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/FunderIdentifier

An identifier that uniquely identities a funding agency.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-funder-id a datacite:FunderIdentifier ;
            literal:hasLiteralValue "" .
    
has super-classes
agent identifier c
is disjoint with
personal identifier c, resource identifier c

funder identifier schemec back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/FunderIdentifierScheme

The identifier scheme used to identify a funding agency.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-funder-id 
            datacite:usesIdentifierScheme datacite:fundref .
    
has super-classes
agent identifier scheme c
has members
fundref ni, local funder identifier scheme ni

identifierc back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/Identifier

An identifier that uniquely identities an entity, such as a funding agency, a person or a resource.
Is defined by
http://purl.org/spar/datacite/
has super-classes
Literal c
has sub-classes
agent identifier c, resource identifier c, rights identifier c
is in domain of
uses identifier scheme op
is in range of
has identifier op

identifier schemec back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/IdentifierScheme

The identifier scheme used to identify an entity such as a funding agency, a person or a resource.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-object-id ;
            datacite:usesIdentifierScheme datacite:wikidata ;
            literal:hasLiteralValue "Q113333457" .
    
has sub-classes
agent identifier scheme c, resource identifier scheme c, rights identifier scheme c
is in range of
uses identifier scheme op
has members
OpenAlex ID ni, SciGraph ID ni, gnd ni, ivoid ni, loc ni, omid ni, spase ni, w3id ni, wikidata ni

metadata schemec back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/MetadataScheme

The class that describe metadata schemes used for creating a metadata document referring to a certain resource.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource
            cito:citesAsMetadataDocument :my-resource-metadata .
        :my-resource-metadata a fabio:MetadataDocument ;
            datacite:usesMetadataScheme datacite:spar .
    
is in range of
uses metadata scheme op
has members
SPAR Ontologies ni

organization identifierc back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/OrganizationIdentifier

An identifier that uniquely identities an individual organization.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-organization-id a datacite:OrganizationIdentifier ;
            literal:hasLiteralValue "00wb4mk85" .
    
has super-classes
agent identifier c

organization identifier schemec back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/OrganizationIdentifierScheme

The identifier scheme used to identify an organization.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-organization-id a datacite:OrganizationIdentifier ;
            datacite:usesIdentifierScheme datacite:ror .
    
has super-classes
agent identifier scheme c
has members
crossref ni, isni ni, local organization identifier scheme ni, ror ni

personal identifierc back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/PersonalIdentifier

An identifier that uniquely identifies an individual person.
Is defined by
http://purl.org/spar/datacite/
Example
        :david-shotton
            datacite:hasIdentifier :david-shotton-id .
        :david-shotton-id a datacite:PersonalIdentifier ;
            literal:hasLiteralValue "0000-0001-5506-523X" .
    
has super-classes
agent identifier c
is disjoint with
funder identifier c, resource identifier c

personal identifier schemec back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/PersonalIdentifierScheme

The identifier scheme used to identify a person.
Is defined by
http://purl.org/spar/datacite/
Example
        :david-shotton-id
            datacite:usesIdentifierScheme datacite:orcid .
    
has super-classes
agent identifier scheme c
has members
GitLab user account ni, acm ni, dblp ni, dia ni, gepris ni, google scholar ni, ieee ni, isni ni, jst ni, local personal identifier scheme ni, math genealogy ni, national insurance number ni, nii ni, openid ni, repec ni, research gate ni, researcherid ni, social security number ni, viaf ni, zbmath ni

primary resource identifierc back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/PrimaryResourceIdentifier

An identifier that is used as the primary identifier to uniquely identifies the primary resource that is the subject of the DataCite metadata record.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource-id a datacite:PrimaryResourceIdentifier ;
            literal:hasLiteralValue "10.1371/journal.pntd.0000228.g002.x001" ;
            datacite:usesIdentifierScheme datacite:doi .
    
has super-classes
resource identifier c
is disjoint with
alternate resource identifier c

qualified relationc back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/QualifiedRelation

A class representing a reified relation between two resources, allowing the assignment of a specific role or type to the connection.
Is defined by
http://purl.org/spar/datacite/
Example
        :relation-dataset-article a datacite:QualifiedRelation ;
            datacite:hasRelationSubject :my-resource ;
            datacite:hasRelationObject :my-article ;
            datacite:hasRelationCharacterization cito:isCitedBy .
    
is equivalent to
Situation c and (has relation characterization op exactly 1) and (has relation object op exactly 1) and (has relation subject op exactly 1)
is in domain of
has relation characterization op, has relation object op, has relation subject op

resource identifierc back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/ResourceIdentifier

An identifier that is used to uniquely identify a resource.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource-id a datacite:ResourceIdentifier ;
            literal:hasLiteralValue "10.3457/1098.a45" .
    
has super-classes
identifier c
has sub-classes
alternate resource identifier c, primary resource identifier c
has members
opendoar ni
is disjoint with
agent identifier c, funder identifier c, personal identifier c

resource identifier schemec back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/ResourceIdentifierScheme

The identifier scheme used to identify a resource.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource-pri
            datacite:usesIdentifierScheme datacite:doi .
    
has super-classes
identifier scheme c
has members
ark ni, arxiv ni, bibcode ni, cstr ni, dblp record ni, dnb ni, doi ni, ean13 ni, eissn ni, handle ni, igsn ni, infouri ni, isbn ni, issn ni, istc ni, lissn ni, local resource identifier scheme ni, lsid ni, nihmsid ni, oci ni, oclc ni, pii ni, pmcid ni, pmid ni, purl ni, rrid ni, sici ni, spdx ni, upc ni, uri ni, url ni, urn ni, wikipedia ni

rights identifierc back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/RightsIdentifier

An identifier that uniquely identifies a license.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource-rights
            datacite:hasIdentifier :my-resource-rights-id .
        :my-resource-rights-id a datacite:RightsIdentifier ;
            literal:hasLiteralValue "CC-BY-1.0" .
    
has super-classes
identifier c

rights identifier schemec back to ToC or Class ToC

IRI: http://purl.org/spar/datacite/RightsIdentifierScheme

The identifier scheme used to identify a license.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource-rights-id a datacite:RightsIdentifier ;
            datacite:usesIdentifierScheme datacite:spdx ;
            literal:hasLiteralValue "CC-BY-1.0" .
    
has super-classes
identifier scheme c

Object Properties

has creator listop back to ToC or Object Property ToC

IRI: http://purl.org/spar/datacite/hasCreatorList

This property allows one to specify the list of the creators of a certain resource.
has domain
has identifier op some resource identifier c
has range
List c

has descriptionop back to ToC or Object Property ToC

IRI: http://purl.org/spar/datacite/hasDescription

An object property permitting specification of an entity used to describe a resource.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource
            datacite:hasDescription :my-resource-additional-info .
        :my-resource-additional-info
            literal:hasLiteralValue "A textual description" .
    
has domain
has identifier op some resource identifier c
has range
has description type op exactly 1

has description typeop back to ToC or Object Property ToC

IRI: http://purl.org/spar/datacite/hasDescriptionType

An object property permitting specification of the type of description used to describe a resource.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource-additional-info
            datacite:hasDescriptionType datacite:abstract .
    
has super-properties
type op
has domain
inverse has description op only has identifier op some resource identifier c
has range
description type c

has general resource typeop back to ToC or Object Property ToC

IRI: http://purl.org/spar/datacite/hasGeneralResourceType

An object property permitting specification of the general type of a resource, defined from the DataCite controlled list.
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource
            datacite:hasGeneralResourceType dcmitype:Dataset .
    
has super-properties
type op
has domain
has identifier op some resource identifier c
has range
Concept c

has identifierop back to ToC or Object Property ToC

IRI: http://purl.org/spar/datacite/hasIdentifier

An object property specifying a datacite:Identifier that provides a unique identifier for the entity (either a funder, a person or a resource).
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource
            datacite:hasIdentifier :my-resource-pri .
    

has characteristics: inverse functional

has range
identifier c

has relation characterizationop back to ToC or Object Property ToC

IRI: http://purl.org/spar/datacite/hasRelationCharacterization

An object property defining the specific nature or type of the reified relation.
Is defined by
http://purl.org/spar/datacite/
Example
        :relation-dataset-article a datacite:QualifiedRelation ;
            datacite:hasRelationCharacterization cito:isCitedBy .
    
has super-properties
is Setting For op
has domain
qualified relation c

has relation objectop back to ToC or Object Property ToC

IRI: http://purl.org/spar/datacite/hasRelationObject

An object property linking a reified relation to its object resource.
Is defined by
http://purl.org/spar/datacite/
Example
        :relation-dataset-article a datacite:QualifiedRelation ;
            datacite:hasRelationObject :my-article .
    
has super-properties
is Setting For op
has domain
qualified relation c

has relation subjectop back to ToC or Object Property ToC

IRI: http://purl.org/spar/datacite/hasRelationSubject

An object property linking a reified relation to its subject resource.
Is defined by
http://purl.org/spar/datacite/
Example
        :relation-dataset-article a datacite:QualifiedRelation ;
            datacite:hasRelationSubject :my-resource .
    
has super-properties
is Setting For op
has domain
qualified relation c

uses identifier schemeop back to ToC or Object Property ToC

IRI: http://purl.org/spar/datacite/usesIdentifierScheme

An object property permitting specification of the identifier scheme used to provide the identifier for an entity (either a funder, a person or a resource).
Is defined by
http://purl.org/spar/datacite/
Example
        :my-resource-id
            datacite:usesIdentifierScheme datacite:doi .
    
has domain
identifier c
has range
identifier scheme c

uses metadata schemeop back to ToC or Object Property ToC

IRI: http://purl.org/spar/datacite/usesMetadataScheme

The link between a metadata document and the scheme followed for creating metadata.
Is defined by
http://purl.org/spar/datacite/
Example
        :related-document a fabio:MetadataDocument ;
            datacite:usesMetadataScheme datacite:spar .
    
has range
metadata scheme c

Named Individuals

abstractni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/abstract

A brief summary of a textual work, appearing at the beginning of the work and designed to act as the point-of-entry that will help the reader quickly to obtain an overview of the work's contents.
Is defined by
http://purl.org/spar/datacite/
belongs to
description type c
has facts
example ap " :my-resource-additional-info datacite:hasDescriptionType datacite:abstract . "

acmni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/acm

An ACM Digital Library author ID is a unique identifier found within an ACM Author Profile Page, which consolidates an researcher's publications, citations, and metadata.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp https://dl.acm.org/
example ap " :silvio-peroni-id datacite:usesIdentifierScheme datacite:acm ; literal:hasLiteralValue "81442604750" . "
scope Note ap "The ACM Digital Library author ID is resolvable using the following URL: https://dl.acm.org/profile/<identifier>."@en

arkni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/ark

An Archival Resource Key (ARK) is a multi-purpose URL suited to being a persistent identifier for information objects of any type.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp https://confluence.ucop.edu/display/Curation/ARK
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:ark ; literal:hasLiteralValue "ark:53355/cl010066723" . "

arxivni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/arxiv

The ArXiv ID is a unique identifier for ArXiv (http://arxiv.org/), a open access repository of preprints.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://arxiv.org/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:arxiv ; literal:hasLiteralValue "2505.13276" . "
scope Note ap "An ArXiv ID is resolvable using the following URL: https://arxiv.org/abs/<identifier>."

bibcodeni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/bibcode

The Bibliographic Code (BIBCODE) is a 19 ASCII characters identifier which describes a journal article.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp https://adsabs.harvard.edu/abs_doc/help_pages/data.html
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:bibcode ; literal:hasLiteralValue "1974AJ.....79..819H" . "
scope Note ap " The format was originally adopted by the SIMBAD and NED projects, and follows the syntax "YYYYJJJJJVVVVMPPPPA", where: * YYYY: Year of publication; * JJJJJ: A standard abbreviation for the journal (e.g. ApJ, AJ, MNRAS, Sci, PASP, etc.). A list of abbreviations is available; * VVVV: The volume number (for a serial) or an abbreviation that specifies what type of publication it is (e.g. conf for conference proceedings, meet for Meeting proceedings, book for a book, coll for colloquium proceedings, proc for any other type of proceedings); * M: Qualifier for publication; * E: Electronic Abstract (usually a counter, not a page number); * L: Letter; * P: Pink page; * Q-Z: Unduplicating character for identical codes; * PPPP: Page number. Note that for page numbers greater than 9999, the page number is continued in the m column; * A: The first letter of the last name of the first author. "@en

crossrefni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/crossref

The Crossref member identifier is a unique numerical ID automatically assigned to each organization when they join Crossref to manage their account and content registration.
Is defined by
http://purl.org/spar/datacite/
belongs to
organization identifier scheme c
has facts
has U R L dp https://crossref.org/
example ap " :my-organization-id datacite:usesIdentifierScheme datacite:crossref ; literal:hasLiteralValue "20280" . "
scope Note ap "A Crossref member identifier is resolvable from the following URL: https://api.crossref.org/members/<identifier>."@en

cstrni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/cstr

The Common Science and Technology Resources (CSTR) Identifier is an identifier based on the Chinese National Standard GB/T 32843—2016 “Science and technology resource identification”, providing a unique identification service for scientific data, papers, scientific institutions, researchers, scientific instruments, patents and other scientific and technological resources.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp https://www.cstr.cn/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:cstr ; literal:hasLiteralValue "31253.11.sciencedb.j00001.00123" . "
scope Note ap "A Common Science and Technology Resources Identifier is resolvable from the following URL: https://www.cstr.cn/<identifier>."@en

dblpni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/dblp

The DBLP author identifier is a unique key assigned to each researcher registered on DBLP.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp https://dblp.org
example ap " :silvio-peroni-id datacite:usesIdentifierScheme datacite:dblp ; literal:hasLiteralValue "48/1099" . "
scope Note ap "A DBLP author identifier is resolvable from the following URL: https://dblp.org/pid/<identifier>."@en

dblp recordni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/dblp-record

The DBLP publication identifier is a unique key that identifies a specific publication record, conference, or journal registered on DBLP.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp https://dblp.org/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:dblp-record ; literal:hasLiteralValue "conf/semweb/BarzaghiHMP24" . "
scope Note ap "A DBLP publication identifier is resolvable from the following URL: https://dblp.org/rec/<identifier>."@en

diani back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/dia

The Digital Author Identification system assigns a unique number to all authors in the Netherlands research system.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp http://www.surf.nl/en/themas/openonderzoek/infrastructuur/Pages/digitalauthoridentifierdai.aspx

dnbni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/dnb

The Deutsche Nationalbibliothek (DNB) catalogue number is a unique identifier assigned to every entry in the DNB catalogue.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp https://d-nb.info/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:dnb ; literal:hasLiteralValue "gnd/7749153-1" . "
scope Note ap "A DNB catalogue number is resolvable from the following URL: https://d-nb.info/<identifier>."@en

doini back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/doi

The Digital Object Identifier (DOI) is a unique identifier assigned to identify digital objects.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://www.doi.org/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:doi ; literal:hasLiteralValue "10.1007/978-3-031-77847-6_11" . "
scope Note ap "A DOI is resolvable from the following URL: http://www.doi.org/<identifier>."@en

ean13ni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/ean13

The International Article Number is a unique 13-digit barcode standard used worldwide to identify retail products.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://www.gs1.org/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:ean13 ; literal:hasLiteralValue "4003994155486" . "

eissnni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/eissn

The Electronic International Standard Serial Number (eISSN) is an eight-digit identifier specifically for electronic versions of serials, such as online journals, databases, or websites.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://www.issn.org/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:eissn ; literal:hasLiteralValue "1460-2105" . "

fundrefni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/fundref

The FundRef identifier is a unique code assigned by Fundref, a collaborative pilot project of scholarly publishers and funding agencies, facilitated by CrossRef, to provide a standard way of identifying and reporting funding sources for published scholarly research.
Is defined by
http://purl.org/spar/datacite/
belongs to
funder identifier scheme c
has facts
has U R L dp http://www.crossref.org/fundref/index.html
example ap " :my-funder-id datacite:usesIdentifierScheme datacite:fundref ; literal:hasLiteralValue "501100000831" . "

geprisni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/gepris

The GEPRIS person identifier is a unique, numerical identifier assigned to researchers and investigators in the GEPRIS database.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp http://gepris.dfg.de
example ap " :david-aitken-id datacite:usesIdentifierScheme datacite:gepris ; literal:hasLiteralValue "209346727" . "
scope Note ap "A GEPRIS person identifier is resolvable from the following URL: http://gepris.dfg.de/gepris/person/<identifier>."@en

githubni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/github

The GitHub username is a unique identifier assigned to GitHub users.
Is defined by
http://purl.org/spar/datacite/
belongs to
agent identifier scheme c
has facts
has U R L dp https://github.com/
example ap " :silvio-peroni-id datacite:usesIdentifierScheme datacite:github ; literal:hasLiteralValue "essepuntato" . "
scope Note ap "A GitHub username is resolvable from the following URL: https://github.com/<identifier>."@en

GitLab user accountni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/gitlab

The GitLab user account is a unique identifier assigned to GitLab users.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp https://docs.gitlab.com/ee/user/profile/
example ap " :my-person-id datacite:usesIdentifierScheme datacite:gitlab ; literal:hasLiteralValue "gitlab-org" . "
scope Note ap "A GitLab user account is resolvable from the following URL: https://gitlab.com/<identifier>."@en

gndni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/gnd

The Gemeinsame Normdatei (GND) identifier is a unique key assigned to authority data managed by the German National Library.
Is defined by
http://purl.org/spar/datacite/
belongs to
identifier scheme c
has facts
has U R L dp https://gnd.network/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:gnd ; literal:hasLiteralValue "7749153-1" . "
scope Note ap "A Gemeinsame Normdatei identifier is resolvable from the following URL: https://d-nb.info/gnd/<identifier>."@en

google scholarni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/google-scholar

The Google Scholar author identifier is a unique identifier assigned to authors signed to Google Scholar.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp https://scholar.google.com/
example ap " :david-shotton-id datacite:usesIdentifierScheme datacite:google-scholar ; literal:hasLiteralValue "YyvE-_oAAAAJ" . "
scope Note ap "A Google Scholar author identifier is resolvable from the following URL: https://scholar.google.com/citations?user=<identifier>."@en

handleni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/handle

The Handle System is a distributed computing technology that provides unique, persistent identifiers (handles) for digital resources, allowing them to be located over time regardless of URL changes.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://www.handle.net/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:handle ; literal:hasLiteralValue "20.1000/100" . "

ieeeni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/ieee

The IEEE Xplore author ID is a unique identifier assigned to authors in IEEE Xplore.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp https://ieeexplore.ieee.org/
example ap " :silvio-peroni-id datacite:usesIdentifierScheme datacite:ieee ; literal:hasLiteralValue "37542690500" . "
scope Note ap "A IEEE Xplore author ID is resolvable from the following URL: https://ieeexplore.ieee.org/author/<identifier>."@en

igsnni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/igsn

The International Generic Sample Number (IGSN) is a code that uniquely identifies samples from our natural environment and related features-of-interest.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://igsn.org/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:igsn ; literal:hasLiteralValue "AU124" . "

infourini back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/infouri

The Info URI scheme is a standardized method for identifying information assets that have public identifiers (like ISBNs, DOIs, or LCCNs) but lack a native URI representation.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://info-uri.info/registry/docs/misc/faq.html
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:isbn ; literal:hasLiteralValue "info:ddc/22/eng//004.678" . "

isbnni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/isbn

The International Standard Book Number (ISBN) is a unique 13-digit commercial identifier for books and monographic publications.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://www.isbn-international.org/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:isbn ; literal:hasLiteralValue "978-81-7525-766-5" . "

isnini back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/isni

The International Standard Name Identifier (ISNI) is an identifier system for uniquely identifying the public identities of contributors to media content.
Is defined by
http://purl.org/spar/datacite/
belongs to
organization identifier scheme c
personal identifier scheme c
has facts
has U R L dp http://www.isni.org/
example ap " :david-shotton-id datacite:usesIdentifierScheme datacite:isni ; literal:hasLiteralValue "0000000117402098" . "
scope Note ap "An ISNI is resolvable from the following URL: http://www.isni.org/<identifier>."@en

issnni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/issn

The International Standard Serial Number (ISSN) is an eight-digit code to uniquely identify a periodical publication, such as a magazine.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://www.issn.org/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:issn ; literal:hasLiteralValue "2049-3630" . "

istcni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/istc

The International Standard Text Code (ISTC) is a standard designed to uniquely identify textual works.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://www.istc-international.org/html/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:istc ; literal:hasLiteralValue "A02-2009-000004BE-A" . "

ivoidni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/ivoid

The IVOA identifier (IVOID) is the identifier of resources within the resource registry (datasets, data access services, etc.) maintained by the International Virtual Observatory Alliance (IVOA).
Is defined by
http://purl.org/spar/datacite/
belongs to
identifier scheme c
has facts
has U R L dp https://www.ivoa.net/documents/IVOAIdentifiers/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:ivoid ; literal:hasLiteralValue "ivo://org.gavo.dc/~?flashheros/data/ca92/f0065.mt." . "
scope Note ap "These identifiers are RFC 3986-compliant URIs with a scheme of ivo. Thus, their generic form is: ivo://<authority><path>?<query>#<fragment>."@en

jstni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/jst

The Japanese Science and Technology Agency (JST) identifier is a unique code assigned to scientific research products by the Japan Science and Technology Agency.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
example ap " :my-person-id datacite:usesIdentifierScheme datacite:jst ; literal:hasLiteralValue "200901000000000000" . "

lattesni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/lattes

The Lattes Platform number is an identifier for a Lattes Platform entry related to a person or group.
Is defined by
http://purl.org/spar/datacite/
belongs to
agent identifier scheme c
has facts
has U R L dp https://lattes.cnpq.br/
example ap " :marcos-bagno-id datacite:usesIdentifierScheme datacite:lattes ; literal:hasLiteralValue "9975840620597737" . "
scope Note ap "A Lattes Platform number is resolvable from the following URL: http://lattes.cnpq.br/<identifier>."@en

linkedinni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/linkedin

The LinkedIn personal profile identifier is an unique identifier assigned to a LinkedIn user.
Is defined by
http://purl.org/spar/datacite/
belongs to
agent identifier scheme c
has facts
has U R L dp https://www.linkedin.com/
example ap " :silvio-peroni-id datacite:usesIdentifierScheme datacite:linkedin ; literal:hasLiteralValue "essepuntato" . "
scope Note ap "A LinkedIn personal profile identifier is resolvable from the following URL: https://www.linkedin.com/in/<identifier>."@en

lissnni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/lissn

The Linking International Standard Serial Number (LISSN) is an identifier that connects different media versions of the same serial publication.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://www.issn.org/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:lissn ; literal:hasLiteralValue "1748-7188" . "

locni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/loc

The Library of Congress (LoC) authority identifier is a unique identifier used for authority control in the Library of Congress.
Is defined by
http://purl.org/spar/datacite/
belongs to
identifier scheme c
has facts
has U R L dp https://id.loc.gov/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:loc ; literal:hasLiteralValue "sh2010112128" . "
scope Note ap "A Library of Congress authority identifier is resolvable from the following URL: https://id.loc.gov/authorities/<identifier>."@en

local funder identifier schemeni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/local-funder-identifier-scheme

A funder identifier scheme that provides local funder identifiers that are unique in their local environment and understood by the person submitting the metadata.
belongs to
funder identifier scheme c

local organization identifier schemeni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/local-organization-identifier-scheme

An organization identifier scheme that provides local organization identifiers that are unique in their local environment and understood by the person submitting the metadata.
belongs to
organization identifier scheme c

local personal identifier schemeni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/local-personal-identifier-scheme

A personal identifier scheme that provides local personal identifiers that are unique in their local environment and understood by the person submitting the metadata.
belongs to
personal identifier scheme c

local resource identifier schemeni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/local-resource-identifier-scheme

A resource identifier scheme that provides local resource identifiers that are unique in their local environment and understood by the person submitting the metadata.
belongs to
resource identifier scheme c

lsidni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/lsid

The Life Science Identifier (LSID) is a unique identifier used for uniquely naming significant resources in the biology domain.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://www.ibm.com/developerworks/opensource/library/os-lsidbp/
example ap " :gustav-dirichlet-id datacite:usesIdentifierScheme datacite:math-genealogy ; literal:hasLiteralValue "17946" . "

math genealogyni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/math-genealogy

The Mathematics Genealogy Project identifier is an identifier for mathematicians and computer scientists at the Mathematics Genealogy Project.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp https://mathgenealogy.org/
example ap " :gustav-dirichlet-id datacite:usesIdentifierScheme datacite:math-genealogy ; literal:hasLiteralValue "17946" . "
scope Note ap "A Mathematics Genealogy Project identifier is resolvable from the following URL: https://mathgenealogy.org/id.php?id=<identifier>."@en

methodsni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/methods

A description in a research paper documenting the specialized methods used in the work described.
Is defined by
http://purl.org/spar/datacite/
belongs to
description type c
has facts
example ap " :my-resource-additional-info datacite:hasDescriptionType datacite:methods . "

national insurance numberni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/national-insurance-number

The United Kingdom National Insurance Number is a code used to uniquely identify in the tax system, banking, social welfare, online government services and electoral registration.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
example ap " :my-person-id datacite:usesIdentifierScheme datacite:national-insurance-number ; literal:hasLiteralValue "QQ123456C" . "

nihmsidni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/nihmsid

The NIH Manuscript Submission Identifier (NIHMSID) is a preliminary article identifier that applies only to manuscripts deposited through the NIHMS system.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://nexus.od.nih.gov/all/2009/09/01/nih-public-access-update-clarifying-use-of-the-nih-manuscript-submission-id-nihmsid/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:nihmsid ; literal:hasLiteralValue "NIHMS44135" . "

niini back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/nii

The National Individual Identifier (NII) is a unique number assigned to citizens, residents and visitors for tracking and verification purposes.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
example ap " :shizumu-nomura-id datacite:usesIdentifierScheme datacite:nii ; literal:hasLiteralValue "9000363887724" . "

ocini back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/oci

The Open Citation Identifier (OCI) is a persistent identifier for bibliographic citations, created and maintained by OpenCitations (http://opencitations.net).
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp https://registry.identifiers.org/registry/oci
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:oci ; literal:hasLiteralValue "06101801781-06180334099" . "

oclcni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/oclc

The OCLC control number is a unique identifier assigned by OCLC to each bibliographic record input into WorldCat.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp https://www.worldcat.org/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:oclc ; literal:hasLiteralValue "1587443818" . "
scope Note ap "An OCLC control number is resolvable from the following URL: https://www.worldcat.org/oclc/<identifier>."@en

omidni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/omid

The OpenCitations Meta Identifier (OMID) is a persistent identifier for bibliographic resources, created and maintained by OpenCitations (http://opencitations.net).
Is defined by
http://purl.org/spar/datacite/
belongs to
identifier scheme c
has facts
has U R L dp https://registry.identifiers.org/registry/omid
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:omid ; literal:hasLiteralValue "br/06101801781" . "
scope Note ap "The OMID is structured as follows: [[entity_type_abbreviation]]/[[supplier_prefix]][[sequential_number]] (e.g. "br/0601", where "br" is the entity type, "060" is the supplier prefix, and "1" is the sequential number)."@en

OpenAlex IDni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/openalex

The OpenAlex ID is a unique identifier assigned to each entity included in OpenAlex.
Is defined by
http://purl.org/spar/datacite/
belongs to
identifier scheme c
has facts
has U R L dp https://docs.openalex.org/about-the-data
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:openalex ; literal:hasLiteralValue "w1995055324" . "
scope Note ap "An OpenAlex ID has two parts. The first part is the base, that is always https://openalex.org/. The second part is the key, i.e. the unique primary key that identifies a given resource in our database. The key starts with a letter that tells us the kind of entity: W(ork), A(uthor), V(enue), I(nstitution), or C(oncept). In addition, the IDs are not case-sensitive, so w2741809807 is just as valid as W2741809807."@en

opendoarni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/opendoar

The Directory of Open Access Repositories (OpenDOAR) is a service that lists open access repositories, and uses numerical internal identifiers to store their record.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier c
has facts
has U R L dp https://opendoar.ac.uk/

openidni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/openid

OpenID is an open standard that describes how users can be authenticated in a decentralized manner, eliminating the need for centralized registration services.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp http://openid.net/foundation/

orcidni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/orcid

The Open Researcher and Contributor Identifier (ORCID) is a unique identifier for individuals to use as they engage in research, scholarship, and innovation activities.
Is defined by
http://purl.org/spar/datacite/
belongs to
agent identifier scheme c
has facts
has U R L dp http://orcid.org/
example ap " :david-shotton-id datacite:usesIdentifierScheme datacite:orcid ; literal:hasLiteralValue "0000-0001-5506-523X" . "
scope Note ap "An ORCID is resolvable from the following URL: http://orcid.org/<identifier>."@en

otherni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/other

A catch-all description type required by the DataCite Metadata Schema to characterize description types that are not abstracts, series information or tables of content.
Is defined by
http://purl.org/spar/datacite/
belongs to
description type c
has facts
example ap " :my-resource-additional-info datacite:hasDescriptionType datacite:other . "

piini back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/pii

The Publisher Item Identifier is a unique identifier used by several scientific journal publishers to identify documents.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:pii ; literal:hasLiteralValue "S0960-894X(96)00515-X" . "

pmcidni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/pmcid

The PubMed Central Identifier (PMCID) is a bibliographic identifier for the PubMed Central database.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://www.ncbi.nlm.nih.gov/pmc/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:pmcid ; literal:hasLiteralValue "PMC6513384" . "

pmidni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/pmid

The PubMed Identifier (PMID) is a bibliographic identifier for the PubMed database.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://www.ncbi.nlm.nih.gov/pubmed/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:pmid ; literal:hasLiteralValue "29943802" . "

purlni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/purl

The Persistent Uniform Resource Locator (PURL) is a URL that is used to redirect to the location of a requested web resource.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://purl.org/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:purl ; literal:hasLiteralValue "http://purl.org/spar/cito" . "

repecni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/repec

The RePEc Short identifier is a unique, permanent identifier for researchers registered in the RePEc Author Service.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp https://authors.repec.org/
example ap " :andrei-shleifer-id datacite:usesIdentifierScheme datacite:repec ; literal:hasLiteralValue "psh93" . "
scope Note ap "A RePEc Short Identifier is resolvable from the following URL: https://authors.repec.org/pro/<identifier>."@en

research gateni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/research-gate

The ResearchGate profile identifier is a unique code for researchers registered in the ResearchGate platform.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp https://www.researchgate.net
example ap " :david-shotton-id datacite:usesIdentifierScheme datacite:research-gate ; literal:hasLiteralValue "David-Shotton-2" . "
scope Note ap "A ResearchGate profile identifier is resolvable from the following URL: https://www.researchgate.net/profile/<identifier>."@en

researcheridni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/researcherid

The ResearcherID is an identifying system for scientific authors created and owned by Thomson Reuters.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp http://www.researcherid.com/
example ap " :david-shotton-id datacite:usesIdentifierScheme datacite:researcherid ; literal:hasLiteralValue "DXS-2121-2022" . "

rorni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/ror

The Research Organization Registry (ROR) Community identifier is a unique code assigned to research organizations.
Is defined by
http://purl.org/spar/datacite/
belongs to
organization identifier scheme c
has facts
has U R L dp https://ror.org/
example ap " :my-organization-id datacite:usesIdentifierScheme datacite:ror ; literal:hasLiteralValue "00wb4mk85" . "
scope Note ap "A ROR identifier is resolvable from the following URL: https://ror.org/<identifier>."@en

rridni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/rrid

The Research Resource IDentifier (RRID) is a character string used to uniquely identify key inputs to an experiment including the so-called “key biological resources” as defined by the National Institutes of Health, and related tools such as core facilities and databases.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp https://scicrunch.org/resolver
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:rrid ; literal:hasLiteralValue "RRID:AB_262044" . "
scope Note ap "An RRID name is divided into two parts, the authority and a local identifier, separated by an underscore."@en

SciGraph IDni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/scigraph

The SciGraph ID is an unique identifier used for referring to entities in the Springer Nature SciGraph dataset.
Is defined by
http://purl.org/spar/datacite/
belongs to
identifier scheme c
has facts
has U R L dp https://scigraph.springernature.com/explorer/datasets/data_at_a_glance/
example ap " :my-object-id datacite:usesIdentifierScheme datacite:scigraph ; literal:hasLiteralValue "013217540103.39" . "

series informationni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/series-information

Used to charactierize a description of a resource that is part of a series.
Is defined by
http://purl.org/spar/datacite/
belongs to
description type c
has facts
example ap " :my-resource-additional-info datacite:hasDescriptionType datacite:series-information . "

sicini back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/sici

The Serial Item and Contribution Identifier (SICI) is a code used to uniquely identify specific volumes, articles or other identifiable parts of a serial.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://en.wikipedia.org/wiki/Serial_Item_and_Contribution_Identifier
example ap " :my-object-id datacite:usesIdentifierScheme datacite:sici ; literal:hasLiteralValue "0002-8231(199412)45:10<737:TIODIM>2.3.TX;2-M" . "

social security numberni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/social-security-number

The United States of America social security number is a nine-digit number issued to U.S. residents.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
example ap " :my-person-id datacite:usesIdentifierScheme datacite:sici ; literal:hasLiteralValue "999-00-9999" . "

SPAR Ontologiesni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/spar

The Semantic Publishing and Referencing Ontologies, a.k.a. SPAR Ontologies, form a suite of orthogonal and complementary OWL 2 DL ontology modules for the creation of comprehensive machine-readable RDF metadata for every aspect of semantic publishing and referencing: document description, bibliographic resource identifiers, types of citations and related contexts, bibliographic references, document parts and status, agents' roles and contributions, bibliometric data and workflow processes.
Is defined by
http://purl.org/spar/datacite/
belongs to
metadata scheme c
has facts
has U R L dp http://www.sparontologies.net
example ap " :related-document a fabio:MetadataDocument ; datacite:usesMetadataScheme datacite:spar . "

spaseni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/spase

The SPASE resource identifier is the identifier of resources included in the resource registry (datasets, instruments, observatories, etc) maintained by the Space Physics Archive Search and Extract (SPASE) group.
Is defined by
http://purl.org/spar/datacite/
belongs to
identifier scheme c
has facts
has U R L dp https://spase-group.org/services/
example ap " :my-object-id datacite:usesIdentifierScheme datacite:spase ; literal:hasLiteralValue "spase://Example/NumericalData/MagProbe-1/Mag/PT1D" . "
scope Note ap "Such identifiers are RFC 3986-compliant URIs with a scheme of spase, and only implementing the authority and path parts of the specification. Thus, their generic form is: spase://<authority><path>."@en

spdxni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/spdx

The SPDX License List is a list of commonly found licenses and exceptions used in free and open source and other collaborative software or documentation.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp https://spdx.org/licenses/
example ap " :my-resource-rights-id datacite:usesIdentifierScheme datacite:spdx ; literal:hasLiteralValue "CC-BY-1.0" . "
scope Note ap "A SPDX identifier is resolvable from the following URL: https://spdx.org/licenses/<identifier>."@en

table of contentni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/table-of-content

A table of content giving information about the content of a resource, appearing before the body text. Where the resource is a journal or magazine issue, the table of content lists the constituent items contained in that issue, typically by title, authors and first page number.
Is defined by
http://purl.org/spar/datacite/
belongs to
description type c
has facts
example ap " :my-resource-additional-info datacite:hasDescriptionType datacite:table-of-content . "

twitterni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/twitter

A Twitter handle is the unique identifier assigned to Twitter users.
Is defined by
http://purl.org/spar/datacite/
belongs to
agent identifier scheme c
has facts
has U R L dp https://twitter.com/
example ap " :silvio-peroni-id ; datacite:usesIdentifierScheme datacite:twitter ; literal:hasLiteralValue "@essepuntato" . "
scope Note ap "A Twitter handle is resolvable from the following URL: https://twitter.com/<identifier>."@en

upcni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/upc

The Universal Product Code (UPC) is a unique number used to identify products and their manufacturers.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c

urini back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/uri

The Uniform Resource Identifier (URI) is a unique identifier for abstract or physical resources.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://tools.ietf.org/html/rfc3986
example ap " :fabio-id ; datacite:usesIdentifierScheme datacite:uri ; literal:hasLiteralValue "http://purl.org/spar/fabio" . "

urlni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/url

The Uniform Resource Locator (URL) is a unique identifier for a resource retrievable on the World Wide Web.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
example ap " :my-resource-id ; datacite:usesIdentifierScheme datacite:url ; literal:hasLiteralValue "https://www.sparontologies.net/" . "

urnni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/urn

The Uniform Resource Name (URN) is a unique identifier for a resource, following the URN scheme.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp http://datatracker.ietf.org/wg/urn/charter/
example ap " :my-resource-id ; datacite:usesIdentifierScheme datacite:urn ; literal:hasLiteralValue "urn:isbn:9780141036144" . "

viafni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/viaf

The Virtual International Authority File (VIAF) is an international authority file created by amalagamating the national authority files of several national libraries and operated by the Online Computer Library Center (OCLC). It contains information about many topics including personal names.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp http://viaf.org/
example ap " :david-shotton-id ; datacite:usesIdentifierScheme datacite:viaf ; literal:hasLiteralValue "7484794" . "
scope Note ap "A VIAF identifier is resolvable from the following URL: http://viaf.org/<identifier>."@en

w3idni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/w3id

The W3id.org identifier is a secure, permanent URL re-direction service for Web applications, run by the W3C Permanent Identifier Community Group.
Is defined by
http://purl.org/spar/datacite/
belongs to
identifier scheme c
has facts
has U R L dp https://w3id.org/
example ap " :my-resource-id ; datacite:usesIdentifierScheme datacite:wikidata ; literal:hasLiteralValue "changes/4/aldrovandi" . "
scope Note ap "It has the shape of a URL starting with "https://w3id.org/" plus a local identifier that completes it (e.g. "https://w3id.org/changes")."@en

wikidatani back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/wikidata

The Wikidata QID is a unique identifier used for the entities in Wikidata.
Is defined by
http://purl.org/spar/datacite/
belongs to
identifier scheme c
has facts
has U R L dp https://www.wikidata.org/
example ap " :my-resource-id ; datacite:usesIdentifierScheme datacite:wikidata ; literal:hasLiteralValue "Q113333457" . "
scope Note ap "A Wikidata QID is resolvable from the following URL: https://www.wikidata.org/wiki/<identifier>."@en

wikipediani back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/wikipedia

The Wikipedia page name is a unique identifier used to refer to any entity present in a Wikipedia database.
Is defined by
http://purl.org/spar/datacite/
belongs to
resource identifier scheme c
has facts
has U R L dp https://en.wikipedia.org/
example ap " :my-resource-id datacite:usesIdentifierScheme datacite:wikipedia ; literal:hasLiteralValue "The_Canterbury_Tales" . "
scope Note ap "A Wikipedia page name is resolvable from the following URL: https://en.wikipedia.org/wiki/<identifier>."@en

zbmathni back to ToC or Named Individual ToC

IRI: http://purl.org/spar/datacite/zbmath

The zbMATH author identifier is a unique identifier used for a person in the Zentralblatt MATH database.
Is defined by
http://purl.org/spar/datacite/
belongs to
personal identifier scheme c
has facts
has U R L dp https://zbmath.org/
example ap " :silvio-peroni datacite:hasIdentifier :silvio-peroni-id . :silvio-peroni-id datacite:usesIdentifierScheme datacite:zbmath ; literal:hasLiteralValue "peroni.silvio" . "
scope Note ap "A zbMATH author identifier is resolvable from the following URL: https://zbmath.org/authors/?q=ai:<identifier>."@en

Legend back to ToC

c: Classes
op: Object Properties
ni: Named Individuals

Changes from last version

Classes

Modified classes
  • http://purl.org/spar/datacite/AgentIdentifier
    • Added: " :essepuntato a datacite:AgentIdentifier ; literal:hasLiteralValue \"https://github.com/essepuntato\" . "^^xsd:string
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: "An agent identifier belongs to a particular identifier scheme, specified by an individual within the class datacite:AgentIdentifierScheme (or any of its subclasses)."@en
    • Added: rdfs:comment "An identifier that uniquely identities an individual agent."@en
    • Deleted: rdfs:comment "An identifier that uniquely identities an individual agent, belonging to a particular identifier scheme specified by an individual within the class datacite:AgentIdentifierScheme (or any of its subclasses)."@en
  • http://purl.org/spar/datacite/AgentIdentifierScheme
    • Added: rdfs:comment "The identifier scheme used to identify an agent."@en
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: "Individual schemes are defines as members of its sub-classes."@en
    • Added: " :silvio-peroni-id datacite:usesIdentifierScheme datacite:github ; literal:hasLiteralValue \"essepuntato\" . "^^xsd:string
    • Deleted: rdfs:comment "The identifier scheme used to identify an agent. Individual schemes are defines as members of its sub-classes."@en
  • http://purl.org/spar/datacite/AlternateResourceIdentifier
    • Added: "An alternate resource identifier belongs to a particular scheme, such as ISBN, specified by an individual that is a member of the class datacite:ResourceIdentifierScheme."@en
    • Added: rdfs:comment "An identifier other than a DOI that is used as an alternative identifier to uniquely identify a resource that is the subject of the DataCite metadata record."@en
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: " :my-resource datacite:hasIdentifier :my-resource-alt . :my-resource-alt a datacite:AlternateResourceIdentifier ; literal:hasLiteralValue \"19381256\" . "^^xsd:string
    • Deleted: rdfs:comment "An identifier other than a DOI that is used as an alternative identifier to uniquely identifies the primary resource that is the subject of the DataCite metadata record, belonging to a particular scheme such as ISBN specified by an individual that is a member of the class datacite:ResourceIdentifierScheme. "@en
  • http://purl.org/spar/datacite/DescriptionType
    • Added: " Individual members of the class conform to the five values allowed in the DataCite controlled list, namely: * datacite:abstract; * datacite:methods; * datacite:series-information; * datacite:table-of-content; * datacite:other. "@en
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: " :my-resource-additional-info datacite:hasDescriptionType datacite:abstract . "^^xsd:string
    • Added: rdfs:comment "This class permits classification of the type of description given to a resource described by the DataCite Metadata schema."@en
    • Deleted: rdfs:comment "This class permits classification of the type of description given to a resource described by the DataCite Metadata schema. Individual members of the class conform to the five values allowed in the DataCite controlled list, namely: * abstract; * methods; * series-information; * table-of-content; * other."@en
  • http://purl.org/spar/datacite/FunderIdentifier
    • Added: "A funder identifier belongs to a particular scheme, such as FundRef, specified by an individual within the class datacite:FunderIdentifierScheme."@en
    • Added: " :my-funder-id a datacite:FunderIdentifier ; literal:hasLiteralValue \"\" . "^^xsd:string
    • Added: rdfs:comment "An identifier that uniquely identities a funding agency."@en
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Deleted: rdfs:comment "An identifier that uniquely identities a funding agency, belonging to a particular scheme such as FundRef specified by an individual within the class datacite:FunderIdentifierScheme."@en
  • http://purl.org/spar/datacite/FunderIdentifierScheme
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: "Individual schemes are defines as members of this class. At present, the only individual of this class is datacite:fundref."@en
    • Added: rdfs:comment "The identifier scheme used to identify a funding agency."@en
    • Added: " :my-funder-id datacite:usesIdentifierScheme datacite:fundref . "^^xsd:string
    • Deleted: rdfs:comment "The identifier scheme used to identify a funding agency. Individual schemes are defines as members of this class. At present, the only individual of this class is datacite:fundref."@en
  • http://purl.org/spar/datacite/Identifier
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: rdfs:comment "An identifier that uniquely identities an entity, such as a funding agency, a person or a resource."@en
    • Added: "An identifier belongs to a particular scheme, such as those specified by individuals of the class datacite:IdentifierScheme."@en
    • Deleted: rdfs:comment "An identifier that uniquely identities an entity – such as a funding agency, a person and a resource – belonging to a particular scheme such as those specified by individuals of the class datacite:IdentifierScheme."@en
  • http://purl.org/spar/datacite/IdentifierScheme
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: rdfs:comment "The identifier scheme used to identify an entity such as a funding agency, a person or a resource."@en
    • Added: "Individual schemes are defines as members of this class."@en
    • Added: " :my-object-id ; datacite:usesIdentifierScheme datacite:wikidata ; literal:hasLiteralValue \"Q113333457\" . "^^xsd:string
    • Deleted: rdfs:comment "The identifier scheme used to identify an entity such as a funding agency, a person or a resource. Individual schemes are defines as members of this class."@en
  • http://purl.org/spar/datacite/MetadataScheme
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: " :my-resource cito:citesAsMetadataDocument :my-resource-metadata . :my-resource-metadata a fabio:MetadataDocument ; datacite:usesMetadataScheme datacite:spar . "^^xsd:string
    • Added: "Neither a class for metadata documents nor a property linking a resource to its metadata document are explicitly defined in this ontology. However, we recommend to use the class fabio:MetadataDocument (from http://purl.org/spar/fabio) and cito:citesAsMetadataDocument (from http://purl.org/spar/cito) for providing such descriptions. In addition, if needed, it is possible to use the dataproperty fabio:hasURL (not included in this ontology as well) for defining the actual URL of a certain metadata scheme."@en
    • Added: rdfs:comment "The class that describe metadata schemes used for creating a metadata document referring to a certain resource."@en
    • Deleted: rdfs:comment "The class that describe metadata schemes used for creating a metadata document referring to a certain resource. Neither a class for metadata documents nor a property linking a resource to its metadata document are not explicitly defined in this ontology. However, we recommend to use the class fabio:MetadataDocument (from http://purl.org/spar/fabio) and cito:citesAsMetadataDocument (from http://purl.org/spar/cito) for providing such descriptions. An example of use of such entities is shown as follows: :my-resource cito:citesAsMetadataDocument :my-resource-metadata . :my-resource-metadata a fabio:MetadataDocument ; datacite:usesMetadataScheme datacite:spar . In addition, if needed, it is possible to use the dataproperty fabio:hasURL (not included in this ontology as well) for defining the actual URL of a certain metadata scheme."@en
  • http://purl.org/spar/datacite/OrganizationIdentifier
    • Added: " :my-organization-id a datacite:OrganizationIdentifier ; literal:hasLiteralValue \"00wb4mk85\" . "^^xsd:string
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: "An organization identifier belongs to a particular identifier scheme, such as ISNI, specified by an individual within the class datacite:OrganizationIdentifierScheme."@en
    • Added: rdfs:comment "An identifier that uniquely identities an individual organization."@en
    • Deleted: rdfs:comment "An identifier that uniquely identities an individual organization, belonging to a particular identifier scheme such as ISNI specified by an individual within the class datacite:OrganizationIdentifierScheme."@en
  • http://purl.org/spar/datacite/OrganizationIdentifierScheme
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: rdfs:comment "The identifier scheme used to identify an organization."@en
    • Added: "Individual schemes are defines as members of this class."@en
    • Added: " :my-organization-id a datacite:OrganizationIdentifier ; datacite:usesIdentifierScheme datacite:ror . "^^xsd:string
    • Deleted: rdfs:comment "The identifier scheme used to identify an organization. Individual schemes are defines as members of this class."@en
  • http://purl.org/spar/datacite/PersonalIdentifier
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: rdfs:comment "An identifier that uniquely identifies an individual person."@en
    • Added: "A personal identifier belongs to a particular identifier scheme, such as ORCID, specified by an individual within the class datacite:PersonalIdentifierScheme."@en
    • Added: " :david-shotton datacite:hasIdentifier :david-shotton-id . :david-shotton-id a datacite:PersonalIdentifier ; literal:hasLiteralValue \"0000-0001-5506-523X\" . "^^xsd:string
    • Deleted: rdfs:comment "An identifier that uniquely identities an individual person, belonging to a particular identifier scheme such as ORCID specified by an individual within the class datacite:PersonalIdentifierScheme."@en
  • http://purl.org/spar/datacite/PersonalIdentifierScheme
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: "Individual schemes are defines as members of this class."@en
    • Added: rdfs:comment "The identifier scheme used to identify a person."@en
    • Added: " :david-shotton-id datacite:usesIdentifierScheme datacite:orcid . "^^xsd:string
    • Deleted: rdfs:comment "The identifier scheme used to identify a person. Individual schemes are defines as members of this class."@en
  • http://purl.org/spar/datacite/PrimaryResourceIdentifier
    • Added: rdfs:comment "An identifier that is used as the primary identifier to uniquely identifies the primary resource that is the subject of the DataCite metadata record."@en
    • Added: " :my-resource-id a datacite:PrimaryResourceIdentifier ; literal:hasLiteralValue \"10.1371/journal.pntd.0000228.g002.x001\" ; datacite:usesIdentifierScheme datacite:doi . "^^xsd:string
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: "This class uses a datacite:IdentifierScheme that is restricted to datacite:doi, an individual in the datacite:ResourceIdentifierScheme."^^xsd:string
    • Deleted: rdfs:comment "An identifier that is used as the primary identifier to uniquely identifies the primary resource that is the subject of the DataCite metadata record. Within the DataCite metadata record, a Digital Object Identifier is the only permitted primary resource identifier scheme, specified by the individual datacite:doi, that is a member of the class datacite:ResourceIdentifierScheme."@en
  • http://purl.org/spar/datacite/ResourceIdentifier
    • Added: rdfs:comment "An identifier that is used to uniquely identify a resource."@en
    • Added: " :my-resource-id a datacite:ResourceIdentifier ; literal:hasLiteralValue \"10.3457/1098.a45\" . "^^xsd:string
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Deleted: rdfs:comment "An identifier that is used to uniquely identifies a resource."@en
  • http://purl.org/spar/datacite/ResourceIdentifierScheme
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: "Individual schemes are defines as members of this class. For DataCite, the only permitted identifier scheme for the primary resource identifier is the Digital Object Identifier (datacite:doi)."@en
    • Added: rdfs:comment "The identifier scheme used to identify a resource."@en
    • Added: " :my-resource-pri datacite:usesIdentifierScheme datacite:doi . "^^xsd:string
    • Deleted: rdfs:comment "The identifier scheme used to identify a resource. Individual schemes are defines as members of this class. For DataCite, the only permitted identifier scheme for the primary resource identifier is the Digital Object Identifier."@en
Added classes

Object Properties

Modified object properties
  • http://purl.org/spar/datacite/hasDescription
    • Added: " :my-resource datacite:hasDescription :my-resource-additional-info . :my-resource-additional-info literal:hasLiteralValue \"A textual description\" . "^^xsd:string
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
  • http://purl.org/spar/datacite/hasDescriptionType
    • Added: "A type of description is defined as an individual of the class datacite:DescriptionType from the DataCite controlled list of Abstract (datacite:abstract), SeriesInformation (datacite:series-information), TableOfContent (datacite:table-of-content) and Other (datacite:other)."@en
    • Added: rdfs:comment "An object property permitting specification of the type of description used to describe a resource."@en
    • Added: " :my-resource-additional-info datacite:hasDescriptionType datacite:abstract . "^^xsd:string
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Deleted: rdfs:comment "An object property permitting specification of the type of description used to describe a resource, defined as an individual of the class datacite:DescriptionType from the DataCite controlled list of Abstract, SeriesInformation, TableOfContent and Other."@en
  • http://purl.org/spar/datacite/hasGeneralResourceType
    • Added: " The DataCite controlled list includes: - dcmitype:MovingImage; - fabio:Book; - fabio:BookChapter; - dcmitype:Collection; - fabio:LaboratoryNotebook; - fabio:ConferencePaper; - fabio:ConferenceProceedings; - fabio:ResourcePaper; - dcmitype:Dataset; - fabio:Thesis; - dcmitype:Event; - dcmitype:StillImage; - dcmitype:InteractiveResource; - fabio:Journal; - fabio:JournalArticle; - fabio:Model; - fabio:DataManagementPlan; - dcmitype:PhysicalObject; - fabio:ConferencePoster; - fabio:Preprint; - fabio:Presentation; - fabio:ProjectPlan; - fabio:ReportDocument; - dcmitype:Service; - dcmitype:Software; - dcmitype:Sound; - fabio:TechnicalStandard; - fabio:Report; - dcmitype:Text; - fabio:Workflow; - frbr:Endeavour. All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms (dcmitype: http://purl.org/dc/dcmitype/), FaBiO (fabio: http://purl.org/spar/fabio/), and FRBR (frbr: http://purl.org/vocab/frbr/core#). "@en
    • Added: rdfs:comment "An object property permitting specification of the general type of a resource, defined from the DataCite controlled list."@en
    • Added: " :my-resource datacite:hasGeneralResourceType dcmitype:Dataset . "^^xsd:string
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Deleted: rdfs:comment "An object property permitting specification of the general type of a resource, defined from the DataCite controlled list, namely: * dcmitype:MovingImage; * dcmitype:Collection; * dcmitype:Dataset; * dcmitype:Event; * dcmitype:dcmitype:StillImage; * dcmitype:InteractiveResource; * fabio:Model; * dcmitype:PhysicalObject; * dcmitype:Service; * dcmitype:Software; * dcmitype:Sound; * dcmitype:Text; * fabio:Workflow; * frbr:Endeavour. All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms (dcmitype: http://purl.org/dc/dcmitype/), FaBiO (fabio: http://purl.org/spar/fabio/), and FRBR (frbr: http://purl.org/vocab/frbr/core#)."@en
  • http://purl.org/spar/datacite/hasIdentifier
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: " :my-resource datacite:hasIdentifier :my-resource-pri . "^^xsd:string
  • http://purl.org/spar/datacite/usesIdentifierScheme
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: "An identifier scheme is defined as an individual of the class datacite:IdentifierScheme."@en
    • Added: " :my-resource-id datacite:usesIdentifierScheme datacite:doi . "^^xsd:string
    • Added: rdfs:comment "An object property permitting specification of the identifier scheme used to provide the identifier for an entity (either a funder, a person or a resource)."@en
    • Deleted: rdfs:comment "An object property permitting specification of the identifier scheme used to provide the identifier for an entity – either a funder, a person or a resource – defined as an individual of the class datacite:IdentifierScheme."@en
  • http://purl.org/spar/datacite/usesMetadataScheme
    • Added: rdfs:isDefinedBy http://purl.org/spar/datacite/
    • Added: " :related-document a fabio:MetadataDocument ; datacite:usesMetadataScheme datacite:spar . "^^xsd:string
Added object properties

Data Properties

Acknowledgments back to ToC

The authors would like to thank Silvio Peroni for developing LODE, a Live OWL Documentation Environment, which is used for representing the Cross Referencing Section of this document and Daniel Garijo for developing Widoco, the program used to create the template used in this documentation.