This repository has been archived by the owner on Sep 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgovstat.owl
455 lines (444 loc) · 16.3 KB
/
govstat.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
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
<?xml version="1.0"?>
<Ontology xmlns="http://www.w3.org/2002/07/owl#"
xml:base="http://ontology.eil.utoronto.ca/govstat.owl"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
ontologyIRI="http://ontology.eil.utoronto.ca/govstat.owl">
<Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
<Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<Prefix name="xml" IRI="http://www.w3.org/XML/1998/namespace"/>
<Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/>
<Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/>
<Annotation>
<AnnotationProperty abbreviatedIRI="owl:versionInfo"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#decimal">0.1</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Created by Mark S. Fox ([email protected]).</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"> http://ils.unc.edu/govstat/papers/govstatontology.doc.</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A version of the GovStat Ontology developed by M. Pattuelli.
Pattuelli, M.C., (2003), “The GovStat Ontology: Technical Report”. The GovStat Project, Integration Design Laboratory, School of Information and Library Science, University of North Carolina at Chapel Hill.
The ontology has been extended by M. Fox to support the definition of Population's.
Version 0.2, 2 Jun 2017
- removed sum_of_var, mean_of_var, std_of_var and replaced with parameter_of_var
Version 0.1, 17 Jan 2017:
- Added Sum as a subclass of Parameter
- Added Cardinality as subclass of Parameter
- Added object property parameter_of_var to link Parameter to Variable
- Added sum_of_var as subproperty of parameter_of_var to link Sum to Variable
- Added mean_of_var as subproperty of parameter_of_var to link Mean to Variable being summed
- Added std_of_var as subproperty of parameter_of_var to link Standard_deviation to Variable
- Added object property description_of as inverse of is_described_by
- Added sum_of property as subproperty of is_described_by to link Sum to Population
- Added std_of property as subproperty of is_described_by to link Standard_Deviation to Population
- Added mean_of property as subproperty of is_described_by to link Mean to Population
- Added Sample_sum and Sample_cardinality</Literal>
</Annotation>
<Declaration>
<Class IRI="#Sum"/>
</Declaration>
<Declaration>
<Class IRI="#Sample_mean"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#parameter_of_var"/>
</Declaration>
<Declaration>
<Class IRI="#Mean"/>
</Declaration>
<Declaration>
<Class IRI="#Population"/>
</Declaration>
<Declaration>
<Class IRI="#Cardinality"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#is_composed_of"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#is_part_of"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#is_an_estimate_of"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#std_of"/>
</Declaration>
<Declaration>
<Class IRI="#Sample"/>
</Declaration>
<Declaration>
<Class IRI="#GovStatThing"/>
</Declaration>
<Declaration>
<Class IRI="#Observation"/>
</Declaration>
<Declaration>
<Class IRI="#Variable"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#is_described_by"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#govStatObjectProperty"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#cardinality_of"/>
</Declaration>
<Declaration>
<DataProperty IRI="#govStatDataProperty"/>
</Declaration>
<Declaration>
<Class abbreviatedIRI="owl:DataTypeProperty"/>
</Declaration>
<Declaration>
<Class IRI="#Sample_cardinality"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#mean_of"/>
</Declaration>
<Declaration>
<Class IRI="#Sample_standard_deviation"/>
</Declaration>
<Declaration>
<Class abbreviatedIRI="owl:ObjectProperty"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#description_of"/>
</Declaration>
<Declaration>
<Class IRI="#Sample_sum"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#sum_of"/>
</Declaration>
<Declaration>
<Class IRI="#Statistic"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#is_characteristic_of"/>
</Declaration>
<Declaration>
<DataProperty IRI="#has_Name"/>
</Declaration>
<Declaration>
<Class IRI="#Parameter"/>
</Declaration>
<Declaration>
<Class IRI="#Standard_deviation"/>
</Declaration>
<SubClassOf>
<Class IRI="#Cardinality"/>
<Class IRI="#Parameter"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Cardinality"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#cardinality_of"/>
<Class IRI="#Population"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Mean"/>
<Class IRI="#Parameter"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Mean"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#mean_of"/>
<Class IRI="#Population"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Mean"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#parameter_of_var"/>
<Class IRI="#Variable"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Observation"/>
<Class IRI="#GovStatThing"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Parameter"/>
<Class IRI="#GovStatThing"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Parameter"/>
<ObjectMinCardinality cardinality="0">
<ObjectProperty IRI="#parameter_of_var"/>
<Class IRI="#Variable"/>
</ObjectMinCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Population"/>
<Class IRI="#GovStatThing"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Population"/>
<ObjectAllValuesFrom>
<ObjectProperty IRI="#is_composed_of"/>
<Class abbreviatedIRI="owl:Thing"/>
</ObjectAllValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Population"/>
<ObjectAllValuesFrom>
<ObjectProperty IRI="#is_described_by"/>
<Class IRI="#Parameter"/>
</ObjectAllValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Sample"/>
<Class IRI="#GovStatThing"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Sample"/>
<ObjectAllValuesFrom>
<ObjectProperty IRI="#is_composed_of"/>
<Class IRI="#Observation"/>
</ObjectAllValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Sample"/>
<ObjectAllValuesFrom>
<ObjectProperty IRI="#is_described_by"/>
<Class IRI="#Statistic"/>
</ObjectAllValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Sample"/>
<ObjectAllValuesFrom>
<ObjectProperty IRI="#is_part_of"/>
<Class IRI="#Population"/>
</ObjectAllValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Sample_cardinality"/>
<Class IRI="#Statistic"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Sample_mean"/>
<Class IRI="#Statistic"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Sample_standard_deviation"/>
<Class IRI="#Statistic"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Sample_sum"/>
<Class IRI="#Statistic"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Standard_deviation"/>
<Class IRI="#Parameter"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Standard_deviation"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#parameter_of_var"/>
<Class IRI="#Variable"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Standard_deviation"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#std_of"/>
<Class IRI="#Population"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Statistic"/>
<Class IRI="#GovStatThing"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Statistic"/>
<ObjectAllValuesFrom>
<ObjectProperty IRI="#is_an_estimate_of"/>
<Class IRI="#Parameter"/>
</ObjectAllValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Sum"/>
<Class IRI="#Parameter"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Sum"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#parameter_of_var"/>
<Class IRI="#Variable"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Sum"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#sum_of"/>
<Class IRI="#Population"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Variable"/>
<Class IRI="#GovStatThing"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Variable"/>
<ObjectAllValuesFrom>
<ObjectProperty IRI="#is_characteristic_of"/>
<Class IRI="#Observation"/>
</ObjectAllValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Variable"/>
<DataMaxCardinality cardinality="1">
<DataProperty IRI="#has_Name"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataMaxCardinality>
</SubClassOf>
<DisjointClasses>
<Class IRI="#Mean"/>
<Class IRI="#Standard_deviation"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#Observation"/>
<Class IRI="#Parameter"/>
<Class IRI="#Population"/>
<Class IRI="#Sample"/>
<Class IRI="#Statistic"/>
<Class IRI="#Variable"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#Sample_mean"/>
<Class IRI="#Sample_standard_deviation"/>
</DisjointClasses>
<SubObjectPropertyOf>
<ObjectProperty IRI="#cardinality_of"/>
<ObjectProperty IRI="#description_of"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="#description_of"/>
<ObjectProperty IRI="#govStatObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="#is_an_estimate_of"/>
<ObjectProperty IRI="#govStatObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="#is_characteristic_of"/>
<ObjectProperty IRI="#govStatObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="#is_composed_of"/>
<ObjectProperty IRI="#govStatObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="#is_described_by"/>
<ObjectProperty IRI="#govStatObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="#is_part_of"/>
<ObjectProperty IRI="#govStatObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="#mean_of"/>
<ObjectProperty IRI="#description_of"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="#parameter_of_var"/>
<ObjectProperty IRI="#govStatObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="#std_of"/>
<ObjectProperty IRI="#description_of"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="#sum_of"/>
<ObjectProperty IRI="#description_of"/>
</SubObjectPropertyOf>
<InverseObjectProperties>
<ObjectProperty IRI="#description_of"/>
<ObjectProperty IRI="#is_described_by"/>
</InverseObjectProperties>
<ObjectPropertyDomain>
<ObjectProperty IRI="#is_an_estimate_of"/>
<Class IRI="#Statistic"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#is_characteristic_of"/>
<Class IRI="#Variable"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#is_composed_of"/>
<Class IRI="#Sample"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#is_part_of"/>
<Class IRI="#Sample"/>
</ObjectPropertyDomain>
<ObjectPropertyRange>
<ObjectProperty IRI="#is_an_estimate_of"/>
<Class IRI="#Parameter"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#is_characteristic_of"/>
<Class IRI="#Observation"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#is_composed_of"/>
<Class IRI="#Observation"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#is_part_of"/>
<Class IRI="#Population"/>
</ObjectPropertyRange>
<SubDataPropertyOf>
<DataProperty IRI="#has_Name"/>
<DataProperty IRI="#govStatDataProperty"/>
</SubDataPropertyOf>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Cardinality</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Cardinality of the Population.
Note that there is no property that links Cardinality to a Variable.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#Observation</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Observation</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Parameter</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Parameter is the Class of all measures that can be made of a Population, both statistical, e.g., Mean, Starndard_devation, and others, e.g., Cardinality, Sum.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#Population</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Population</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Sum</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Sum defines the sum over a variable possessed by members of the Population.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Variable</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">The property that is being measured in the population. Since Protege is not Full DL, cannot make the property a subclass of Variable, so have to specify it as a string name using has_Name.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#Variable</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Variable</Literal>
</AnnotationAssertion>
</Ontology>
<!-- Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi -->