@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/hasResident> a rdf:Property;
  rdfs:label "has resident"@en;
  rdfs:comment "Links a Place to an Organization that has a residency status within this Place. Some artistic companies have a special \"residency\" status within a venue. Resident companies aren't managing the venue, but they are given privileged access to the facilities by the venue manager for creation, production and presentation activities. For example, they are often given the opportunity to book their performance dates before rental clients. They may also be provided office space within the venue."@en;
  rdfs:domain schema:Place;
  rdfs:isDefinedBy <http://kg.artsdata.ca/ontology/>;
  rdfs:range schema:Organization;
  owl:equivalentProperty <http://www.wikidata.org/prop/direct/P466>;
  owl:minCardinality "0"^^xsd:nonNegativeInteger .

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