dcterms:creator leaf node


URI

http://purl.org/dc/terms/creator

Label

has creator

Description

An entity primarily responsible for making the resource.

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.

Inherits from

Usage

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

Implementation

@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#> .

dcterms:creator a owl:ObjectProperty ;
    rdfs:label "has creator"@en ;
    rdfs:comment """An entity primarily responsible for making the resource.

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 ;
    rdfs:subPropertyOf owl:topObjectProperty .