# Copyright 2017-2019 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 foaf: . @prefix bot: . @prefix rooms: . @base . rdf:type owl:Ontology , voaf:Vocabulary ; dcterms:title "DERIROOMS to BOT alignment."@en ; dcterms:description """This ontology defines proposed alignments with the DERI Rooms ontology."""@en ; dcterms:issued "2017-09-12"^^xsd:date ; dcterms:modified "2019-03-01"^^xsd:date ; dcterms:license ; owl:versionInfo "v1.0.0" ; owl:versionIRI ; owl:priorVersion ; rdfs:seeAlso ; dcterms:creator ; dcterms:creator [a foaf:Person ; foaf:name "Georg Ferdinand Schneider" ] ; 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 . foaf:Person a owl:Class . foaf:name a owl:DatatypeProperty . ################################################################# # Alignments ################################################################# rooms:Site rdfs:subClassOf bot:Site . rooms:Building rdfs:subClassOf bot:Building . rooms:Floor rdfs:subClassOf bot:Storey . rooms:FloorSection rdfs:subClassOf bot:Storey . rooms:Desk rdfs:subClassOf bot:Element . rooms:Room rdfs:subClassOf bot:Space . rooms:contains rdfs:subPropertyOf bot:containsZone .