-
Notifications
You must be signed in to change notification settings - Fork 4
/
DIO-PP.owl
218 lines (98 loc) · 4.85 KB
/
DIO-PP.owl
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
@prefix : <https://w3id.org/diopp#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <https://w3id.org/diopp> .
<https://w3id.org/diopp> rdf:type owl:Ontology ;
dc:date "24-11-2015" ;
dc:title "The Pool Party Design Intent Ontology" ;
rdfs:comment "This ontology covers the PoolParty conceptualisation to be used with the DIO ontology" ;
dc:creator "Monika Solanki" ;
owl:imports <http://protege.stanford.edu/plugins/owl/dc/protege-dc.owl> ,
dc: ;
owl:versionIRI <https://w3id.org/diopp/1.0.0> .
#################################################################
#
# Object Properties
#
#################################################################
### https://w3id.org/diopp#belongsTo
:belongsTo rdf:type owl:FunctionalProperty ,
owl:ObjectProperty .
### https://w3id.org/diopp#hasAffectedComponent
:hasAffectedComponent rdf:type owl:ObjectProperty .
### https://w3id.org/diopp#hasAssignee
:hasAssignee rdf:type owl:ObjectProperty .
### https://w3id.org/diopp#hasReporter
:hasReporter rdf:type owl:FunctionalProperty ,
owl:ObjectProperty .
### https://w3id.org/diopp#hasResolutionType
:hasResolutionType rdf:type owl:FunctionalProperty ,
owl:ObjectProperty .
### https://w3id.org/diopp#hasVersionType
:hasVersionType rdf:type owl:FunctionalProperty ,
owl:ObjectProperty .
### https://w3id.org/diopp#hasWatcher
:hasWatcher rdf:type owl:ObjectProperty .
#################################################################
#
# Data properties
#
#################################################################
### https://w3id.org/diopp#estimatedTimeEffort
:estimatedTimeEffort rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty .
### https://w3id.org/diopp#hasDueDate
:hasDueDate rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:range xsd:dateTime .
#################################################################
#
# Classes
#
#################################################################
### https://w3id.org/diopp#Component
:Component rdf:type owl:Class ;
rdfs:comment "The componet whch is affected by a design issue." .
### https://w3id.org/diopp#DevelopmentSpace
:DevelopmentSpace rdf:type owl:Class ;
rdfs:subClassOf :PoolPartySpace .
### https://w3id.org/diopp#IdeaSpace
:IdeaSpace rdf:type owl:Class ;
rdfs:subClassOf :PoolPartySpace .
### https://w3id.org/diopp#IssueType
:IssueType rdf:type owl:Class ;
rdfs:comment "An entity representing the type of an issue." .
### https://w3id.org/diopp#PoolPartyDesignIssue
:PoolPartyDesignIssue rdf:type owl:Class ;
rdfs:comment "An entity representing the design issues recorded for a Pool Party instantiation." .
### https://w3id.org/diopp#PoolPartySpace
:PoolPartySpace rdf:type owl:Class ;
rdfs:comment "An abstract space that encapsulates concrete spaces within the Pool Party environment" .
### https://w3id.org/diopp#ProjectSpace
:ProjectSpace rdf:type owl:Class ;
rdfs:subClassOf :PoolPartySpace .
### https://w3id.org/diopp#ResolutionType
:ResolutionType rdf:type owl:Class ;
rdfs:comment "An entity representing the resolution type for an issue." .
### https://w3id.org/diopp#SupportSpace
:SupportSpace rdf:type owl:Class ;
rdfs:subClassOf :PoolPartySpace .
### https://w3id.org/diopp#VersionType
:VersionType rdf:type owl:Class ;
rdfs:comment "An entity denoting the version type of a design issue" .
#################################################################
#
# Individuals
#
#################################################################
### https://w3id.org/diopp#story
:story rdf:type owl:NamedIndividual ,
:IssueType .
### https://w3id.org/diopp#unresolved
:unresolved rdf:type owl:NamedIndividual ,
:ResolutionType .
### Generated by the OWL API (version 3.5.1) http://owlapi.sourceforge.net