@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 schema: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://kg.artsdata.ca/ontology/Event> a rdfs:Class;
  rdfs:label "Event"@en;
  schema:alternateName "performance"@en,
    "représentation"@fr;
  rdfs:comment "An event is a happening that occurs at a certain time and location. Examples include and are not limited to a: performance, concert, conference, festival, exhibition and/or social gathering."@en;
  rdfs:isDefinedBy <http://kg.artsdata.ca/ontology/>;
  rdfs:subClassOf <http://kg.artsdata.ca/ontology/Thing>;
  owl:equivalentClass schema:Event .

rdfs:Class rdfs:label "Class";
  rdfs:comment "The class of classes.";
  rdfs:isDefinedBy rdfs:;
  rdfs:subClassOf rdfs:Resource .
