https://schema.org/creator
             The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.
| DOMAIN | PROPERTY | RANGE | 
|---|---|---|
| sdo:Thing | sdo:creator | sdo:Person | 
@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 .