-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexample.owl
More file actions
216 lines (140 loc) · 5.11 KB
/
example.owl
File metadata and controls
216 lines (140 loc) · 5.11 KB
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
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY p1 "#" >
<!ENTITY owl "https://www.w3.org/2002/07/owl#" >
<!ENTITY xsd "https://www.w3.org/2001/XMLSchema#" >
<!ENTITY skos "https://www.w3.org/2004/02/skos/core#" >
<!ENTITY xml "https://www.w3.org/XML/1998/namespace" >
<!ENTITY rdfs "https://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "https://www.w3.org/1999/02/22-rdf-syntax-ns#" >
]>
<rdf:RDF xmlns="https://lat.inf.tu-dresden.de/systems/jcel/example#"
xml:base="https://lat.inf.tu-dresden.de/systems/jcel/example"
xmlns:rdfs="https://www.w3.org/2000/01/rdf-schema#"
xmlns:p1="#"
xmlns:owl="https://www.w3.org/2002/07/owl#"
xmlns:xsd="https://www.w3.org/2001/XMLSchema#"
xmlns:rdf="https://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="https://www.w3.org/XML/1998/namespace"
xmlns:skos="https://www.w3.org/2004/02/skos/core#">
<owl:Ontology rdf:about="https://lat.inf.tu-dresden.de/systems/jcel/example"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- #r -->
<owl:ObjectProperty rdf:about="#r">
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
</owl:ObjectProperty>
<!-- #r1 -->
<owl:ObjectProperty rdf:about="#r1">
<rdfs:subPropertyOf rdf:resource="#r"/>
</owl:ObjectProperty>
<!-- #r2 -->
<owl:ObjectProperty rdf:about="#r2">
<rdfs:subPropertyOf rdf:resource="#r"/>
</owl:ObjectProperty>
<!-- #s -->
<owl:ObjectProperty rdf:about="#s"/>
<!-- #sMinus -->
<owl:ObjectProperty rdf:about="#sMinus">
<owl:inverseOf rdf:resource="#s"/>
</owl:ObjectProperty>
<!-- #t -->
<owl:ObjectProperty rdf:about="#t">
<rdf:type rdf:resource="&owl;TransitiveProperty"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- #C -->
<owl:Class rdf:about="#C">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#r2"/>
<owl:someValuesFrom rdf:resource="#H"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#r1"/>
<owl:someValuesFrom rdf:resource="#G"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- #D -->
<owl:Class rdf:about="#D"/>
<!-- #E -->
<owl:Class rdf:about="#E">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#t"/>
<owl:someValuesFrom>
<owl:Restriction>
<owl:onProperty rdf:resource="#t"/>
<owl:someValuesFrom rdf:resource="#D"/>
</owl:Restriction>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- #G -->
<owl:Class rdf:about="#G"/>
<!-- #H -->
<owl:Class rdf:about="#H"/>
<!-- #J -->
<owl:Class rdf:about="#J"/>
<!-- #K -->
<owl:Class rdf:about="#K"/>
<!-- #L -->
<owl:Class rdf:about="#L">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#s"/>
<owl:someValuesFrom rdf:resource="&owl;Thing"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// General axioms
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<owl:Restriction>
<rdfs:subClassOf rdf:resource="#J"/>
<owl:onProperty rdf:resource="#r"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="#G"/>
<rdf:Description rdf:about="#H"/>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
<owl:Restriction>
<rdfs:subClassOf rdf:resource="#K"/>
<owl:onProperty rdf:resource="#sMinus"/>
<owl:someValuesFrom rdf:resource="#L"/>
</owl:Restriction>
<owl:Restriction>
<rdfs:subClassOf rdf:resource="#E"/>
<owl:onProperty rdf:resource="#s"/>
<owl:someValuesFrom rdf:resource="#K"/>
</owl:Restriction>
<owl:Restriction>
<rdfs:subClassOf rdf:resource="#C"/>
<owl:onProperty rdf:resource="#t"/>
<owl:someValuesFrom rdf:resource="#D"/>
</owl:Restriction>
</rdf:RDF>
<!-- Generated by the OWL API (version 3.2.2.1789) http://owlapi.sourceforge.net -->