forked from ahemaid/NOSQLOnto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
nosql.ttl
550 lines (355 loc) · 16.5 KB
/
nosql.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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
@prefix : <http://purl.org/db/nosql#> .
@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 <http://purl.org/db/nosql> .
<http://purl.org/db/nosql> rdf:type owl:Ontology ;
<http://creativecommons.org/ns#license> <http://creativecommons.org/licenses/by-nc-sa/3.0/> ;
<http://purl.org/dc/elements/1.1/created> "2017-12-15T17:00:00"^^xsd:dateTime ;
<http://purl.org/dc/elements/1.1/creator> "http://mohamednadjibmami.com/me"^^xsd:string ;
<http://purl.org/dc/elements/1.1/description> "A vocabulary about NOSQL stores, and their related concepts."^^xsd:string ;
<http://purl.org/dc/elements/1.1/publisher> <http://de.dbpedia.org/resource/Fraunhofer-Gesellschaft> ;
<http://purl.org/dc/elements/1.1/rights> <http://creativecommons.org/licenses/by-nc-sa/3.0/> ;
<http://purl.org/dc/elements/1.1/title> "Vocabulary about NOSQL stores"@en ;
<http://purl.org/vocab/vann/preferredNamespacePrefix> "nosql"^^xsd:string ;
<http://purl.org/vocab/vann/preferredNamespaceUri> "http://purl.org/db/nosql#"^^xsd:string ;
rdfs:comment "Version 0.1: 1st publication"^^xsd:string ;
owl:versionInfo "0.1"^^xsd:string .
#################################################################
# Annotation properties
#################################################################
### http://creativecommons.org/ns#license
<http://creativecommons.org/ns#license> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/contributor
<http://purl.org/dc/elements/1.1/contributor> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/creator
<http://purl.org/dc/elements/1.1/creator> rdf:type owl:AnnotationProperty .
### http://www.w3.org/1999/02/22-rdf-syntax-ns#about
rdf:about rdf:type owl:AnnotationProperty ;
rdf:label "About"@en.
### http://www.w3.org/1999/02/22-rdf-syntax-ns#resource
rdf:resource rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://purl.org/db/nosql#compliesWith
:compliesWith rdf:type owl:ObjectProperty ;
rdfs:domain :Store ;
rdfs:range :Properties ;
rdfs:comment "Databases is a compliant with which properties, like relational database with ACID properties, or NOSQL wirh BASE properties."@en .
### http://purl.org/db/nosql#hasAttribute
:hasAttribute rdf:type owl:ObjectProperty ;
rdfs:domain :Entity ;
rdfs:range :Attribute ;
rdfs:comment "An entity in a database consists of a set of attributes."@en .
### http://purl.org/db/nosql#hasCollection
:hasCollection rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasEntity ;
rdfs:domain :MongoDB ;
rdfs:range :Collection ;
rdfs:comment "Special to MongoDB, data is stored in collections of documents."@en .
### http://purl.org/db/nosql#hasData_Bucket
:hasData_Bucket rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasEntity ;
rdfs:domain :CouchDB ;
rdfs:range :Data_Bucket ;
rdfs:comment "Special to CouchDB databases, a CouchDB has a number of data buckets."@en .
### http://purl.org/db/nosql#hasEntity
:hasEntity rdf:type owl:ObjectProperty ;
rdfs:domain :Store ;
rdfs:range :Entity ;
rdfs:comment "A database contails one or more entities."@en .
### http://purl.org/db/nosql#hasIndex
:hasIndex rdf:type owl:ObjectProperty ;
rdfs:domain :Store ;
rdfs:range :Index .
### http://purl.org/db/nosql#hasPrimaryKey
:hasPrimaryKey rdf:type owl:ObjectProperty ;
rdfs:domain :Entity ;
rdfs:range :PrimaryKey ;
rdfs:comment "Sets the primary key of an entity of a database."@en .
### http://purl.org/db/nosql#hasTable
:hasTable rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasEntity ;
rdfs:domain :NonRelationalDB ;
rdfs:range :Table ;
rdfs:comment "Certain NOSQL databases store data in tables."@en .
### http://purl.org/db/nosql#queriedBy
:queriedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Store ;
rdfs:range :QueryLanguage ;
rdfs:comment "Define the query language of a certain database."@en .
### http://purl.org/db/nosql#runsIn
:runsIn rdf:type owl:ObjectProperty ;
rdfs:domain :Store ;
rdfs:range :Cluster ;
rdfs:comment "A distributed database can run in a cluster."@en .
### http://purl.org/db/nosql#store
:store rdf:type owl:ObjectProperty ;
rdf:label "Store";
rdfs:range :Store .
### http://purl.org/db/nosql#viewIn
:viewIn rdf:type owl:ObjectProperty ;
rdfs:domain :View ;
rdfs:range :Store .
#################################################################
# Classes
#################################################################
### http://purl.org/db/nosql#ACID
:ACID rdf:type owl:Class ;
rdfs:subClassOf :Properties ;
owl:disjointWith :BASE ;
rdfs:comment "In a database, ACID are four properties: Atomicity, Consistency, Isolation, and Durability, that ensure that transactions, failed or succeded, leave the data in a valid and consistent state."@en .
### http://purl.org/db/nosql#AQL
:AQL rdf:type owl:Class ;
rdfs:subClassOf :QueryLanguage ;
rdfs:comment "ArangoDB Query Language, query language used to interact with an ArangoDB database."@en .
### http://purl.org/db/nosql#Accumulo
:Accumulo rdf:type owl:Class ;
rdfs:subClassOf :Columnar .
### http://purl.org/db/nosql#AllegroGraph
:AllegroGraph rdf:type owl:Class ;
rdfs:subClassOf :Graph .
### http://purl.org/db/nosql#ArangoDB
:ArangoDB rdf:type owl:Class ;
rdfs:subClassOf :Document ,
:Graph ,
:KeyValue ,
:Multi-model .
### http://purl.org/db/nosql#Attribute
:Attribute rdf:type owl:Class ;
rdfs:comment "A term that groups all concepts used by different databases to characterize a particular datum stored in it, e.g., column in Cassandra, field in MongoDB"@en .
### http://purl.org/db/nosql#BASE
:BASE rdf:type owl:Class ;
rdfs:subClassOf :Properties ;
rdfs:comment "A set of four properties: Basically Available, Soft state, Eventual consistency, that are commonly found in distributed NOSQL stores, as apposed to ACID in relational databases. Data added might not be ready for query everywhere, but will eventually be, and hence a system state is in constant change."@en .
### http://purl.org/db/nosql#Bagri
:Bagri rdf:type owl:Class ;
rdfs:subClassOf :Document .
### http://purl.org/db/nosql#Berkeley_DB
:Berkeley_DB rdf:type owl:Class ;
rdfs:subClassOf :KeyValue .
### http://purl.org/db/nosql#Blazegraph
:Blazegraph rdf:type owl:Class ;
rdfs:subClassOf :Graph .
### http://purl.org/db/nosql#CQL
:CQL rdf:type owl:Class ;
rdfs:subClassOf :QueryLanguage ;
rdfs:comment "Cassandra Query Language, query language (SQL-like) used to interact with a Cassandra database."@en .
### http://purl.org/db/nosql#Cassandra
:Cassandra rdf:type owl:Class ;
rdfs:subClassOf :Columnar .
### http://purl.org/db/nosql#Chouchbase
:Chouchbase rdf:type owl:Class ;
rdfs:subClassOf :Document .
### http://purl.org/db/nosql#Cloud_Datastore
:Cloud_Datastore rdf:type owl:Class ;
rdfs:subClassOf :Document .
### http://purl.org/db/nosql#Cloudant
:Cloudant rdf:type owl:Class ;
rdfs:subClassOf :Document .
### http://purl.org/db/nosql#Cluster
:Cluster rdf:type owl:Class ;
rdfs:comment "A group of physical or virtual computing machines."@en .
### http://purl.org/db/nosql#Collection
:Collection rdf:type owl:Class ;
rdfs:subClassOf :Entity .
### http://purl.org/db/nosql#Columnar
:Columnar rdf:type owl:Class ;
rdfs:subClassOf :Store ;
rdfs:comment "Columnar or column-based store organises data virtually around rows, but stores it physically by columns. It may allow to store rows of different schema in one same table."@en .
### http://purl.org/db/nosql#Cosmos_DB
:Cosmos_DB rdf:type owl:Class ;
rdfs:subClassOf :Columnar ,
:Document ,
:Graph ,
:KeyValue ,
:Multi-model .
### http://purl.org/db/nosql#CouchDB
:CouchDB rdf:type owl:Class ;
rdfs:subClassOf :Document .
### http://purl.org/db/nosql#Cypher
:Cypher rdf:type owl:Class ;
rdfs:subClassOf :QueryLanguage ;
rdfs:comment "Query language used to intereact with a Neo4j database."@en .
### http://purl.org/db/nosql#DSE_Graph
:DSE_Graph rdf:type owl:Class ;
rdfs:subClassOf :Graph .
### http://purl.org/db/nosql#Data_Bucket
:Data_Bucket rdf:type owl:Class ;
rdfs:subClassOf :Entity .
### http://purl.org/db/nosql#Dgraph
:Dgraph rdf:type owl:Class ;
rdfs:subClassOf :Graph .
### http://purl.org/db/nosql#Document
:Document rdf:type owl:Class ;
rdfs:subClassOf :Store ;
rdfs:comment "Document store stores data in form of documents, like under JSOB/BSON formats."@en .
### http://purl.org/db/nosql#DocumentDB
:DocumentDB rdf:type owl:Class ;
rdfs:subClassOf :Document .
### http://purl.org/db/nosql#DocumentID
:DocumentID rdf:type owl:Class ;
rdfs:subClassOf :PrimaryKey .
### http://purl.org/db/nosql#Druid
:Druid rdf:type owl:Class ;
rdfs:subClassOf :Columnar .
### http://purl.org/db/nosql#DynamoDB
:DynamoDB rdf:type owl:Class ;
rdfs:subClassOf :KeyValue .
### http://purl.org/db/nosql#Elassandra
:Elassandra rdf:type owl:Class ;
rdfs:subClassOf :Columnar .
### http://purl.org/db/nosql#Entity
:Entity rdf:type owl:Class ;
rdfs:comment "A term that groups all concepts used by different databases to store similar data together."@en .
### http://purl.org/db/nosql#GlobalSecondaryIndex
:GlobalSecondaryIndex rdf:type owl:Class ;
rdfs:subClassOf :View .
### http://purl.org/db/nosql#Graph
:Graph rdf:type owl:Class ;
rdfs:subClassOf :Store ;
rdfs:comment "Graph store stores highly interconnected data, in form of graphs."@en .
### http://purl.org/db/nosql#Graph_Engine
:Graph_Engine rdf:type owl:Class ;
rdfs:subClassOf :Graph .
### http://purl.org/db/nosql#HBase
:HBase rdf:type owl:Class ;
rdfs:subClassOf :Columnar .
### http://purl.org/db/nosql#HQL
:HQL rdf:type owl:Class ;
rdfs:subClassOf :QueryLanguage ;
rdfs:comment "Hypertable Query Language, query language (SQL-like) used to interact with a Hypertable database."@en .
### http://purl.org/db/nosql#HypergraphDB
:HypergraphDB rdf:type owl:Class ;
rdfs:subClassOf :Graph .
### http://purl.org/db/nosql#Hypertable
:Hypertable rdf:type owl:Class ;
rdfs:subClassOf :Columnar .
### http://purl.org/db/nosql#Index
:Index rdf:type owl:Class .
### http://purl.org/db/nosql#InfiniteGraph
:InfiniteGraph rdf:type owl:Class ;
rdfs:subClassOf :Graph .
### http://purl.org/db/nosql#JanusGraph
:JanusGraph rdf:type owl:Class ;
rdfs:subClassOf :Graph .
### http://purl.org/db/nosql#KeyValue
:KeyValue rdf:type owl:Class ;
rdfs:subClassOf :Store ;
rdfs:comment "Key-value store stores data in form of long key,value maps."@en .
### http://purl.org/db/nosql#Kudu
:Kudu rdf:type owl:Class ;
rdfs:subClassOf :Columnar .
### http://purl.org/db/nosql#MarkLogic
:MarkLogic rdf:type owl:Class ;
rdfs:subClassOf :Document .
### http://purl.org/db/nosql#MaterializedView
:MaterializedView rdf:type owl:Class ;
rdfs:subClassOf :View .
### http://purl.org/db/nosql#Memcached
:Memcached rdf:type owl:Class ;
rdfs:subClassOf :KeyValue .
### http://purl.org/db/nosql#MonetDB
:MonetDB rdf:type owl:Class ;
rdfs:subClassOf :Columnar .
### http://purl.org/db/nosql#MongoDB
:MongoDB rdf:type owl:Class ;
rdfs:subClassOf :Document .
### http://purl.org/db/nosql#Multi-model
:Multi-model rdf:type owl:Class ;
rdfs:subClassOf :Store .
### http://purl.org/db/nosql#N1QL
:N1QL rdf:type owl:Class ;
rdfs:subClassOf :QueryLanguage ;
rdfs:comment "Query language (SQL-like) used to interact with a Couchbase database."^^xsd:string .
### http://purl.org/db/nosql#Neo4j
:Neo4j rdf:type owl:Class ;
rdfs:subClassOf :Graph .
### http://purl.org/db/nosql#NonRelationalDB
:NonRelationalDB rdf:type owl:Class ;
owl:equivalentClass :Store ;
rdfs:comment "A non-relation database, is a database that is designed around other models than the relational model. Used interchangbly with NOSQL database or store."@en .
### http://purl.org/db/nosql#ObjectID
:ObjectID rdf:type owl:Class ;
rdfs:subClassOf :PrimaryKey .
### http://purl.org/db/nosql#Oracle_NoSQL_Database
:Oracle_NoSQL_Database rdf:type owl:Class ;
rdfs:subClassOf :KeyValue .
### http://purl.org/db/nosql#OrientDB
:OrientDB rdf:type owl:Class ;
rdfs:subClassOf :Document ,
:Graph ,
:KeyValue ,
:Multi-model .
### http://purl.org/db/nosql#PrimaryKey
:PrimaryKey rdf:type owl:Class .
### http://purl.org/db/nosql#Primary_key
:Primary_key rdf:type owl:Class ;
rdfs:subClassOf :PrimaryKey .
### http://purl.org/db/nosql#Properties
:Properties rdf:type owl:Class .
### http://purl.org/db/nosql#QueryLanguage
:QueryLanguage rdf:type owl:Class ;
rdfs:comment "A syntax of a query or dialect to interact with a database."@en .
### http://purl.org/db/nosql#RavenDB
:RavenDB rdf:type owl:Class ;
rdfs:subClassOf :Document .
### http://purl.org/db/nosql#Redis
:Redis rdf:type owl:Class ;
rdfs:subClassOf :KeyValue .
### http://purl.org/db/nosql#RethinkDB
:RethinkDB rdf:type owl:Class ;
rdfs:subClassOf :Document .
### http://purl.org/db/nosql#Riak
:Riak rdf:type owl:Class ;
rdfs:subClassOf :KeyValue .
### http://purl.org/db/nosql#Scalaris
:Scalaris rdf:type owl:Class ;
rdfs:subClassOf :KeyValue .
### http://purl.org/db/nosql#Scylla
:Scylla rdf:type owl:Class ;
rdfs:subClassOf :Columnar .
### http://purl.org/db/nosql#SecondaryIndex
:SecondaryIndex rdf:type owl:Class ;
rdfs:subClassOf :Index .
### http://purl.org/db/nosql#SequoiaDB
:SequoiaDB rdf:type owl:Class ;
rdfs:subClassOf :Document .
### http://purl.org/db/nosql#SimpleDB
:SimpleDB rdf:type owl:Class ;
rdfs:subClassOf :Columnar .
### http://purl.org/db/nosql#Sparksee
:Sparksee rdf:type owl:Class ;
rdfs:subClassOf :Graph .
### http://purl.org/db/nosql#Store
:Store rdf:type owl:Class ;
rdfs:comment "Only SQL, NOSQL stores are databases designed around other models than the traditional relational database. It has five categories: Key-value, document, columnar, graph and multi-model."@en ,
"Set the type of NOSQL a certain database is."@en .
### http://purl.org/db/nosql#Table
:Table rdf:type owl:Class ;
rdfs:subClassOf :Entity .
### http://purl.org/db/nosql#Tarantool
:Tarantool rdf:type owl:Class ;
rdfs:subClassOf :KeyValue .
### http://purl.org/db/nosql#Trinity
:Trinity rdf:type owl:Class ;
rdfs:subClassOf :Graph .
### http://purl.org/db/nosql#View
:View rdf:type owl:Class .
### http://purl.org/db/nosql#Voldemort
:Voldemort rdf:type owl:Class ;
rdfs:subClassOf :KeyValue .
### http://purl.org/db/nosql#c-treeACE
:c-treeACE rdf:type owl:Class ;
rdfs:subClassOf :KeyValue .
### http://purl.org/db/nosql#upscaledb
:upscaledb rdf:type owl:Class ;
rdfs:subClassOf :KeyValue .
[ rdf:resource "http://creativecommons.org/licenses/by/3.0/"^^xsd:string
] .
[ rdf:about "http://mohamednadjibmami.com/me"^^xsd:string
] .
### Generated by the OWL API (version 5.1.0) https://github.com/owlcs/owlapi/