-
Notifications
You must be signed in to change notification settings - Fork 0
/
agent_relationship_type.owl
286 lines (127 loc) · 6.17 KB
/
agent_relationship_type.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
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
275
276
277
278
279
280
281
282
283
284
285
@prefix : <http://example.org/ovn#> .
@prefix org: <http://www.w3.org/ns/org#> .
@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 foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://www.schema.org/> .
@base <http://example.org/ovn> .
<http://example.org/ovn> rdf:type owl:Ontology .
#################################################################
# This is a modification of
#
#
#
#################################################################
#
# Object Properties
#
#################################################################
### http://example.org/ovn#hasRelated
:hasRelated rdf:type owl:ObjectProperty ;
rdfs:domain :Agent ;
rdfs:range :Relationship .
### http://example.org/ovn#hasRelationship
:hasRelationship rdf:type owl:ObjectProperty ;
rdfs:comment "The relationship the agent has or is with other agents" ;
rdfs:domain :Agent ;
rdfs:range :Relationship .
### http://example.org/ovn#isRelated
:isRelated rdf:type owl:ObjectProperty ;
rdfs:range :Agent ;
rdfs:domain :Relationship .
### http://example.org/ovn#relationshipStatus
:relationshipStatus rdf:type owl:ObjectProperty ;
rdfs:comment "The status of the relationship" ;
rdfs:domain :Relationship ;
rdfs:range :RelationshipStatusType .
### http://example.org/ovn#relationshipType
:relationshipType rdf:type owl:ObjectProperty ;
rdfs:comment "The type of agent relationship" ;
rdfs:domain :Relationship ;
rdfs:range :RelationshipType .
### http://example.org/ovn#relationshipTypeName
:relationshipTypeName rdf:type owl:ObjectProperty ;
rdfs:comment "The name of the type of agent relationship" ;
rdfs:domain :RelationshipType ;
rdfs:range :RelationshipTypeName .
### http://example.org/ovn#symmetrichasRelationship
:symmetrichasRelationship rdf:type owl:ObjectProperty ;
rdfs:comment "The symmetric relationship that corresponds to this relationship." ;
rdfs:domain :Agent ;
rdfs:range :Relationship .
#################################################################
#
# Data properties
#
#################################################################
### http://example.org/ovn#description
:description rdf:type owl:DatatypeProperty ;
rdfs:comment "description of schemame Thing" ;
rdfs:range xsd:string ;
rdfs:domain owl:Thing .
### http://example.org/ovn#label
:label rdf:type owl:DatatypeProperty ;
rdfs:comment "A label of the type of agent relationship" ;
rdfs:domain :RelationshipType ;
rdfs:range xsd:string .
### http://example.org/ovn#name
:agentName rdf:type owl:DatatypeProperty ;
rdfs:comment "name of schemame Thing" ;
rdfs:range xsd:string ;
rdfs:domain :Agent .
### http://example.org/ovn#pluralLabel
:pluralLabel rdf:type owl:DatatypeProperty ;
rdfs:comment "A plural label of the type of agent relationship" ;
rdfs:domain :RelationshipType ;
rdfs:range xsd:string .
#################################################################
#
# Classes
#
#################################################################
### http://example.org/ovn#Agent
:Agent rdf:type owl:Class ;
owl:equivalentClass foaf:Agent ;
rdfs:comment "An Agent" .
### http://example.org/ovn#Relationship
:Relationship rdf:type owl:Class ;
owl:equivalentClass org:Membership ;
rdfs:comment "A relationship between multiple agents" .
### http://example.org/ovn#RelationshipStatusType
:RelationshipStatusType rdf:type owl:Class ;
rdfs:comment "The status of the relationship" .
### http://example.org/ovn#RelationshipType
:RelationshipType rdf:type owl:Class ;
rdfs:comment "A type of relationship between multiple agents" .
### http://example.org/ovn#RelationshipTypeName
:RelationshipTypeName rdf:type owl:Class ;
rdfs:comment "The name of the type of agent relationship" .
### http://example.org/ovn#active
:active rdf:type owl:Class ;
rdfs:subClassOf :RelationshipStatusType .
### http://example.org/ovn#child
:child rdf:type owl:Class ;
rdfs:subClassOf :RelationshipTypeName .
### http://example.org/ovn#customer
:customer rdf:type owl:Class ;
rdfs:subClassOf :RelationshipTypeName .
### http://example.org/ovn#inactive
:inactive rdf:type owl:Class ;
rdfs:subClassOf :RelationshipStatusType .
### http://example.org/ovn#member
:member rdf:type owl:Class ;
rdfs:subClassOf :RelationshipTypeName .
### http://example.org/ovn#potential
:potential rdf:type owl:Class ;
rdfs:subClassOf :RelationshipStatusType .
### http://example.org/ovn#supplier
:supplier rdf:type owl:Class ;
rdfs:subClassOf :RelationshipTypeName .
### http://www.w3.org/ns/org#Membership
org:Membership rdf:type owl:Class .
### http://xmlns.com/foaf/0.1/Agent
foaf:Agent rdf:type owl:Class .
### Generated by the OWL API (version 3.5.1) http://owlapi.sourceforge.net