@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/Place> a rdfs:Class;
  rdfs:label "Place"@en;
  rdfs:comment "A physical location where an event, organization, or person is situated."@en;
  rdfs:isDefinedBy <http://kg.artsdata.ca/ontology/>;
  rdfs:subClassOf schema:Place,
    <http://kg.artsdata.ca/ontology/Thing> .

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