# Copyright 2017-2020 W3C Linked Building Data Community Group. # # This work is licensed under a Creative Commons Attribution License. # This copyright applies to the Vocabulary Specification and # accompanying documentation in RDF. Regarding underlying technology, # the Vocabulary uses W3C's RDF technology, an open Web standard that can be freely # used by anyone. @prefix : . @prefix owl: . @prefix rdf: . @prefix xsd: . @prefix rdfs: . @prefix dcterms: . @prefix vann: . @prefix voaf: . @prefix vcard: . @prefix schema: . @prefix bot: . @prefix brick: . @base . rdf:type owl:Ontology , voaf:Vocabulary ; dcterms:title "BRICK to BOT alignment."@en ; dcterms:description """This ontology defines correspondences with the BRICK ontology. Alignment holds for BOT v0.3.2 and BRICK v.1.1.1"""@en ; dcterms:issued "2017-09-12"^^xsd:date ; dcterms:modified "2021-01-29"^^xsd:date ; dcterms:license ; owl:versionInfo "v2.0.0" ; owl:versionIRI ; owl:priorVersion ; dcterms:creator ; dcterms:creator "Georg Ferdinand Schneider" ; dcterms:creator "Jason Koh" ; dcterms:creator ; rdfs:seeAlso ; owl:imports , . dcterms:title a owl:AnnotationProperty . dcterms:description a owl:AnnotationProperty . dcterms:issued a owl:AnnotationProperty . dcterms:modified a owl:AnnotationProperty . dcterms:creator a owl:AnnotationProperty . dcterms:contributor a owl:AnnotationProperty . dcterms:license a owl:AnnotationProperty . vann:preferredNamespacePrefix a owl:AnnotationProperty . vann:preferredNamespaceUri a owl:AnnotationProperty . vcard:fn a owl:AnnotationProperty . schema:name a owl:AnnotationProperty . a vcard:Individual , schema:Person; vcard:fn "Georg Ferdinand Schneider" ; schema:name "Georg Ferdinand Schneider" . a vcard:Individual , schema:Person; vcard:fn "Jason Koh" ; schema:name "Jason Koh" . ################################################################# # Object Properties ################################################################# bot:containsZone rdfs:subPropertyOf brick:hasPart . # Usage of brick:hasPart with brick:Location brick:isLocationOf rdfs:subPropertyOf bot:containsElement . # bot:containsElement does not have domain/ range, hence, a brick:Point will not be classified as bot:Element. This would be wrong bot:hasSubElement rdfs:subPropertyOf brick:hasPart . # Usage of brick:hasPart with brick:Equipment ################################################################# # Classes ################################################################# brick:Location rdfs:subClassOf bot:Zone. bot:Site rdfs:subClassOf brick:Site . # Maybe equivalent as of other subclassings. bot:Storey owl:equivalentClass brick:Floor. # Brick equate both Storey and Floor. brick:Building owl:equivalentClass bot:Building. brick:Space rdfs:subClassOf bot:Space. brick:Equipment rdfs:subClassOf bot:Element . # In BOT, anything other than bot:Zone is bot:Element