-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdamageHistory.ttl
45 lines (35 loc) · 2.03 KB
/
damageHistory.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
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix schema: <http://schema.org/#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix opm: <https://w3id.org/opm#> .
@prefix seas: <http://w3id.org/seas/> .
#################################
# METADATA
#################################
<https://github.com/Wannes-C/Thesis/blob/main/damageHistory.ttl> rdf:type owl:Ontology ;
dce:modified "March 13th 2021"^^xsd:string ;
owl:versionInfo "March 13th 2021"^^xsd:string ;
dcterms:title "Damage History class an object property"@en ;
#dcterms:description """This ontology allows for defining and using a building component property that holds its damage history."""@en .
#################################################################
# Classes
#################################################################
dhis:DamageHistory rdf:type owl:Class ;
rdfs:subClassOf opm:Property, seas:Property ;
rdfs:label "Damage History"@en ;
rdfs:comment """A damage history is an object's property which holds its history of damages. It is strongly advised to use this
class as an element's property for connecting opm:hasPropertyState. The damage history can then contain several instances
of opm:PropertyState, each containing its occurring damages at a certain moment in time."""@en .
#################################################################
# Object Properties
#################################################################
dhis:hasDamageHistory rdf:type owl:ObjectProperty ;
rdfs:label "has Damage History"@en ;
rdfs:comment "Defines the relationship between an object and its property 'damage history'."@en ;
rdfs:range dhis:DamageHistory .