@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .

dcterms:identifier a owl:DatatypeProperty ;
    rdfs:label "has identifier"@en ;
    vann:example """
        :my-journal-article a fabio:JournalArticle ;
            dcterms:identifier 'doi:10.1000/182' .
    """ ;
    rdfs:comment "A unique and unambiguous reference to the resource within a given context."@en ;
    rdfs:isDefinedBy dcterms: ;
    vs:term_status reg:statusStable ;
    skos:note "Recommended best practice is to identify the resource by means of a string conforming to a formal identification system."@en .

