@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:creator a owl:ObjectProperty ;
    rdfs:label "has creator"@en ;
    vann:example """
        :my-report a fabio:Report ;
            dcterms:creator :john-doe .

        :john-doe a foaf:Agent ;
            foaf:name 'John Doe' .
    """ ;
    rdfs:comment "An entity primarily responsible for making the resource."@en ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:subPropertyOf owl:topObjectProperty ;
    vs:term_status reg:statusStable ;
    skos:note """
Examples of a Creator include a person, an organization, or a service. 
Typically, the name of a creator should be used to indicate the entity.
                                    """@en .

