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

<http://purl.org/dc/terms/creator>
	rdf:type	rdf:Property ;
	rdfs:subPropertyOf	dc:creator , <http://purl.org/dc/terms/contributor> ;
	owl:equivalentProperty	foaf:maker ;
	rdfs:label	"Creator"@en ;
	rdfs:range	<http://purl.org/dc/terms/Agent> ;
	rdfs:isDefinedBy	<http://purl.org/dc/terms/> ;
	rdfs:comment	"An entity primarily responsible for making the resource."@en ;
	<http://purl.org/dc/terms/description>	"Examples of a Creator include a person, an organization, or a service."@en ;
	<http://purl.org/dc/terms/modified>	"2010-10-11"^^xsd:date ;
	<http://purl.org/dc/terms/issued>	"2008-01-14"^^xsd:date ;
	<http://purl.org/dc/terms/hasVersion>	<http://dublincore.org/usage/terms/history/#creatorT-002> .
foaf:maker
	owl:equivalentProperty	<http://purl.org/dc/terms/creator> .