-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcybele-semantic-model.ttl
649 lines (480 loc) · 25.5 KB
/
cybele-semantic-model.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
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
@prefix : <http://w3id.org/cybele/model#> .
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix dct: <http://purl.org/dc/terms/> .
@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 dcat: <http://www.w3.org/ns/dcat#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix schema: <http://schema.org/> .
@prefix cybele: <http://w3id.org/cybele/model#> .
@prefix sdmx-attribute: <http://purl.org/linked-data/sdmx/2009/attribute#> .
@base <http://w3id.org/cybele/model#> .
<http://w3id.org/cybele/model> rdf:type owl:Ontology ;
### TODO: Update on release
owl:versionIRI <https://gitlab.res.eng.it/cybele/cybele-common-semantic-model/raw/master/cybele-semantic-model.ttl> ;
owl:versionInfo "3.0" ;
dct:modified "2020-07-30T12:00:00Z"^^xsd:dateTime ;
### end TODO
dct:issued "2019-08-30T12:00:00Z"^^xsd:dateTime ;
dct:contributor [ schema:affiliation [ foaf:name "UPRC"
] ;
foaf:name "Giorgos Santipantakis"
] ,
[ schema:affiliation [ foaf:name "OGC"
] ;
foaf:name "Ingo Simonis"
] ,
[ schema:affiliation [ foaf:name "EXUS"
] ;
foaf:name "Maria Plakia"
] ,
[ schema:affiliation [ foaf:name "OGC"
] ;
foaf:name "Martin Klopfer"
] ,
[ schema:affiliation [ foaf:name "ICCS"
] ;
foaf:name "Spiros Mouzakitis"
] ,
[ schema:affiliation [ foaf:name "SUITE5"
] ;
foaf:name "Konstantinos Latanis"
] ,
[ schema:affiliation [ foaf:name "WU"
] ;
foaf:name "Dilli Paudel"
] ,
[ schema:affiliation [ foaf:name "CERTH"
] ;
foaf:name "Konstantinos Tarabanis"
] ,
[ schema:affiliation [ foaf:name "EXUS"
] ;
foaf:name "Konstantinos Kentrotis"
] ,
[ schema:affiliation [ foaf:name "CERTH"
] ;
foaf:name "Areti Karamanou"
] ,
[ schema:affiliation [ foaf:name "CERTH"
] ;
foaf:name "Evangelos Kalampokis"
] ,
[ schema:affiliation [ foaf:name "CERTH"
] ;
foaf:name "Tambouris Efthimios"
] ,
[ schema:affiliation [ foaf:name "CERTH"
] ;
foaf:name "Eleni Panopoulou"
] ;
dct:creator [ schema:affiliation [ foaf:name "PSNC"
] ;
rdfs:seeAlso <http://orcid.org/0000-0003-4289-4922> ;
foaf:name "Raul Palma"
] ,
[ schema:affiliation [ foaf:name "CERTH"
] ;
foaf:name "Dimitris Zeginis"
] ,
[ schema:affiliation [ foaf:name "OGC"
] ;
foaf:name "Rob Atkinson"
] ;
dct:rights "This vocabulary is distributed under Creative Commons Attribution 4.0 License - http://creativecommons.org/licenses/by/4.0"@en ;
dct:license <http://creativecommons.org/licenses/by/4.0/> ;
dct:publisher <https://www.cybele-project.eu/> ;
dct:description "The CYBELE Semantic Model serves as a common reference model for the semantic annotation and sharing of data including sensor data, satellite and aerial image data, statistical data, streaming data, video data, weather and climate data, supporting the on demand discovery and exploration. This semantic model is used in the semantic annotation, sharing and inter-connection of CYBELE datasets. In particular, it is used to create metadata for the datasets (e.g. data theme, spatial/temporal coverage, data format, periodicity, licence), which will facilitate: i) the discovery and exploration of the CYBELE datasets; ii) the description of the data needs of CYBELE apps. Additional information about the model is available at https://gitlab.res.eng.it/cybele/cybele-common-semantic-model"@en ;
dct:title "CYBELE Semantic Model"@en ;
rdfs:comment "The CYBELE Semantic Model is used in the semantic annotation, sharing and inter-connection of CYBELE datasets. THe model has been implemented by reusing relevant terms from standard and well-known ontologies and vocabularies, including: DCAT, FOAF, PROV-O, Dublin Core, StatDCAT-AP, SKOS and Data Cube"@en ;
foaf:depiction <https://gitlab.res.eng.it/cybele/data/cybele-common-semantic-model/-/raw/master/images/model_matching.jpg> ;
foaf:maker [ foaf:homepage <https://www.cybele-project.eu/> ;
foaf:name "CYBELE project"
] .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/description
dct:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
dct:title rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/rights
dct:rights rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/contributor
dct:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dct:creator rdf:type owl:AnnotationProperty .
### http://schema.org/affiliation
schema:affiliation rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/depiction
foaf:depiction rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/homepage
foaf:homepage rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/maker
foaf:maker rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/name
foaf:name rdf:type owl:AnnotationProperty .
#################################################################
# RDF property
#################################################################
### http://purl.org/linked-data/sdmx/2009/attribute#unitMeasure
sdmx-attribute:unitMeasure a rdf:Property ;
rdfs:label "Unit of Measure"@en ;
rdfs:isDefinedBy <https://sdmx.org/wp-content/uploads/01_sdmx_cog_annex_1_cdc_2009.pdf> .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/2001/XMLSchema#duration
xsd:duration rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### http://purl.org/dc/terms/accrualPeriodicity
dct:accrualPeriodicity rdf:type owl:ObjectProperty ;
rdfs:range dct:Frequency ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/conformsTo
dct:conformsTo rdf:type owl:ObjectProperty ;
rdfs:range dct:Standard ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/language
dct:language rdf:type owl:ObjectProperty ;
rdfs:range dct:LinguisticSystem ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/license
dct:license rdf:type owl:ObjectProperty ;
rdfs:range dct:LicenseDocument ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/publisher
dct:publisher rdf:type owl:ObjectProperty ;
rdfs:range foaf:Agent ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/spatial
dct:spatial rdf:type owl:ObjectProperty ;
rdfs:range dct:Location ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/subject
dct:subject rdf:type owl:ObjectProperty ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/temporal
dct:temporal rdf:type owl:ObjectProperty ;
rdfs:range dct:PeriodOfTime ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/accessRights
dct:accessRights rdf:type owl:ObjectProperty ;
rdfs:range dct:RightsStatement ;
rdfs:isDefinedBy dct: .
### http://www.w3.org/ns/dcat#dataset
dcat:dataset rdf:type owl:ObjectProperty ;
rdfs:domain dcat:Catalog ;
rdfs:range dcat:Dataset ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/dcat#downloadURL
dcat:downloadURL rdf:type owl:ObjectProperty ;
rdfs:domain dcat:Distribution ;
rdfs:range rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/dcat#endpointURL
dcat:endpointURL rdf:type owl:ObjectProperty ;
rdfs:domain dcat:DataService ;
rdfs:range rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/dcat#landingPage
dcat:landingPage rdf:type owl:ObjectProperty ;
rdfs:range foaf:Document ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/dcat#mediaType
dcat:mediaType rdf:type owl:ObjectProperty ;
rdfs:domain dcat:Distribution ;
rdfs:range dct:MediaType ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/dcat#theme
dcat:theme rdf:type owl:ObjectProperty ;
rdfs:range skos:Concept ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/dcat#accessService
dcat:accessService rdf:type owl:ObjectProperty ;
rdfs:range dcat:DataService ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/prov#wasAssociatedWith
prov:wasAssociatedWith rdf:type owl:ObjectProperty ;
rdfs:domain prov:Activity ;
rdfs:range prov:Agent ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> .
### http://www.w3.org/ns/prov#wasAttributedTo
prov:wasAttributedTo rdf:type owl:ObjectProperty ;
rdfs:domain prov:Entity ;
rdfs:range prov:Agent ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> .
### http://www.w3.org/ns/prov#wasGeneratedBy
prov:wasGeneratedBy rdf:type owl:ObjectProperty ;
rdfs:domain prov:Entity ;
rdfs:range prov:Activity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> .
### http://www.w3.org/ns/prov#actedOnBehalfOf
prov:actedOnBehalfOf rdf:type owl:ObjectProperty ;
rdfs:domain prov:Agent ;
rdfs:range prov:Agent ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> .
### http://purl.org/linked-data/cube#structure
qb:structure rdf:type owl:ObjectProperty;
rdfs:domain qb:DataSet;
rdfs:range qb:DataStructureDefinition;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://purl.org/linked-data/cube#component
qb:component rdf:type owl:ObjectProperty;
rdfs:domain qb:DataStructureDefinition;
rdfs:range qb:ComponentSpecification;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://purl.org/linked-data/cube#dimension
qb:dimension rdf:type owl:ObjectProperty;
rdfs:range qb:DimensionProperty;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://purl.org/linked-data/cube#measure
qb:measure rdf:type owl:ObjectProperty;
rdfs:range qb:MeasureProperty;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://w3id.org/cybele/model#accessDatabase
cybele:accessDatabase rdf:type owl:ObjectProperty ;
rdfs:label "accessDatabase"@en;
rdfs:domain dcat:Distribution;
rdfs:range cybele:Database ;
rdfs:isDefinedBy <http://w3id.org/cybele/model> .
### http://w3id.org/cybele/model#accessStructure
cybele:accessStructure rdf:type owl:ObjectProperty ;
rdfs:label "accessStructure"@en;
rdfs:domain cybele:Database;
rdfs:range cybele:QueryableStructure ;
rdfs:isDefinedBy <http://w3id.org/cybele/model> .
#################################################################
# Data properties
#################################################################
### http://purl.org/dc/terms/identifier
dct:identifier rdf:type owl:DatatypeProperty ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/issued
dct:issued rdf:type owl:DatatypeProperty ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/modified
dct:modified rdf:type owl:DatatypeProperty ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy dct: .
### http://www.w3.org/ns/dcat#spatialResolutionInMeters
dcat:spatialResolutionInMeters rdf:type owl:DatatypeProperty ;
rdfs:range xsd:decimal ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/dcat#temporalResolution
dcat:temporalResolution rdf:type owl:DatatypeProperty ;
rdfs:range xsd:duration ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/dcat#byteSize
dcat:byteSize rdf:type owl:DatatypeProperty ;
rdfs:domain dcat:Distribution ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://w3id.org/cybele/model#connectionString
cybele:connectionString rdf:type owl:DatatypeProperty ;
rdfs:label "connectionString"@en;
rdfs:domain cybele:Database;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <http://w3id.org/cybele/model> .
### http://w3id.org/cybele/model#tableName
cybele:tableName rdf:type owl:DatatypeProperty ;
rdfs:label "connectionString"@en;
rdfs:domain cybele:Table;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <http://w3id.org/cybele/model> .
#################################################################
# Classes
#################################################################
### http://purl.org/dc/terms/Agent
dct:Agent rdf:type owl:Class ;
owl:equivalentClass foaf:Agent ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/Frequency
dct:Frequency rdf:type owl:Class ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/LicenseDocument
dct:LicenseDocument rdf:type owl:Class ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/LinguisticSystem
dct:LinguisticSystem rdf:type owl:Class ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/Location
dct:Location rdf:type owl:Class ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/MediaType
dct:MediaType rdf:type owl:Class ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/PeriodOfTime
dct:PeriodOfTime rdf:type owl:Class ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/Standard
dct:Standard rdf:type owl:Class ;
rdfs:isDefinedBy dct: .
### http://purl.org/dc/terms/RightsStatement
dct:RightsStatement rdf:type owl:Class ;
rdfs:isDefinedBy dct: .
### http://www.w3.org/2004/02/skos/core#Concept
skos:Concept rdf:type owl:Class ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> .
### http://www.w3.org/ns/dcat#Catalog
dcat:Catalog rdf:type owl:Class ;
rdfs:subClassOf dcat:Dataset ;
rdfs:subClassOf [ a owl:Restriction ; owl:minCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty dcat:dataset ] ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/dcat#DataService
dcat:DataService rdf:type owl:Class ;
rdfs:subClassOf dcat:Resource ;
rdfs:subClassOf [ a owl:Restriction ; owl:minCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty dcat:endpointURL ] ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/dcat#Dataset
dcat:Dataset rdf:type owl:Class ;
rdfs:subClassOf dcat:Resource ;
rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty dct:publisher ] ;
rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty dct:issued ] ;
rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty dct:modified ] ;
rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty dct:accrualPeriodicity ] ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/dcat#Distribution
dcat:Distribution rdf:type owl:Class ;
rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty dct:license ] ;
rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty dcat:mediaType ] ;
rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty dcat:byteSize ] ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/dcat#Resource
dcat:Resource rdf:type owl:Class ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> .
### http://www.w3.org/ns/prov#Entity
prov:Entity rdf:type owl:Class ;
rdfs:isDefinedBy prov: .
### http://www.w3.org/ns/prov#Activity
prov:Activity rdf:type owl:Class ;
rdfs:isDefinedBy prov: .
### http://www.w3.org/ns/prov#Agent
prov:Agent rdf:type owl:Class ;
rdfs:isDefinedBy prov: .
### http://xmlns.com/foaf/0.1/Agent
foaf:Agent rdf:type owl:Class ;
rdfs:isDefinedBy foaf: .
### http://xmlns.com/foaf/0.1/Document
foaf:Document rdf:type owl:Class ;
rdfs:isDefinedBy foaf: .
### http://purl.org/linked-data/cube#DataStructureDefinition
qb:DataStructureDefinition rdf:type owl:Class ;
rdfs:subClassOf [ a owl:Restriction ; owl:minCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty qb:component ] ;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://purl.org/linked-data/cube#ComponentSpecification
qb:ComponentSpecification rdf:type owl:Class ;
rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty qb:dimension ] ;
rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty qb:measure ] ;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://purl.org/linked-data/cube#DimensionProperty
qb:DimensionProperty rdf:type owl:Class ;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://purl.org/linked-data/cube#MeasureProperty
qb:MeasureProperty rdf:type owl:Class ;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://purl.org/linked-data/cube#DataSet
qb:DataSet rdf:type owl:Class ;
rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty qb:structure ] ;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://w3id.org/cybele/model#Database
cybele:Database rdf:type owl:Class ;
rdfs:label "Database"@en;
rdfs:subClassOf [ a owl:Restriction ; owl:minCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty cybele:connectionString ] ;
rdfs:isDefinedBy <http://w3id.org/cybele/model> .
### http://w3id.org/cybele/model#QueryableStructure
cybele:QueryableStructure rdf:type owl:Class ;
rdfs:label "QueryableStructure"@en;
rdfs:subClassOf [ a owl:Restriction ; owl:cardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty dct:subject ] ;
rdfs:isDefinedBy <http://w3id.org/cybele/model> .
### http://w3id.org/cybele/model#Table
cybele:Table rdf:type owl:Class ;
rdfs:label "Table"@en;
rdfs:subClassOf cybele:QueryableStructure ;
rdfs:subClassOf [ a owl:Restriction ; owl:cardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty cybele:tableName ] ;
rdfs:isDefinedBy <http://w3id.org/cybele/model> .
#################################################################
# Individuals
#################################################################
### http://creativecommons.org/licenses/by/4.0/
<http://creativecommons.org/licenses/by/4.0/> rdf:type owl:NamedIndividual .
### https://www.cybele-project.eu/
<https://www.cybele-project.eu/> rdf:type owl:NamedIndividual .
[ schema:affiliation [ foaf:name "UPRC"
] ;
foaf:name "Giorgos Santipantakis"
] .
[ schema:affiliation [ foaf:name "OGC"
] ;
foaf:name "Ingo Simonis"
] .
[ schema:affiliation [ foaf:name "PSNC"
] ;
rdfs:seeAlso <http://orcid.org/0000-0003-4289-4922> ;
foaf:name "Raul Palma"
] .
[ schema:affiliation [ foaf:name "EXUS"
] ;
foaf:name "Maria Plakia"
] .
[ schema:affiliation [ foaf:name "OGC"
] ;
foaf:name "Martin Klopfer"
] .
[ schema:affiliation [ foaf:name "ICCS"
] ;
foaf:name "Spiros Mouzakitis"
] .
[ schema:affiliation [ foaf:name "SUITE5"
] ;
foaf:name "Konstantinos Latanis"
] .
[ foaf:homepage <https://www.cybele-project.eu/> ;
foaf:name "CYBELE project"
] .
[ schema:affiliation [ foaf:name "WU"
] ;
foaf:name "Dilli Paudel"
] .
[ schema:affiliation [ foaf:name "CERTH"
] ;
foaf:name "Konstantinos Tarabanis"
] .
[ schema:affiliation [ foaf:name "EXUS"
] ;
foaf:name "Konstantinos Kentrotis"
] .
[ schema:affiliation [ foaf:name "CERTH"
] ;
foaf:name "Areti Karamanou"
] .
[ schema:affiliation [ foaf:name "CERTH"
] ;
foaf:name "Evangelos Kalampokis"
] .
[ schema:affiliation [ foaf:name "CERTH"
] ;
foaf:name "Tambouris Efthimios"
] .
[ schema:affiliation [ foaf:name "CERTH"
] ;
foaf:name "Dimitris Zeginis"
] .
[ schema:affiliation [ foaf:name "CERTH"
] ;
foaf:name "Eleni Panopoulou"
] .
#################################################################
# Alignments
#################################################################
qb:DataSet owl:equivalentClass dcat:Dataset .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi