forked from ng-cdi/oz-ontologies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icm.ttl
274 lines (181 loc) · 10.5 KB
/
icm.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
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
@prefix : <http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#> .
@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 <http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm> .
<http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm> rdf:type owl:Ontology ;
owl:imports <http://www.w3.org/2002/07/owl> .
#################################################################
# Annotation properties
#################################################################
### http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled
<http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#atLeast
:atLeast rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Expectation ;
rdfs:range :Parameter .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#atMost
:atMost rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Expectation ;
rdfs:range :Parameter .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#event
:event rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#exactly
:exactly rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Expectation ;
rdfs:range :Parameter .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#greater
:greater rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Expectation ;
rdfs:range :Parameter .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#hasExpectation
:hasExpectation rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :RequirementDefiner ;
rdfs:range :Expectation .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#hasParameter
:hasParameter rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Expectation ;
rdfs:range :Parameter .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#hasTarget
:hasTarget rdf:type owl:ObjectProperty ;
rdfs:domain :Expectation ;
rdfs:range :Target .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#hasTargetDescription
:hasTargetDescription rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#metric
:metric rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#receiver
:receiver rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#smaller
:smaller rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Expectation ;
rdfs:range :Parameter .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#targetDescription
:targetDescription rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#targetResource
:targetResource rdf:type owl:ObjectProperty ;
rdfs:domain :Target ;
rdfs:range rdfs:Resource .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#targetType
:targetType rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#value
:value rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#valueBy
:valueBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
#################################################################
# Classes
#################################################################
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#ComplianceDetail
:ComplianceDetail rdf:type owl:Class ;
rdfs:subClassOf :RequirementDefiner .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#ComplianceQualifier
:ComplianceQualifier rdf:type owl:Class ;
rdfs:subClassOf :RequirementDefiner .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#Context
:Context rdf:type owl:Class ;
rdfs:subClassOf :RequirementExplainer .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#DeliveryExpectation
:DeliveryExpectation rdf:type owl:Class ;
rdfs:subClassOf :Expectation ;
owl:disjointWith :PropertyExpectation ,
:ReportingExpectation .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#DeliveryParameter
:DeliveryParameter rdf:type owl:Class ;
rdfs:subClassOf :Parameter ;
owl:disjointWith :PropertyParameter ,
:ReportingParameter .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#Element
:Element rdf:type owl:Class ;
rdfs:subClassOf owl:Class .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#Expectation
:Expectation rdf:type owl:Class ;
rdfs:subClassOf :RequirementDefiner .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#ExpectationReport
:ExpectationReport rdf:type owl:Class ;
rdfs:subClassOf :RequirementReporter .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#Information
:Information rdf:type owl:Class ;
rdfs:subClassOf :InformationElement .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#InformationElement
:InformationElement rdf:type owl:Class ;
rdfs:subClassOf :Element ;
owl:disjointWith :RequirementElement .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#IntentInformation
:IntentInformation rdf:type owl:Class ;
rdfs:subClassOf :IntentManagementInformation ;
owl:disjointWith :ReportInformation .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#IntentManagementInformation
:IntentManagementInformation rdf:type owl:Class ;
rdfs:subClassOf :Information .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#Parameter
:Parameter rdf:type owl:Class ;
rdfs:subClassOf owl:Class .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#ParameterCollection
:ParameterCollection rdf:type owl:Class ;
rdfs:subClassOf :RequirementDefiner .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#PropertyExpectation
:PropertyExpectation rdf:type owl:Class ;
rdfs:subClassOf :Expectation ;
owl:disjointWith :ReportingExpectation .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#PropertyParameter
:PropertyParameter rdf:type owl:Class ;
rdfs:subClassOf :Parameter ;
owl:disjointWith :ReportingParameter .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#ReportInformation
:ReportInformation rdf:type owl:Class ;
rdfs:subClassOf :IntentManagementInformation .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#ReportingExpectation
:ReportingExpectation rdf:type owl:Class ;
rdfs:subClassOf :Expectation .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#ReportingParameter
:ReportingParameter rdf:type owl:Class ;
rdfs:subClassOf :Parameter .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#ReportingTimeContext
:ReportingTimeContext rdf:type owl:Class ;
rdfs:subClassOf :Context ;
owl:disjointWith :UnitContext .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#RequirementDefiner
:RequirementDefiner rdf:type owl:Class ;
rdfs:subClassOf :RequirementElement ;
owl:disjointWith :RequirementExplainer ,
:RequirementReporter ,
:Target .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#RequirementElement
:RequirementElement rdf:type owl:Class ;
rdfs:subClassOf :Element .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#RequirementExplainer
:RequirementExplainer rdf:type owl:Class ;
rdfs:subClassOf :RequirementElement ;
owl:disjointWith :RequirementReporter ,
:Target .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#RequirementReporter
:RequirementReporter rdf:type owl:Class ;
rdfs:subClassOf :RequirementElement ;
owl:disjointWith :Target .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#Target
:Target rdf:type owl:Class ;
rdfs:subClassOf :RequirementElement .
### http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/icm#UnitContext
:UnitContext rdf:type owl:Class ;
rdfs:subClassOf :Context .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi