@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcam: <http://purl.org/dc/dcam/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix ns1: <https://jsonapi.org/format/1.1/#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

dcterms:creator a rdf:Property ;
    rdfs:label "Creator"@en ;
    dcam:rangeIncludes dcterms:Agent ;
    dcterms:description "Recommended practice is to identify the creator with a URI.  If this is not possible or feasible, a literal value that identifies the creator may be provided."@en ;
    dcterms:issued "2008-01-14"^^xsd:date ;
    rdfs:comment "An entity responsible for making the resource."@en ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:subPropertyOf dc:creator,
        dcterms:contributor ;
    owl:equivalentProperty foaf:maker ;
    ns1:document-member-names "creator"@en .