-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpertise-ontology.ttl
406 lines (310 loc) · 25.1 KB
/
expertise-ontology.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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
@prefix eo: <http://knowwheregraph/ontology/expertise-ontology/> .
@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 time: <http://www.w3.org/2006/time#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix schema: <http://schema.org/> .
@prefix org: <http://www.w3.org/ns/org#> .
foaf:Agent a owl:Class .
foaf:name a owl:AnnotationProperty .
dcterms:title a owl:AnnotationProperty .
dcterms:description a owl:AnnotationProperty .
dcterms:rights a owl:AnnotationProperty .
dcterms:license a owl:AnnotationProperty .
dcterms:created a owl:AnnotationProperty .
dcterms:creator a owl:AnnotationProperty .
skos:definition a owl:AnnotationProperty .
skos:example a owl:AnnotationProperty .
skos:note a owl:AnnotationProperty .
vann:preferredNamespacePrefix a owl:AnnotationProperty .
vann:preferredNamespaceUri a owl:AnnotationProperty .
schema:domainIncludes a owl:AnnotationProperty .
schema:rangeIncludes a owl:AnnotationProperty .
time:TemporalEntity a owl:Class .
eo: rdf:type owl:Ontology ;
dcterms:created "2023-03-28"^^xsd:date ;
dcterms:creator [ rdf:type foaf:Agent ;
foaf:name "The KnowWhereGraph Project"@en ] ;
dcterms:description "This ontology is for modeling experts, their expertise topics and relations between them, and their spatiotemporal scoping."@en ;
dcterms:license <https://creativecommons.org/licenses/by/4.0/> ;
dcterms:title "Expertise Ontology (EO)"@en ;
vann:preferredNamespacePrefix "eo" ;
vann:preferredNamespaceUri "http://knowwheregraph/ontology/expertise-ontology/" ;
owl:versionInfo "v 1.0" .
#################################################################
# Object Properties
#################################################################
### http://knowwheregraph/ontology/expertise-ontology/activePeriod
eo:activePeriod rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:Affiliation ;
schema:rangeIncludes time:TemporalEntity ;
rdfs:label "active period" .
### http://knowwheregraph/ontology/expertise-ontology/activity
eo:activity rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:ActivityRelation ;
schema:rangeIncludes eo:Activity ;
rdfs:comment "Denotes the relation between reified ActivityRelation class and Activity." ;
rdfs:label "activity" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between reified ActivityRelation class and Activity." .
### http://knowwheregraph/ontology/expertise-ontology/activityOf
eo:activityOf rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:ActivityRelation ;
schema:rangeIncludes eo:Activity ;
rdfs:comment "Denotes the relation between reified ActivityRelation class and Expert." ;
rdfs:label "activity of" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between reified ActivityRelation class and Expert." .
### http://knowwheregraph/ontology/expertise-ontology/affiliationOf
eo:affiliationOf rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:Affiliation ;
schema:rangeIncludes eo:Expert ;
rdfs:comment "Denotes the relation between and Affiliation category and an Expert." ;
rdfs:label "affiliation of" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between and Affiliation category and an Expert." ;
<http://www.w3.org/2004/02/skos/core#example> "Medical director, technician etc." .
### http://knowwheregraph/ontology/expertise-ontology/affiliationWith
eo:affiliationWith rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:Affiliation ;
schema:rangeIncludes eo:Organization ;
rdfs:comment "Denotes the relation between and Affiliation category and an Organization." ;
rdfs:label "affiliation with" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between and Affiliation category and an Organization." .
### http://knowwheregraph/ontology/expertise-ontology/expertiseOf
eo:expertiseOf rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:ExpertiseRelation ;
schema:rangeIncludes eo:Expert ;
rdfs:comment "Denotes the relation between reified ExpertiseRelation class and Expert." ;
rdfs:label "expertise of" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between reified ExpertiseRelation class and Expert." .
### http://knowwheregraph/ontology/expertise-ontology/fallsUnderTopic
eo:fallsUnderTopic rdf:type owl:ObjectProperty ;
schema:rangeIncludes eo:Topic ;
rdfs:comment "Relation to annotate instances in the graph, such as those pertaining to events, activities, organization specialities, affiliations, etc. with relevant topics." ;
rdfs:label "falls under topic" ;
<http://www.w3.org/2004/02/skos/core#definition> "Relation to annotate instances in the graph, such as those pertaining to events, activities, organization specialities, affiliations, etc. with relevant topics." .
### http://knowwheregraph/ontology/expertise-ontology/hasConnectDescription
eo:hasConnectDescription rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:Topic ;
schema:rangeIncludes eo:TopicConnectednessDescription ;
rdfs:comment "Relation between Topic and the reified TopicConnectednessDescription class." ;
rdfs:label "has connect description" ;
<http://www.w3.org/2004/02/skos/core#definition> "Relation between Topic and the reified TopicConnectednessDescription class." .
### http://knowwheregraph/ontology/expertise-ontology/hasExpertise
eo:hasExpertise rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:Expert ;
schema:rangeIncludes eo:Topic ;
rdfs:comment "Denotes the relation between an expert and their expertise topic." ;
rdfs:label "has expertise" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between an expert and their expertise topic." .
### http://knowwheregraph/ontology/expertise-ontology/hasGeographicLocation
eo:hasGeographicLocation rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:Expert ;
schema:rangeIncludes "http://www.opengis.net/ont/geosparql#SpatialObject" ;
rdfs:comment "Denotes the relation between an expert and their spatial location." ;
rdfs:label "has geographic location" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between an expert and their spatial location." .
### http://knowwheregraph/ontology/expertise-ontology/hasRelatedTopic
eo:hasRelatedTopic rdf:type owl:ObjectProperty ,
owl:SymmetricProperty ;
schema:domainIncludes eo:Topic ;
schema:rangeIncludes eo:Topic ;
rdfs:comment "A symmetric relation that denotes when one topic is the related to another but not necessarily a narrower 'sub-topic' or broader 'super-topic' relation." ;
rdfs:label "has related topic" ;
<http://www.w3.org/2004/02/skos/core#definition> "A symmetric relation that denotes when one topic is the related to another but not necessarily a narrower 'sub-topic' or broader 'super-topic' relation." .
### http://knowwheregraph/ontology/expertise-ontology/hasSpatialAssociation
eo:hasSpatialAssociation rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:ExpertiseRelation ,
eo:Topic ;
schema:rangeIncludes "http://www.opengis.net/ont/geosparql#SpatialObject" ;
rdfs:comment "Denotes relation between a topic and the area of interest. Also denotes the relation between an expert's expertise with a topic having a specific spatial scope." ;
rdfs:label "has spatial association" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes relation between a topic and the area of interest. Also denotes the relation between an expert's expertise with a topic having a specific spatial scope." .
### http://knowwheregraph/ontology/expertise-ontology/hasSpecialistsIn
eo:hasSpecialistsIn rdf:type owl:ObjectProperty ;
schema:domainIncludes org:Organization ;
schema:rangeIncludes eo:Speciality ;
rdfs:comment "Denotes the relation between organization and a speciality area, based on its members most suited (by virtue of their natural aptitude, location, skill, or other qualification) specialized capabilities or responsibilities." ;
rdfs:label "has specialists in" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between organization and a speciality area, based on its members most suited (by virtue of their natural aptitude, location, skill, or other qualification) specialized capabilities or responsibilities." .
### http://knowwheregraph/ontology/expertise-ontology/engagedInActivity
eo:engagedInActivity rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:Expert ;
schema:rangeIncludes eo:Activity ;
rdfs:comment "Denotes the relation between expert and an activity they may have engaged in." ;
rdfs:label "engaged in activity" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between expert and an activity they may have engaged in." .
### http://knowwheregraph/ontology/expertise-ontology/hasStudyAreaOfInterest
eo:hasStudyAreaOfInterest rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:Expert ;
schema:rangeIncludes "http://www.opengis.net/ont/geosparql#SpatialObject" ;
rdfs:comment "Denotes the relation between an expert and the spatial location that is theur study area of interest." ;
rdfs:label "has study area of interest" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between an expert and the spatial location that is theur study area of interest." .
### http://knowwheregraph/ontology/expertise-ontology/hasSubTopic
eo:hasSubTopic rdf:type owl:ObjectProperty ;
owl:inverseOf eo:isSubTopicOf ;
rdf:type owl:TransitiveProperty ;
schema:domainIncludes eo:Topic ;
schema:rangeIncludes eo:Topic ;
rdfs:comment "A transitive relation that denotes that one topic is the parent of another." ;
rdfs:label "has sub-topic" ;
<http://www.w3.org/2004/02/skos/core#definition> "A transitive relation that denotes that one topic is the parent of another." .
### http://knowwheregraph/ontology/expertise-ontology/isSubTopicOf
eo:isSubTopicOf rdf:type owl:ObjectProperty ,
owl:TransitiveProperty ;
schema:domainIncludes eo:Topic ;
schema:rangeIncludes eo:Topic ;
rdfs:comment "A transitive relation that denotes that one topic is the child of another." ;
rdfs:label "is sub-topic of" ;
<http://www.w3.org/2004/02/skos/core#definition> "A transitive relation that denotes that one topic is the child of another." .
### http://knowwheregraph/ontology/expertise-ontology/locatedIn
eo:locatedIn rdf:type owl:ObjectProperty ;
schema:domainIncludes org:Organization ;
schema:rangeIncludes <http://www.opengis.net/ont/geosparql#SpatialObject> ;
rdfs:comment "Denotes the relation between Organization and the geographic region it is spatially located in." ;
rdfs:label "located in" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between Organization and the geographic region it is spatially located in." .
### http://knowwheregraph/ontology/expertise-ontology/particularToTemporalPeriod
eo:particularToTemporalPeriod rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:ExpertiseRelation ;
schema:rangeIncludes time:TemporalEntity ;
rdfs:label "particular to temporal period" .
### http://knowwheregraph/ontology/expertise-ontology/qualitativeExpertiseLevel
eo:qualitativeExpertiseLevel rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:ExpertiseRelation ;
schema:rangeIncludes eo:ExpertiseLevel ;
rdfs:comment "Denotes a categorical assignment of expertise." ;
rdfs:label "qualitative expertise level" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes a categorical assignment of expertise." ;
<http://www.w3.org/2004/02/skos/core#example> "Academic, field expert etc." .
### http://knowwheregraph/ontology/expertise-ontology/referencesConcept
eo:referencesConcept rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:Topic ;
rdfs:comment "Connects topics with related concepts/classes in external ontologies." ;
rdfs:label "references concept" ;
<http://www.w3.org/2004/02/skos/core#definition> "Connects topics with related concepts/classes in external ontologies." .
### http://knowwheregraph/ontology/expertise-ontology/relatedToTopic
eo:relatedToTopic rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:ExpertiseRelation ;
schema:rangeIncludes eo:Topic ;
rdfs:comment "Denotes the relation between reified ExpertiseRelation class and Topic." ;
rdfs:label "related to topic" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between reified ExpertiseRelation class and Topic." .
### http://knowwheregraph/ontology/expertise-ontology/speciality
eo:speciality rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:SpecialityRelation ;
schema:rangeIncludes eo:Speciality ;
rdfs:comment "Denotes the relation between reified SpecialityRelation class and Speciality." ;
rdfs:label "speciality" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between reified SpecialityRelation class and Speciality." .
### http://knowwheregraph/ontology/expertise-ontology/specialityOf
eo:specialityOf rdf:type owl:ObjectProperty ;
schema:domainIncludes eo:SpecialityRelation ;
schema:rangeIncludes eo:Organization ;
rdfs:comment "Denotes the relation between reified SpecialityRelation class and Organization." ;
rdfs:label "speciality of" ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes the relation between reified SpecialityRelation class and Organization." .
### http://www.w3.org/ns/org#hasMember
<http://www.w3.org/ns/org#hasMember> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.w3.org/ns/org#memberOf> ;
rdfs:label "has member" ;
<http://www.w3.org/2004/02/skos/core#definition> "Indicates an agent (person or other organization) who is a member of the subject Organization. Inverse of org:memberOf, see that property for further clarification." .
### http://www.w3.org/ns/org#memberOf
<http://www.w3.org/ns/org#memberOf> rdf:type owl:ObjectProperty ;
rdfs:label "member of" ;
<http://www.w3.org/2004/02/skos/core#definition> "Indicates that an agent (person or other organization) is a member of the Organization with no indication of the nature of that membership or the role played." .
#################################################################
# Data properties
#################################################################
### http://knowwheregraph/ontology/expertise-ontology/quantitativeExpertiseLevel
eo:quantitativeExpertiseLevel rdf:type owl:DatatypeProperty ;
schema:domainIncludes eo:ExpertiseRelation ;
rdfs:comment "This relation is used to denote the numerical measure of an expert's degree of expertise on a topic" ;
rdfs:label "quantitative expertise level" .
#################################################################
# Classes
#################################################################
### http://knowwheregraph/ontology/dmdo/Affiliation
<http://knowwheregraph/ontology/dmdo/Affiliation> rdf:type owl:Class ;
rdfs:label "Affiliation" ;
<http://www.w3.org/2004/02/skos/core#definition> "This is a reification of the org:memberOf relation to denote the relationship between an agent with an organization based on their job role, for example, a public health professional’s affiliation as a program director or a trauma surgeon within a hospital." .
### http://knowwheregraph/ontology/expertise-ontology/Activity
eo:Activity rdf:type owl:Class ;
rdfs:comment "While we do no re-use concepts from standard/upper ontologies, mappings can be created between eo:Activity with similar concepts (e.g., dul:Activity) from external ontologies if needed." ;
rdfs:label "Activity" .
### http://knowwheregraph/ontology/expertise-ontology/AgentActivityRelation
eo:ActivityRelation rdf:type owl:Class ;
rdfs:label "Activity Relation" .
### http://knowwheregraph/ontology/expertise-ontology/AgentExpertiseRelation
eo:ExpertiseRelation rdf:type owl:Class ;
rdfs:comment "Reification of the eo:hasExpertise relation." ;
rdfs:label "Expertise Relation" ;
<http://www.w3.org/2004/02/skos/core#definition> "Reification of the eo:hasExpertise relation." .
### http://knowwheregraph/ontology/expertise-ontology/Expert
eo:Expert rdf:type owl:Class ;
rdfs:subClassOf foaf:Group ,
foaf:Person ;
rdfs:comment "The Expert class is meant to include individuals, or groups, who have some degree/level of expertise on a topic." ;
rdfs:label "Expert" ;
<http://www.w3.org/2004/02/skos/core#definition> "The Expert class is meant to include individuals, or groups, who have some degree/level of expertise on a topic." .
### http://knowwheregraph/ontology/expertise-ontology/ExpertiseLevel
eo:ExpertiseLevel rdf:type owl:Class ;
rdfs:label "Expertise Level" .
### http://knowwheregraph/ontology/expertise-ontology/Speciality
eo:Speciality rdf:type owl:Class ;
rdfs:comment "The specific area of interest or topic that an organization specializes in. Hospitals may, for example, specialize as orthopedic centers, surgical centers, or cardiac facilities." ;
rdfs:label "Speciality" ;
<http://www.w3.org/2004/02/skos/core#definition> "The specific area of interest or topic that an organization specializes in. Hospitals may, for example, specialize as orthopedic centers, surgical centers, or cardiac facilities." ;
<http://www.w3.org/2004/02/skos/core#note> "Specialities from external standard ontologies can be adopted for use here. For example, \"Obstetrics\" is a speciality described in the MeSH ontology (http://id.nlm.nih.gov/mesh/D009774)." .
### http://knowwheregraph/ontology/expertise-ontology/SpecialityRelation
eo:SpecialityRelation rdf:type owl:Class ;
rdfs:comment "Reification of the eo:hasSpecialistsIn relation." ;
rdfs:label "Speciality Relation" ;
<http://www.w3.org/2004/02/skos/core#definition> "Reification of the eo:hasSpecialistsIn relation." .
### http://knowwheregraph/ontology/expertise-ontology/Topic
eo:Topic rdf:type owl:Class ;
rdfs:comment "This class refers to themes or subject areas. Topics can range in scope from broad areas of knowledge like Science and Nanoscience to fine-grained areas of knowledge like the Impact of Hurricane Ida in Louisiana." ;
rdfs:label "Topic" ;
<http://www.w3.org/2004/02/skos/core#definition> "This class refers to themes or subject areas. Topics can range in scope from broad areas of knowledge like Science and Nanoscience to fine-grained areas of knowledge like the Impact of Hurricane Ida in Louisiana." ;
<http://www.w3.org/2004/02/skos/core#note> "Topic class is distinct from the concept that it refers to in a domain ontology, e.g., Disease as an instance of the Topic class vs. the Disease class from DO, but a mapping can exist between the two. Concepts differ from topics in that they represent specific instances, they may have properties describing their various features and attributes, and they can have subclasses that represent concepts that are more specific than the superclass. Topics represent an area of discourse, useful for annotating distributed content (instances and even classes) in a KG for search and summarization purposes." ,
"Topic hierarchies for a domain can be constructed from existing standard taxonomies (e.g., UNDRR HIP classification for hazards) or even domain ontologies (e.g., the Disease Ontology). Patterns such as the Scientific Taxonomy Pattern (https://github.com/shirlysteph/scientific-taxonomy-pattern) alongside vocabularies like SKOS and PROV to construct the hierarchy by describing appropriate relations between individual topics." .
### http://knowwheregraph/ontology/expertise-ontology/TopicConnectednessDescription
eo:TopicConnectednessDescription rdf:type owl:Class ;
rdfs:comment "Reification of the eo:hasSubTopic/ eo:isSubTopicOf/ eo:hasRelatedTopic relations." ;
rdfs:label "Topic Connectedness Description" ;
<http://www.w3.org/2004/02/skos/core#definition> "Reification of the eo:hasSubTopic/ eo:isSubTopicOf/ eo:hasRelatedTopic relations." .
### http://www.w3.org/2006/time#TemporalEntity
time:TemporalEntity rdf:type owl:Class ;
rdfs:label "Temporal Entity" .
### http://www.w3.org/ns/org#Organization
<http://www.w3.org/ns/org#Organization> rdf:type owl:Class ;
rdfs:subClassOf foaf:Agent ;
rdfs:comment "The org:Organization class represents a collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organizations are often decomposable into hierarchical structures." ;
rdfs:label "Organization" ;
<http://www.w3.org/2004/02/skos/core#definition> "The org:Organization class represents a collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organizations are often decomposable into hierarchical structures." .
### http://xmlns.com/foaf/0.1/Agent
foaf:Agent rdf:type owl:Class ;
rdfs:label "Agent" ;
<http://www.w3.org/2004/02/skos/core#definition> "The foaf:Agent class is the class of agents; things that do stuff. A well known sub-class is foaf:Person, representing people. Other kinds of agents include foaf:Organization and foaf:Group." .
### http://xmlns.com/foaf/0.1/Group
foaf:Group rdf:type owl:Class ;
rdfs:subClassOf foaf:Agent ;
rdfs:label "Group" ;
<http://www.w3.org/2004/02/skos/core#definition> "The foaf:Group class represents a collection of individual agents (and may itself play the role of a foaf:Agent, ie. something that can perform actions)." .
### http://xmlns.com/foaf/0.1/Person
foaf:Person rdf:type owl:Class ;
rdfs:subClassOf foaf:Agent ;
rdfs:label "Person" ,
"The foaf:Person class represents people." .
[ rdf:type foaf:Agent ;
foaf:name "The KnowWhereGraph Project"@en
] .
[ rdf:type foaf:Agent ;
foaf:name "The KnowWhereGraph Project"@en
] .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi