-
Notifications
You must be signed in to change notification settings - Fork 0
/
cdo-ontology.ttl
472 lines (310 loc) · 13.1 KB
/
cdo-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
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
@prefix : <https://onto.colossi.network/cdo#> .
@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 <https://onto.colossi.network/cdo> .
<https://onto.colossi.network/cdo> rdf:type owl:Ontology ;
<https://eupl.eu/1.2> "https://eupl.eu/1.2/en/";
<http://www.w3.org/ns/adms/relatedDocumentation> "Knowles, P., Gajderowicz, B., and Dugas, K., “Data-Centric Design: Introducing an Informatics Domain Model and Core Data Ontology for Computational Systems,” In Proceedings of the 10th International Conference on Data Mining & Knowledge Management (DaKM 2024)" ;
<http://purl.org/vocab/vann/preferredNamespacePrefix> "cdo" ;
<http://purl.org/vocab/vann/preferredNamespaceUri> "https://raw.githubusercontent.com/THCLab/ontology/refs/heads/main/output/cdo-ontology.ttl" ;
<http://purl.org/dc/elements/1.1/creator> "Paul Knowles ([email protected])" ,
"Bart Gajderowicz ([email protected])" ,
"Kieth Dugas ([email protected])" ;
<http://purl.org/dc/elements/1.1/description> """Introducing an Informatics Domain Model and Core Data Ontology for Computational Systems.""" ;
<http://purl.org/dc/elements/1.1/issued> "2024-09-20T00:00:00"^^xsd:dateTime ;
<http://purl.org/dc/elements/1.1/modified> "2024-09-20T00:00:00"^^xsd:dateTime ;
<http://purl.org/dc/elements/1.1/rights> "Copyright @ 2024 Paul Knowles, Bart Gajderowicz" ;
<http://purl.org/dc/elements/1.1/title> "Core Data Ontology" ;
owl:versionInfo "1.0" .
#################################################################
# Object Properties
#################################################################
### https://onto.colossi.network/cdo#accessedBy
:accessedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Data ;
rdfs:range :Concept .
### https://onto.colossi.network/cdo#capturedAs
:capturedAs rdf:type owl:ObjectProperty ;
rdfs:domain :Data ;
rdfs:range :Object .
### https://onto.colossi.network/cdo#constitutes
:constitutes rdf:type owl:ObjectProperty ;
rdfs:domain :Value ;
rdfs:range :Payload .
### https://onto.colossi.network/cdo#contextualizes
:contextualizes rdf:type owl:ObjectProperty ;
rdfs:domain :Concept ;
rdfs:range :Object .
### https://onto.colossi.network/cdo#defines
:defines rdf:type owl:ObjectProperty ;
rdfs:domain :Concept ;
rdfs:range :Goal .
### https://onto.colossi.network/cdo#demonstrates
:demonstrates rdf:type owl:ObjectProperty ;
rdfs:domain :Event ;
rdfs:range :Effect .
### https://onto.colossi.network/cdo#describedBy
:describedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Concept ;
rdfs:range :Term .
### https://onto.colossi.network/cdo#enteredAs
:enteredAs rdf:type owl:ObjectProperty ;
rdfs:domain :Data ;
rdfs:range :Event .
### https://onto.colossi.network/cdo#exchangedThrough
:exchangedThrough rdf:type owl:ObjectProperty ;
rdfs:domain :Data ;
rdfs:range :Action .
### https://onto.colossi.network/cdo#formsBasisOf
:formsBasisOf rdf:type owl:ObjectProperty ;
rdfs:domain :Context ;
rdfs:range :Package .
### https://onto.colossi.network/cdo#hasAttributes
:hasAttributes rdf:type owl:ObjectProperty ;
rdfs:domain :Schema ;
rdfs:range :Attribute .
### https://onto.colossi.network/cdo#hasCausality
:hasCausality rdf:type owl:ObjectProperty ;
rdfs:domain :Event ;
rdfs:range :Reason .
### https://onto.colossi.network/cdo#hasForm
:hasForm rdf:type owl:ObjectProperty ;
rdfs:domain :Attribute ;
rdfs:range :Form .
### https://onto.colossi.network/cdo#hasIntelligence
:hasIntelligence rdf:type owl:ObjectProperty ;
rdfs:domain :Action ;
rdfs:range :Reason .
### https://onto.colossi.network/cdo#hasKnowledge
:hasKnowledge rdf:type owl:ObjectProperty ;
rdfs:domain :Concept ;
rdfs:range :Scheme .
### https://onto.colossi.network/cdo#hasLineage
:hasLineage rdf:type owl:ObjectProperty ;
rdfs:domain :Track ;
rdfs:range :Stemma .
### https://onto.colossi.network/cdo#hasStructure
:hasStructure rdf:type owl:ObjectProperty ;
rdfs:domain :Object ;
rdfs:range :Scheme .
### https://onto.colossi.network/cdo#hasValidity
:hasValidity rdf:type owl:ObjectProperty ;
rdfs:domain :Fact ;
rdfs:range :Package .
### https://onto.colossi.network/cdo#initiates
:initiates rdf:type owl:ObjectProperty ;
rdfs:domain :Action ;
rdfs:range :Cause .
### https://onto.colossi.network/cdo#instanceOf
:instanceOf rdf:type owl:ObjectProperty ;
rdfs:domain :Action ;
rdfs:range :Method .
### https://onto.colossi.network/cdo#isAchieved
:isAchieved rdf:type owl:ObjectProperty ;
rdfs:domain :Event ;
rdfs:range :Goal .
### https://onto.colossi.network/cdo#isAddressedBy
:isAddressedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Effect ;
rdfs:range :Scheme .
### https://onto.colossi.network/cdo#isAffectedBy
:isAffectedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Object ;
rdfs:range :Cause .
### https://onto.colossi.network/cdo#isBasisFor
:isBasisFor rdf:type owl:ObjectProperty ;
rdfs:domain :Packet ;
rdfs:range :Fact .
### https://onto.colossi.network/cdo#isCausal
:isCausal rdf:type owl:ObjectProperty ;
rdfs:domain :Object ;
rdfs:range :Effect .
### https://onto.colossi.network/cdo#isContextual
:isContextual rdf:type owl:ObjectProperty ;
rdfs:domain :Frame ;
rdfs:range :Context .
### https://onto.colossi.network/cdo#isDefinedBy
:isDefinedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Object ;
rdfs:range :Attribute .
### https://onto.colossi.network/cdo#isDocumentedIn
:isDocumentedIn rdf:type owl:ObjectProperty ;
rdfs:domain :Term ;
rdfs:range :Notice .
### https://onto.colossi.network/cdo#isExpressedAs
:isExpressedAs rdf:type owl:ObjectProperty ;
rdfs:domain :Concept ;
rdfs:range :Method .
### https://onto.colossi.network/cdo#isFramedBy
:isFramedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Notice ;
rdfs:range :Frame .
### https://onto.colossi.network/cdo#isJustifiedBy
:isJustifiedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Method ;
rdfs:range :Reason .
### https://onto.colossi.network/cdo#isLogged
:isLogged rdf:type owl:ObjectProperty ;
rdfs:domain :Field ;
rdfs:range :Log .
### https://onto.colossi.network/cdo#isStemmatic
:isStemmatic rdf:type owl:ObjectProperty ;
rdfs:domain :Log ;
rdfs:range :Record .
### https://onto.colossi.network/cdo#isSystemic
:isSystemic rdf:type owl:ObjectProperty ;
rdfs:domain :Form ;
rdfs:range :Schema .
### https://onto.colossi.network/cdo#isTextual
:isTextual rdf:type owl:ObjectProperty ;
rdfs:domain :Schema ;
rdfs:range :Text .
### https://onto.colossi.network/cdo#isTractual
:isTractual rdf:type owl:ObjectProperty ;
rdfs:domain :Record ;
rdfs:range :Track .
### https://onto.colossi.network/cdo#isTransmittedBy
:isTransmittedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Payload ;
rdfs:range :Packet .
### https://onto.colossi.network/cdo#occursIn
:occursIn rdf:type owl:ObjectProperty ;
rdfs:domain :Event ;
rdfs:range :Field .
### https://onto.colossi.network/cdo#processes
:processes rdf:type owl:ObjectProperty ;
rdfs:domain :Action ;
rdfs:range :Value .
### https://onto.colossi.network/cdo#traces
:traces rdf:type owl:ObjectProperty ;
rdfs:domain :Stemma ;
rdfs:range :Effect .
### https://onto.colossi.network/cdo#triggers
:triggers rdf:type owl:ObjectProperty ;
rdfs:domain :Action ;
rdfs:range :Event .
### https://onto.colossi.network/cdo#underpins
:underpins rdf:type owl:ObjectProperty ;
rdfs:domain :Text ;
rdfs:range :Stemma .
### https://onto.colossi.network/cdo#utlizes
:utlizes rdf:type owl:ObjectProperty ;
rdfs:domain :Package ;
rdfs:range :Method .
#################################################################
# Classes
#################################################################
### https://onto.colossi.network/cdo#Action
:Action rdf:type owl:Class ;
rdfs:subClassOf :Active .
### https://onto.colossi.network/cdo#Active
:Active rdf:type owl:Class ;
rdfs:subClassOf :Behaviour .
### https://onto.colossi.network/cdo#Attribute
:Attribute rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Behaviour
:Behaviour rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#CDOThing
:CDOThing rdf:type owl:Class ;
rdfs:subClassOf owl:Thing ;
rdfs:comment "CDOThing is the top CDO class."^^xsd:string .
### https://onto.colossi.network/cdo#Cause
:Cause rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Concept
:Concept rdf:type owl:Class ;
rdfs:subClassOf :Subjective .
### https://onto.colossi.network/cdo#Context
:Context rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Data
:Data rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Effect
:Effect rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Event
:Event rdf:type owl:Class ;
rdfs:subClassOf :Objective .
### https://onto.colossi.network/cdo#Fact
:Fact rdf:type owl:Class ;
rdfs:subClassOf :CDOThing ;
rdfs:comment "A Value is factual once a Packet's ACK (acknowledgement) message is received."^^xsd:string .
### https://onto.colossi.network/cdo#Field
:Field rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Form
:Form rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Frame
:Frame rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Goal
:Goal rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Log
:Log rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Method
:Method rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Notice
:Notice rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Object
:Object rdf:type owl:Class ;
rdfs:subClassOf :Passive .
### https://onto.colossi.network/cdo#Objective
:Objective rdf:type owl:Class ;
rdfs:subClassOf :Perspective .
### https://onto.colossi.network/cdo#Package
:Package rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Packet
:Packet rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Passive
:Passive rdf:type owl:Class ;
rdfs:subClassOf :Behaviour .
### https://onto.colossi.network/cdo#Payload
:Payload rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Perspective
:Perspective rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Reason
:Reason rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Record
:Record rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Schema
:Schema rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Scheme
:Scheme rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Stemma
:Stemma rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Subjective
:Subjective rdf:type owl:Class ;
rdfs:subClassOf :Perspective .
### https://onto.colossi.network/cdo#Term
:Term rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Text
:Text rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Track
:Track rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### https://onto.colossi.network/cdo#Value
:Value rdf:type owl:Class ;
rdfs:subClassOf :CDOThing .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi