has creator leaf node


URI

http://semanticscience.org/resource/hasCreator

Label

has creator

Description

has creator is a relation between an entity and that which created it.

Usage

DOMAINPROPERTYRANGE
entity has creator entity

Implementation

@prefix dct: <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 sio: <http://semanticscience.org/resource/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

sio:hasCreator a owl:ObjectProperty ;
    rdfs:label "has creator"@en ;
    dct:alternative "is created by"@en,
        "was created by"@en ;
    dct:description "has creator is a relation between an entity and that which created it."@en ;
    sio:equivalentTo "dc:creator" ;
    rdfs:domain sio:Entity ;
    rdfs:isDefinedBy <http://semanticscience.org/ontology/sio/v1.53/sio-subset-labels.owl> ;
    rdfs:range sio:Entity ;
    rdfs:subPropertyOf sio:hasSource ;
    owl:inverseOf sio:isCreatorOf ;
    skos:example "the iPhone was created by Apple Inc"@en .