schema:creator leaf node


URI

http://schema.org/creator

Label

isCreatedBy

Description

The relationship is used to associate the output of a Thematic Network with its creator.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) schema:creator owl:Thing (inferred)

Implementation

@prefix : <https://euraknos.eu/ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .

schema:creator a owl:AsymmetricProperty,
        owl:IrreflexiveProperty,
        owl:ObjectProperty ;
    rdfs:label "isCreatedBy"@en ;
    rdfs:comment "The relationship is used to associate the output of a Thematic Network with its creator."@en ;
    owl:inverseOf :hasCreated .