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

<http://kg.artsdata.ca/ontology/hasEventType> a rdf:Property;
  rdfs:label "has event type"@en;
  rdfs:comment "Links an Event to an event type defined by the Artsdata controlled vocabulary for event types."@en;
  rdfs:domain <http://kg.artsdata.ca/ontology/Event>;
  rdfs:isDefinedBy <http://kg.artsdata.ca/ontology/>;
  rdfs:range <http://kg.artsdata.ca/ontology/EventType>;
  rdfs:subPropertyOf schema:additionalType .

rdf:Property rdfs:label "Property";
  rdfs:comment "The class of RDF properties.";
  rdfs:isDefinedBy rdf:;
  rdfs:subClassOf rdfs:Resource .
