-
Notifications
You must be signed in to change notification settings - Fork 3
/
prod.ttl
86 lines (80 loc) · 3.88 KB
/
prod.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Copyright 2017 W3C Linked Building Data Community Group.
#
# This work is licensed under a Creative Commons Attribution License.
# This copyright applies to the PRODUCT Vocabulary Specification and
# accompanying documentation in RDF. Regarding underlying technology,
# PRODUCT uses W3C's RDF technology, an open Web standard that can be freely
# used by anyone.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms:<http://purl.org/dc/terms/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix dbo: <http://dbpedia.org/ontology/> .
@prefix bot: <https://w3id.org/bot#> .
@prefix product: <https://w3id.org/product#> .
@base <https://w3id.org/product#> .
voaf:Vocabulary a owl:Class .
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 .
vs:term_status a owl:AnnotationProperty .
foaf:Person a owl:Class .
foaf:name a owl:DatatypeProperty .
#################################
# METADATA
#################################
<https://w3id.org/product#> rdf:type voaf:Vocabulary ,
owl:Ontology ;
dce:modified "July 11th 2017"^^xsd:string ;
owl:versionInfo "July 11th 2017"^^xsd:string ;
dcterms:issued "2017-07-11"^^xsd:date ;
#owl:versionIRI <https://w3id.org/product/product-0.1.0> ;
owl:versionInfo "v0.1.0" ;
#owl:priorVersion <https://w3id.org/product/product-0.1.0> ;
dcterms:title "PRODUCT: PRODUCT ontology "@en ;
dcterms:description """The PRODUCT Ontology (PRODUCT) extends the Building Topology Ontology (BOT) with more specific building elements."""@en ;
dcterms:creator [a foaf:Person ; foaf:name "Mads Holten Rasmussen" ] ;
dcterms:creator [a foaf:Person ; foaf:name "Pieter Pauwels" ] ;
dcterms:contributor [a foaf:Person ; foaf:name "Maxime Lefrançois" ] ;
dcterms:contributor [a foaf:Person ; foaf:name "Georg Ferdinand Schneider" ] ;
dcterms:contributor [a foaf:Person ; foaf:name "Gonçal Costa" ] ;
#dcterms:contributor [a foaf:Person ; foaf:name "" ] ;
dcterms:license <https://creativecommons.org/licenses/by/1.0/> ;
vann:preferredNamespacePrefix "product" ;
vann:preferredNamespaceUri <https://w3id.org/product#> ;
dce:Language "en" ;
dce:title "PRODUCT" ;
dce:description "Products in the AEC industry" ;
owl:imports <https://w3id.org/product/BuildingElements> ,
<https://w3id.org/product/MEP> ,
<https://w3id.org/product/Furnishing> .
#################################
# CLASSES
#################################
product:Product
a owl:Class ;
rdfs:label "Product"@en ,
"Product"@nl ,
"Produkt"@da ;
rdfs:comment "A product is an article or substance that is manufactured or refined for sale"@en ,
"Een product is een artikel of substantie die aangemaakt of bijgewerkt wordt voor verkoop"@nl ,
"Et produkt er en artikel eller substans som er fremstillet eller rafineret til salg"@da .
#################################
# OBJECT PROPERTIES
#################################
product:aggregates
a owl:ObjectProperty ;
rdfs:domain product:Product ;
rdfs:range product:Product .