sdo:creator leaf node


URI

https://schema.org/creator

Label

has creator

Description

The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.

Usage

DOMAINPROPERTYRANGE
sdo:Thing sdo:creator sdo:Person

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sdo: <https://schema.org/> .

sdo:creator a rdf:Property ;
    rdfs:label "has creator"@en,
        "heeft maker"@nl ;
    rdfs:comment "The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork."@en,
        "De maker/auteur van dit CreativeWork. Dit is hetzelfde als de eigenschap Auteur voor CreativeWork."@nl ;
    rdfs:domain sdo:Thing ;
    rdfs:range sdo:Person .