@prefix dbo: <http://dbpedia.org/ontology/> .
@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/managedBy> a rdf:Property;
  rdfs:label "managed by"@en;
  rdfs:comment "Links a Place to the Organization responsible for its day-to-day operations."@en;
  rdfs:domain schema:Place;
  rdfs:isDefinedBy <http://kg.artsdata.ca/ontology/>;
  rdfs:range schema:Organization;
  owl:equivalentProperty <http://www.wikidata.org/prop/direct/P137>,
    dbo:operator;
  owl:maxCardinality "1"^^xsd:nonNegativeInteger;
  owl:minCardinality "0"^^xsd:nonNegativeInteger .

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