-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofiling-model.owl
1059 lines (934 loc) · 70.1 KB
/
profiling-model.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
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
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY dct "http://purl.org/dc/terms/" >
<!ENTITY foaf "http://xmlns.com/foaf/0.1/" >
<!ENTITY dcat "http://www.w3.org/ns/dcat#" >
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY vcard "http://www.w3.org/2006/vcard/ns#" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#http://www.w3.org/2001/XMLSchema#" >
<!ENTITY voaf "http://purl.org/vocommons/voaf#" >
<!ENTITY skos "http://www.w3.org/2004/02/skos/core#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY cc "http://creativecommons.org/ns#" >
<!ENTITY vann "http://purl.org/vocab/vann/" >
<!ENTITY documentation "https://stelar-project.eu/">
<!ENTITY documentationTitle "DCAT Application Profile for Data Assets in the STELAR Catalog">
<!ENTITY methodology "https://stelar-project.eu/">
<!ENTITY methodologyTitle "Methodology for Developing the STELAR Catalog">
]>
<!-- About the application profile -->
<rdf:RDF xmlns="http://stelar-project.eu/klms#"
xml:base="http://stelar-project.eu/klms"
xmlns:klms="http://stelar-project.eu/klms"
xmlns:dcat="http://www.w3.org/ns/dcat#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:dct="http://purl.org/dc/terms/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:vcard="http://www.w3.org/2006/vcard/ns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:prov="http://www.w3.org/ns/prov#"
xmlns:schema="http://schema.org/"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:time="http://www.w3.org/2006/time#"
xmlns:locn="http://www.w3.org/ns/locn#"
xmlns:geo="http://www.opengis.net/ont/geosparql#"
xmlns:odrl="http://www.w3.org/ns/odrl/2/"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<owl:Ontology rdf:about="http://stelar-project.eu/klms">
<owl:imports rdf:resource="https://www.w3.org/ns/dcat"/>
<rdfs:label xml:lang="en">DPV model</rdfs:label>
<dct:title xml:lang="en">Data Profiling Vocabulary (DPV) model</dct:title>
<rdfs:comment>Data Profiling Vocabulary (DPV) model.</rdfs:comment>
<dct:created rdf:datatype="xsd:date">2023-03-01</dct:created>
<dct:modified rdf:datatype="xsd:date">2023-05-08</dct:modified>
<dct:abstract xml:lang="en">This model is based on the Data Catalogue vocabulary (DCAT) and is used for describing data profiling results.</dct:abstract>
<cc:attributionName xml:lang="en">STELAR project</cc:attributionName>
<vann:preferredNamespacePrefix>klms</vann:preferredNamespacePrefix>
<vann:preferredNamespaceUri rdf:resource="http://stelar-project.eu/klms#"/>
<owl:versionInfo xml:lang="en">0.1</owl:versionInfo>
<dct:license>
<rdf:Description rdf:about="https://www.apache.org/licenses/LICENSE-2.0">
<dct:title>Apache License 2.0</dct:title>
<cc:attributionName>STELAR project</cc:attributionName>
<cc:attributionURL rdf:resource="https://stelar-project.eu/"/>
</rdf:Description>
</dct:license>
<dct:creator rdf:parseType="Resource">
<rdfs:seeAlso rdf:resource="http://web.imis.athena-innovation.gr/~dskoutas/"/>
<foaf:name>Dimitrios Skoutas</foaf:name>
<foaf:homepage rdf:resource="http://web.imis.athena-innovation.gr/~dskoutas/"/>
<schema:affiliation rdf:parseType="Resource">
<foaf:name>IMSI, Athena Research Center</foaf:name>
<foaf:homepage rdf:resource="https://www.imsi.athenarc.gr/"/>
</schema:affiliation>
</dct:creator>
<dct:creator rdf:parseType="Resource">
<rdfs:seeAlso rdf:resource="https://www.imsi.athenarc.gr/en/people/member/88"/>
<foaf:name>Georgios Chatzigeorgakidis</foaf:name>
<foaf:homepage rdf:resource="https://www.linkedin.com/in/georgios-chatzigeorgakidis-58862759/"/>
<schema:affiliation rdf:parseType="Resource">
<foaf:name>IMSI, Athena Research Center</foaf:name>
<foaf:homepage rdf:resource="https://www.imsi.athenarc.gr/"/>
</schema:affiliation>
</dct:creator>
<dct:creator rdf:parseType="Resource">
<rdfs:seeAlso rdf:resource="https://www.imsi.athenarc.gr/en/people/member/76"/>
<foaf:name>Kostas Patroumpas</foaf:name>
<foaf:homepage rdf:resource="https://www.imsi.athenarc.gr/en/people/member/76"/>
<schema:affiliation rdf:parseType="Resource">
<foaf:name>IMSI, Athena Research Center</foaf:name>
<foaf:homepage rdf:resource="https://www.imsi.athenarc.gr/"/>
</schema:affiliation>
</dct:creator>
<dct:creator rdf:parseType="Resource">
<rdfs:seeAlso rdf:resource="https://www.imsi.athenarc.gr/en/people/member/130"/>
<foaf:name>Alexandros Zeakis</foaf:name>
<foaf:homepage rdf:resource="https://www.imsi.athenarc.gr/en/people/member/130"/>
<schema:affiliation rdf:parseType="Resource">
<foaf:name>IMSI, Athena Research Center</foaf:name>
<foaf:homepage rdf:resource="https://www.imsi.athenarc.gr/"/>
</schema:affiliation>
</dct:creator>
<dct:creator rdf:parseType="Resource">
<rdfs:seeAlso rdf:resource="https://www.imsi.athenarc.gr/en/people/member/132"/>
<foaf:name>Panos Bethavas</foaf:name>
<foaf:homepage rdf:resource="https://www.imsi.athenarc.gr/en/people/member/132"/>
<schema:affiliation rdf:parseType="Resource">
<foaf:name>IMSI, Athena Research Center</foaf:name>
<foaf:homepage rdf:resource="https://www.imsi.athenarc.gr/"/>
</schema:affiliation>
</dct:creator>
</owl:Ontology>
<!-- ####################################### -->
<!-- ##===================================## -->
<!-- ##== PROPERTIES ==## -->
<!-- ##===================================## -->
<!-- ####################################### -->
<!-- ============================================= -->
<!-- == DISTRIBUTION (KLMS) - Properties == -->
<!-- ============================================= -->
<!-- Distribution - profile URL -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#profileURL">
<rdfs:label xml:lang="en">Distribution - Profile URL</rdfs:label>
<dct:identifier>klms:profileURL</dct:identifier>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Distribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<vann:usageNote xml:lang="en">Optional property. This property can be used to store a link to a file or web application that contains all the profiling results.</vann:usageNote>
<rdfs:comment xml:lang="en">This property can be used to store a link to a file or web application that contains all the profiling results.</rdfs:comment>
</owl:DatatypeProperty>
<!-- ====================================== -->
<!-- == RASTER - Properties == -->
<!-- ====================================== -->
<!-- http://stelar-project.eu/klms#height -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#height">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Raster"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:height</dct:identifier>
<rdfs:label xml:lang="en">Raster - Raster Image Height</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the height of a raster image in pixels.</vann:usageNote>
<rdfs:comment xml:lang="en">The height of a raster image in pixels.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#width -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#width">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Raster"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:width</dct:identifier>
<rdfs:label xml:lang="en">Raster - Raster Image Width</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the width of a raster image in pixels.</vann:usageNote>
<rdfs:comment xml:lang="en">The width of a raster image in pixels.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#crs -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#crs">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dct:identifier>klms:crs</dct:identifier>
<rdfs:label xml:lang="en">Geospatial - CRS</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the CRS of a geospatial dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The CRS of a geospatial dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#noDataValue -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/dcat#noDataValue">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Raster"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dct:identifier>klms:noDataValue</dct:identifier>
<rdfs:label xml:lang="en">Raster - No data value</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the no-data value for a raster image.</vann:usageNote>
<rdfs:comment xml:lang="en">The no-data value for a raster image.</rdfs:comment>
</owl:DatatypeProperty>
<!-- ====================================== -->
<!-- == TABULAR - Properties == -->
<!-- ====================================== -->
<!-- http://stelar-project.eu/klms#numColumns -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numColumns">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Tabular"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numColumns</dct:identifier>
<rdfs:label xml:lang="en">Tabular - Number of Columns</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of columns of a tabular dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of columns of a tabular dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#numRows -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numRows">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Tabular"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numRows</dct:identifier>
<rdfs:label xml:lang="en">Tabular - Number of Rows</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of rows of a tabular dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of rows of a tabular dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- ====================================== -->
<!-- == HIERARCHICAL - Properties == -->
<!-- ====================================== -->
<!-- http://stelar-project.eu/klms#numRecords -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numRecords">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Hierarchical"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numRecords</dct:identifier>
<rdfs:label xml:lang="en">Hierarchical - Number of records</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of records of a hierarchical dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of records of a hierarchical dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#numAttributes -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numAttributes">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Hierarchical"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numAttributes</dct:identifier>
<rdfs:label xml:lang="en">Tabular - Number of attributes</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of attributes of a hierarchical dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of attributes of a hierarchical dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- ====================================== -->
<!-- == RDFGraph - Properties == -->
<!-- ====================================== -->
<!-- http://stelar-project.eu/klms#numNamespaces -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numNamespaces">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#RDFGraph"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numNamespaces</dct:identifier>
<rdfs:label xml:lang="en">RDFGraph - Number of namespaces</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of namespaces of an RDF graph dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of namespaces of an RDF graph dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#numClasses -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numClasses">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#RDFGraph"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numClasses</dct:identifier>
<rdfs:label xml:lang="en">RDFGraph - Number of classes</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of classes of an RDF graph dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of classes of an RDF graph dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#numObjectProperties -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numObjectProperties">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#RDFGraph"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numObjectProperties</dct:identifier>
<rdfs:label xml:lang="en">RDFGraph - Number of object properties</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of object properties of an RDF graph dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of object properties of an RDF graph dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#numDatatypeProperties -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numDatatypeProperties">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#RDFGraph"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numDatatypeProperties</dct:identifier>
<rdfs:label xml:lang="en">RDFGraph - Number of datatype properties</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of datatype properties of an RDF graph dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of datatype properties of an RDF graph dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- ================================================ -->
<!-- == TEXT/TEXTUAL_ATTRIBUTE - Properties == -->
<!-- ================================================ -->
<!-- http://stelar-project.eu/klms#language -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#language">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Text"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:language</dct:identifier>
<rdfs:label xml:lang="en">Text - Main language</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the language of a textual dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The language of a textual dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#numSentences -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numSentences">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Text"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numSentences</dct:identifier>
<rdfs:label xml:lang="en">Text - Number of Sentences</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of sentences in a textual dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of sentences in a textual dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#numWords -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numWords">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Text"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numWords</dct:identifier>
<rdfs:label xml:lang="en">Text - Number of words</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of words in a textual dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of words in a textual dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#numDistinctWords -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numDistinctWords">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Text"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numDistinctWords</dct:identifier>
<rdfs:label xml:lang="en">Text - Number of distinct words</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of distinct words in a textual dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of distinct words in a textual dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#numCharacters -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numCharacters">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Text"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numCharacters</dct:identifier>
<rdfs:label xml:lang="en">Text - Number of characters</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of characters in a textual dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of characters in a textual dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#ratioUppercase -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#ratioUppercase">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Text"/>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#TextualAttribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:ratioUppercase</dct:identifier>
<rdfs:label xml:lang="en">Text - Ratio uppercase</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the ratio of uppercase letters in a textual dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The ratio of uppercase letters in a textual dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#ratioDigits -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#ratioDigits">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Text"/>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#TextualAttribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:ratioDigits</dct:identifier>
<rdfs:label xml:lang="en">Text - Ratio digits</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the ratio of digits in a textual dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The ratio of digits in a textual dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#ratioSpecialChars -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#ratioSpecialChars">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Text"/>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#TextualAttribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:ratioSpecialChars</dct:identifier>
<rdfs:label xml:lang="en">Text - Ratio special characters</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the ratio of special characters in a textual dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The ratio of special characters in a textual dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- ====================================== -->
<!-- == ATTRIBUTE - Properties == -->
<!-- ====================================== -->
<!-- http://stelar-project.eu/klms#type -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#type">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Attribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dct:identifier>klms:type</dct:identifier>
<rdfs:label xml:lang="en">Attribute - Type</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the type of an attribute.</vann:usageNote>
<rdfs:comment xml:lang="en">The type of an attribute.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#missingRatio -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#missingRatio">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Attribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:missingRatio</dct:identifier>
<rdfs:label xml:lang="en">Attribute - Missing values ratio</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the missing values ratio of an attribute.</vann:usageNote>
<rdfs:comment xml:lang="en">The missing values ratio of an attribute.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#uniqueness -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#uniqueness">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Attribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:uniqueness</dct:identifier>
<rdfs:label xml:lang="en">Attribute - Uniqueness</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the number of distinct values divided by the number of total values of an attribute.</vann:usageNote>
<rdfs:comment xml:lang="en">The number of distinct values divided by the number of total values of an attribute.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#nestingLevel -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#nestingLevel">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Attribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:nestingLevel</dct:identifier>
<rdfs:label xml:lang="en">Attribute - Nesting Level</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property describes the nesting of the attribute (in case of nested attributes or property hierarchies).</vann:usageNote>
<rdfs:comment xml:lang="en">The nesting of the attribute.</rdfs:comment>
</owl:DatatypeProperty>
<!-- ================================================= -->
<!-- == CORRELATION/JOINABILITY - Properties == -->
<!-- ================================================= -->
<!-- http://stelar-project.eu/klms#degree -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#degree">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:degree</dct:identifier>
<rdfs:label xml:lang="en">Correlation/Joinability - Degree</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the degree of a Correlation/Joinability class instance.</vann:usageNote>
<rdfs:comment xml:lang="en">The degree of a Correlation/Joinability class instance.</rdfs:comment>
</owl:DatatypeProperty>
<!-- ================================================= -->
<!-- == SERIES_ATTRIBUTE - Properties == -->
<!-- ================================================= -->
<!-- http://stelar-project.eu/klms#absEnergy -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#absEnergy">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#SeriesAttribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:absEnergy</dct:identifier>
<rdfs:label xml:lang="en">SeriesAttribute - Absolute energy</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the absolute energy of a series dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The absolute energy of a series dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#absSumChanges -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#absSumChanges">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#SeriesAttribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:absSumChanges</dct:identifier>
<rdfs:label xml:lang="en">SeriesAttribute - Absolute sum of changes</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the absolute value of consecutive changes of a series dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The absolute value of consecutive changes of a series dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#lenAboveMean -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#lenAboveMean">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#SeriesAttribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:lenAboveMean</dct:identifier>
<rdfs:label xml:lang="en">SeriesAttribute - Maximum subsequence length above mean</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the length of the longest subsequence above the mean value of a series dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The longest subsequence above the mean value.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#lenBelowMean -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#lenBelowMean">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#SeriesAttribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:lenBelowMean</dct:identifier>
<rdfs:label xml:lang="en">SeriesAttribute - Maximum subsequence length below mean</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the length of the longest subsequence below the mean value of a series dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The longest subsequence below the mean value.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#numPeaks -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#numPeaks">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#SeriesAttribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:numPeaks</dct:identifier>
<rdfs:label xml:lang="en">SeriesAttribute - Number of peaks</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the total number of peaks of a series dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">The total number of peaks of a series dataset.</rdfs:comment>
</owl:DatatypeProperty>
<!-- ================================================= -->
<!-- == NUMERICAL_DISTRIBUTION - Properties == -->
<!-- ================================================= -->
<!-- http://stelar-project.eu/klms#min -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#min">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:min</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution - Minimum value</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe a minimum value.</vann:usageNote>
<rdfs:comment xml:lang="en">A minimum value.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#max -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#max">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:max</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution - Maximum value</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe a maximum value.</vann:usageNote>
<rdfs:comment xml:lang="en">A maximum value.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#count -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#count">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dct:identifier>klms:count</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution/Category - Count</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe a count.</vann:usageNote>
<rdfs:comment xml:lang="en">A count.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#average -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#average">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:average</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution - Average value</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe an average value.</vann:usageNote>
<rdfs:comment xml:lang="en">An average value.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#stddev -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#stddev">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:stddev</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution - Standard deviation</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe a standard deviation value.</vann:usageNote>
<rdfs:comment xml:lang="en">A standard deviation value.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#median -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#median">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:median</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution - Median</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe a median value.</vann:usageNote>
<rdfs:comment xml:lang="en">A median value.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#kurtosis -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#kurtosis">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:kurtosis</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution - Kurtosis</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the kurtosis of a collection of numbers.</vann:usageNote>
<rdfs:comment xml:lang="en">The kurtosis of a collection of numbers.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#skewness -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#skewness">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:skewness</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution - Skewness</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the skewness of a collection of numbers.</vann:usageNote>
<rdfs:comment xml:lang="en">The skewness of a collection of numbers.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#variance -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#variance">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:variance</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution - Variance</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the variance of a collection of numbers.</vann:usageNote>
<rdfs:comment xml:lang="en">The variance of a collection of numbers.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#percentile10 -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#percentile10">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:percentile10</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution - Percentile 10</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the 10th percentile of a collection of numbers.</vann:usageNote>
<rdfs:comment xml:lang="en">The 10th percentile of a collection of numbers.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#percentile25 -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#percentile25">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:percentile25</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution - Percentile 25</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the 25th percentile of a collection of numbers.</vann:usageNote>
<rdfs:comment xml:lang="en">The 25th percentile of a collection of numbers.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#percentile75 -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#percentile75">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:percentile75</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution - Percentile 75</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the 75th percentile of a collection of numbers.</vann:usageNote>
<rdfs:comment xml:lang="en">The 75th percentile of a collection of numbers.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://stelar-project.eu/klms#percentile90 -->
<owl:DatatypeProperty rdf:about="http://stelar-project.eu/klms#percentile90">
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<dct:identifier>klms:percentile90</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution - Percentile 90</rdfs:label>
<vann:usageNote xml:lang="en">Optional property. This property can be used describe the 90th percentile of a collection of numbers.</vann:usageNote>
<rdfs:comment xml:lang="en">The 90th percentile of a collection of numbers.</rdfs:comment>
</owl:DatatypeProperty>
<!-- ####################################### -->
<!-- ##===================================## -->
<!-- ##== CLASSES ==## -->
<!-- ##===================================## -->
<!-- ####################################### -->
<!-- ================================ -->
<!-- == RECOMMENDED CLASSES == -->
<!-- ================================ -->
<!-- dcat:Distribution -->
<owl:Class rdf:about="http://www.w3.org/ns/dcat#Distribution">
<vann:usageNote xml:lang="en">Recommended class. A physical embodiment of the Dataset in a particular format.</vann:usageNote>
<dct:identifier>dcat:Distribution</dct:identifier>
<rdfs:label xml:lang="en">Distribution</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://www.w3.org/TR/vocab-dcat-2/#Class:Distribution"/>
<rdfs:comment xml:lang="en">Represents a specific available form of a dataset. Each dataset might be available in different forms, these forms might represent different formats of the dataset, different endpoints,... Examples of Distribution include a downloadable CSV file, an XLS file representing the dataset, an RSS feed…</rdfs:comment>
</owl:Class>
<!-- ================================ -->
<!-- == OPTIONAL CLASSES == -->
<!-- ================================ -->
<!-- klms:Distribution -->
<owl:Class rdf:about="http://stelar-project.eu/klms#Distribution">
<vann:usageNote xml:lang="en">Optional class. A DataProfile associated to a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:Distribution</dct:identifier>
<rdfs:label xml:lang="en">Distribution</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a Distribution of a Dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a Distribution of a Dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/dcat#Distribution"/>
</owl:Class>
<!-- klms:Raster -->
<owl:Class rdf:about="http://stelar-project.eu/klms#Raster">
<vann:usageNote xml:lang="en">Optional class. A DataProfile associated to a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:Raster</dct:identifier>
<rdfs:label xml:lang="en">Raster</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a Distribution of Raster Dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a Distribution of a Raster Dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#Distribution"/>
</owl:Class>
<!-- klms:Tabular -->
<owl:Class rdf:about="http://stelar-project.eu/klms#Tabular">
<vann:usageNote xml:lang="en">Optional class. A geospatial-aware profile associated to a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:Tabular</dct:identifier>
<rdfs:label xml:lang="en">Tabular</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a Distribution of a Tabular Dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a Distribution of a Tabular Dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#Distribution"/>
</owl:Class>
<!-- klms:Hierarchical -->
<owl:Class rdf:about="http://stelar-project.eu/klms#Hierarchical">
<vann:usageNote xml:lang="en">Optional class. A textual-aware profile associated to a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:Hierarchical</dct:identifier>
<rdfs:label xml:lang="en">Hierarchical</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a Distribution of a Hierarchical Dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a Distribution of a Hierarchical Dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#Distribution"/>
</owl:Class>
<!-- klms:RDFGraph -->
<owl:Class rdf:about="http://stelar-project.eu/klms#RDFGraph">
<vann:usageNote xml:lang="en">Optional class. Combined profile associated to the various texts of a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:RDFGraph</dct:identifier>
<rdfs:label xml:lang="en">RDFGraph</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a Distribution of a RDFGraph Dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a Distribution of a RDFGraph Dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#Distribution"/>
</owl:Class>
<!-- klms:Text -->
<owl:Class rdf:about="http://stelar-project.eu/klms#Text">
<vann:usageNote xml:lang="en">Optional class. Profiles associated to the various texts of a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:Text</dct:identifier>
<rdfs:label xml:lang="en">Text</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a Distribution of a Text Dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a Distribution of a Text Dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#Distribution"/>
</owl:Class>
<!-- klms:Attribute -->
<owl:Class rdf:about="http://stelar-project.eu/klms#Attribute">
<vann:usageNote xml:lang="en">Optional class. Profiles associated to the languages of various texts of a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:Attribute</dct:identifier>
<rdfs:label xml:lang="en">Attribute</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from an Attribute of a dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from an Attribute of a dataset.</vann:usageNote>
<rdfs:hasParent rdf:resource="http://stelar-project.eu/klms#Attribute"/>
</owl:Class>
<!-- klms:NumericalDistribution -->
<owl:Class rdf:about="http://stelar-project.eu/klms#NumericalDistribution">
<vann:usageNote xml:lang="en">Optional class. Profiles associated to the distinct terms of various texts of a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:NumericalDistribution</dct:identifier>
<rdfs:label xml:lang="en">NumericalDistribution</rdfs:label>
<rdfs:comment xml:lang="en">A class used to describe numerical distribution information.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. A class used to describe numerical distribution information.</vann:usageNote>
</owl:Class>
<!-- klms:CategoricalDistribution -->
<owl:Class rdf:about="http://stelar-project.eu/klms#CategoricalDistribution">
<vann:usageNote xml:lang="en">Optional class. Profiles of a time series Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:CategoricalDistribution</dct:identifier>
<rdfs:label xml:lang="en">CategoricalDistribution</rdfs:label>
<rdfs:comment xml:lang="en">A class used to describe categorical distribution information.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. A class used to describe categorical distribution information.</vann:usageNote>
</owl:Class>
<!-- klms:Dependency -->
<owl:Class rdf:about="http://stelar-project.eu/klms#Dependency">
<vann:usageNote xml:lang="en">Optional class. Profiles of a set of univariate time series from a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:Dependency</dct:identifier>
<rdfs:label xml:lang="en">Dependency</rdfs:label>
<rdfs:comment xml:lang="en">A class used to describe dependencies among attributes.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. A class used to describe dependencies among attributes.</vann:usageNote>
</owl:Class>
<!-- klms:Correlation -->
<owl:Class rdf:about="http://stelar-project.eu/klms#Correlation">
<vann:usageNote xml:lang="en">Optional class. Profiles of a multivariate time series from a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:Correlation</dct:identifier>
<rdfs:label xml:lang="en">Correlation</rdfs:label>
<rdfs:comment xml:lang="en">A class used to describe correlations among attributes.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. A class used to describe correlations among attributes.</vann:usageNote>
</owl:Class>
<!-- klms:Joinability -->
<owl:Class rdf:about="http://stelar-project.eu/klms#Joinability">
<vann:usageNote xml:lang="en">Optional class. Profiles of a set of multivariate time series from a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:Joinability</dct:identifier>
<rdfs:label xml:lang="en">Joinability</rdfs:label>
<rdfs:comment xml:lang="en">A class used to describe the joinability among attributes.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. A class used to describe the joinability among attributes.</vann:usageNote>
</owl:Class>
<!-- klms:UniqueCombination -->
<owl:Class rdf:about="http://stelar-project.eu/klms#UniqueCombination">
<vann:usageNote xml:lang="en">Optional class. A geospatial-aware profile associated to a vector Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:UniqueCombination</dct:identifier>
<rdfs:label xml:lang="en">UniqueCombination</rdfs:label>
<rdfs:comment xml:lang="en">A class used to indicate sets of attributes that can be used as composite keys.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. A class used to indicate sets of attributes that can be used as composite keys.</vann:usageNote>
</owl:Class>
<!-- klms:FunctionalDependency -->
<owl:Class rdf:about="http://stelar-project.eu/klms#FunctionalDependency">
<vann:usageNote xml:lang="en">Optional class. A geospatial-aware profile associated to a raster Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:FunctionalDependency</dct:identifier>
<rdfs:label xml:lang="en">FunctionalDependency</rdfs:label>
<rdfs:comment xml:lang="en">A class used to describe functional dependencies among attributes.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. A class used to describe functional dependencies among attributes.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#Dependency"/>
</owl:Class>
<!-- klms:InclusionDependency -->
<owl:Class rdf:about="http://stelar-project.eu/klms#InclusionDependency">
<vann:usageNote xml:lang="en">Optional class. Geospatial-aware profiles associated to the various bands of a set of raster images that consist a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:InclusionDependency</dct:identifier>
<rdfs:label xml:lang="en">InclusionDependency</rdfs:label>
<rdfs:comment xml:lang="en">A class used to describe inclusion dependencies among attributes.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. A class used to describe inclusion dependencies among attributes.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#Dependency"/>
</owl:Class>
<!-- klms:NumericalAttribute -->
<owl:Class rdf:about="http://stelar-project.eu/klms#NumericalAttribute">
<vann:usageNote xml:lang="en">Optional class. Geospatial-aware profiles associated to the various raster images that consist a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:NumericalAttribute</dct:identifier>
<rdfs:label xml:lang="en">NumericalAttribute</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a numerical attribute of a dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a numerical attribute of a dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#Attribute"/>
</owl:Class>
<!-- klms:TextualAttribute -->
<owl:Class rdf:about="http://stelar-project.eu/klms#TextualAttribute">
<vann:usageNote xml:lang="en">Optional class. Geospatial-aware profiles associated to the band of a raster image from a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:TextualAttribute</dct:identifier>
<rdfs:label xml:lang="en">TextualAttribute</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a textual attribute of a dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a textual attribute of a dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#Attribute"/>
</owl:Class>
<!-- klms:TemporalAttribute -->
<owl:Class rdf:about="http://stelar-project.eu/klms#TemporalAttribute">
<vann:usageNote xml:lang="en">Optional class. Geospatial-aware profiles associated to an applied mask on a raster image from a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:TemporalAttribute</dct:identifier>
<rdfs:label xml:lang="en">TemporalAttribute</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a temporal attribute of a dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a temporal attribute of a dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#Attribute"/>
</owl:Class>
<!-- klms:SpatialAttribute -->
<owl:Class rdf:about="http://stelar-project.eu/klms#SpatialAttribute">
<vann:usageNote xml:lang="en">Optional class. Geospatial-aware profiles associated to an applied mask on a raster image from a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:SpatialAttribute</dct:identifier>
<rdfs:label xml:lang="en">SpatialAttribute</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a spatial attribute of a dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a spatial attribute of a dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#Attribute"/>
</owl:Class>
<!-- klms:CategoricalAttribute -->
<owl:Class rdf:about="http://stelar-project.eu/klms#CategoricalAttribute">
<vann:usageNote xml:lang="en">Optional class. Geospatial-aware profiles associated to an applied mask on a raster image from a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:CategoricalAttribute</dct:identifier>
<rdfs:label xml:lang="en">CategoricalAttribute</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a categorical attribute of a dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a categorical attribute of a dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#Attribute"/>
</owl:Class>
<!-- klms:SeriesAttribute -->
<owl:Class rdf:about="http://stelar-project.eu/klms#SeriesAttribute">
<vann:usageNote xml:lang="en">Optional class. Geospatial-aware profiles associated to an applied mask on a raster image from a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:SeriesAttribute</dct:identifier>
<rdfs:label xml:lang="en">SeriesAttribute</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a series attribute of a dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a series attribute of a dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#NumericalAttribute"/>
</owl:Class>
<!-- klms:BandAttribute
<owl:Class rdf:about="http://stelar-project.eu/klms#BandAttribute">
<vann:usageNote xml:lang="en">Optional class. Geospatial-aware profiles associated to an applied mask on a raster image from a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:BandAttribute</dct:identifier>
<rdfs:label xml:lang="en">BandAttribute</rdfs:label>
<rdfs:comment xml:lang="en">The profiling information extracted from a band attribute of a dataset.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. The profiling information extracted from a band attribute of a dataset.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#NumericalAttribute"/>
</owl:Class>
-->
<!-- klms:Category -->
<owl:Class rdf:about="http://stelar-project.eu/klms#Category">
<vann:usageNote xml:lang="en">Optional class. Geospatial-aware profiles associated to an applied mask on a raster image from a Dataset published or curated by a single agent.</vann:usageNote>
<dct:identifier>klms:Category</dct:identifier>
<rdfs:label xml:lang="en">Category</rdfs:label>
<rdfs:comment xml:lang="en">A class representing a category of a categorical distribution.</rdfs:comment>
<vann:usageNote xml:lang="en">Optional class. A class representing a category of a categorical distribution.</vann:usageNote>
<rdfs:subClassOf rdf:resource="http://stelar-project.eu/klms#CategoricalDistribution"/>
</owl:Class>
<!-- ################################################# -->
<!-- ##=============================================## -->
<!-- ##== OBJECT PROPERTIES ==## -->
<!-- ##=============================================## -->
<!-- ################################################# -->
<!-- Attribute - contains -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#contains">
<rdfs:label xml:lang="en">Contains</rdfs:label>
<dct:identifier>klms:contains</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate a contains relation among classes.</vann:usageNote>
<rdfs:comment xml:lang="en">This property is used to indicate a contains relation among classes.</rdfs:comment>
</owl:ObjectProperty>
<!-- NumericalDistribution - depth distribution -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#depthDistribution">
<rdfs:label xml:lang="en">NumericalDistribution - Depth distribution</rdfs:label>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Hierarchical"/>
<rdfs:range rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<dct:identifier>klms:depthDistribution</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate the depth distribution of a hierarchical dataset.</vann:usageNote>
<rdfs:comment xml:lang="en">This property is used to indicate the depth distribution of a hierarchical dataset.</rdfs:comment>
</owl:ObjectProperty>
<!-- NumericalDistribution - degree distribution -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#degreeDistribution">
<rdfs:label xml:lang="en">NumericalDistribution - Degree distribution</rdfs:label>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#RDFGraph"/>
<rdfs:range rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<dct:identifier>klms:degreeDistribution</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate the degree distribution of an RDF graph.</vann:usageNote>
<rdfs:comment xml:lang="en">This property is used to indicate the degree distribution of an RDF graph.</rdfs:comment>
</owl:ObjectProperty>
<!-- NumericalDistribution - class distribution -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#classDistribution">
<rdfs:label xml:lang="en">CategoricalDistribution - Class distribution</rdfs:label>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#RDFGraph"/>
<rdfs:range rdf:resource="http://stelar-project.eu/klms#CategoricalDistribution"/>
<dct:identifier>klms:classDistribution</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate the class distribution of an RDF graph.</vann:usageNote>
<rdfs:comment xml:lang="en">This property is used to indicate the class distribution of an RDF graph.</rdfs:comment>
</owl:ObjectProperty>
<!-- NumericalDistribution - sentence length distribution -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#sentenceLengthDistribution">
<rdfs:label xml:lang="en">NumericalDistribution - Sentence length distribution</rdfs:label>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Text"/>
<rdfs:range rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<dct:identifier>klms:sentenceLengthDistribution</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate the sentence length distribution of a text.</vann:usageNote>
<rdfs:comment xml:lang="en">This property is used to indicate the sentence length distribution of a text.</rdfs:comment>
</owl:ObjectProperty>
<!-- NumericalDistribution - word length distribution -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#wordLengthDistribution">
<rdfs:label xml:lang="en">NumericalDistribution - Word length distribution</rdfs:label>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Text"/>
<rdfs:range rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<dct:identifier>klms:wordLengthDistribution</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate the word length distribution of a text.</vann:usageNote>
<rdfs:comment xml:lang="en">This property is used to indicate the word length distribution of a text.</rdfs:comment>
</owl:ObjectProperty>
<!-- NumericalDistribution - language distribution -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#languageDistribution">
<rdfs:label xml:lang="en">CategoricalDistribution - Language distribution</rdfs:label>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Text"/>
<rdfs:range rdf:resource="http://stelar-project.eu/klms#CategoricalDistribution"/>
<dct:identifier>klms:languageDistribution</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate the language distribution of a text.</vann:usageNote>
<rdfs:comment xml:lang="en">This property is used to indicate the language distribution of a text.</rdfs:comment>
</owl:ObjectProperty>
<!-- NumericalDistribution - special characters distribution -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#specialCharsDistribution">
<rdfs:label xml:lang="en">CategoricalDistribution - Special characters distribution</rdfs:label>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Text"/>
<rdfs:range rdf:resource="http://stelar-project.eu/klms#CategoricalDistribution"/>
<dct:identifier>klms:specialCharsDistribution</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate the special characters distribution of a text.</vann:usageNote>
<rdfs:comment xml:lang="en">This property is used to indicate the special characters distribution of a text.</rdfs:comment>
</owl:ObjectProperty>
<!-- Dependency - right -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#right">
<rdfs:label xml:lang="en">Dependency - Right</rdfs:label>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Dependency"/>
<rdfs:range rdf:resource="http://stelar-project.eu/klms#Attribute"/>
<dct:identifier>klms:right</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate a right dependency.</vann:usageNote>
<rdfs:comment xml:lang="en">This property is used to indicate a right dependency.</rdfs:comment>
</owl:ObjectProperty>
<!-- Dependency - left -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#left">
<rdfs:label xml:lang="en">Dependency - Left</rdfs:label>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#Dependency"/>
<rdfs:range rdf:resource="http://stelar-project.eu/klms#Attribute"/>
<dct:identifier>klms:left</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate a left dependency.</vann:usageNote>
<rdfs:comment xml:lang="en">This property is used to indicate a left dependency.</rdfs:comment>
</owl:ObjectProperty>
<!-- Dependency - applies to -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#appliesTo">
<rdfs:label xml:lang="en">Dependency - Applies to</rdfs:label>
<rdfs:range rdf:resource="http://stelar-project.eu/klms#Attribute"/>
<dct:identifier>klms:appliesTo</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate specific characteristics that apply to a dataset's attributes.</vann:usageNote>
<rdfs:comment xml:lang="en">TThis property is used to indicate specific characteristics that apply to a dataset's attributes.</rdfs:comment>
</owl:ObjectProperty>
<!-- Numerical distribution - value distribution -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#valueDistribution">
<rdfs:label xml:lang="en">NumericalDistribution - Value distribution</rdfs:label>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#NumericalAttribute"/>
<rdfs:range rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<dct:identifier>klms:valueDistribution</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate the value distribution of a numerical attribute.</vann:usageNote>
<rdfs:comment xml:lang="en">This property is used to indicate the value distribution of a numerical attribute.</rdfs:comment>
</owl:ObjectProperty>
<!-- Numerical distribution - number of characters distribution -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#numCharsDistribution">
<rdfs:label xml:lang="en">NumericalDistribution - Number of characters distribution</rdfs:label>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#TextualAttribute"/>
<rdfs:range rdf:resource="http://stelar-project.eu/klms#NumericalDistribution"/>
<dct:identifier>klms:numCharsDistribution</dct:identifier>
<vann:usageNote xml:lang="en">Optional property. This property is used to indicate the number of characters distribution of a textual attribute.</vann:usageNote>
<rdfs:comment xml:lang="en">This property is used to indicate the number of characters distribution of a textual attribute.</rdfs:comment>
</owl:ObjectProperty>
<!-- Numerical distribution - number of words distribution -->
<owl:ObjectProperty rdf:about="http://stelar-project.eu/klms#numWordsDistribution">
<rdfs:label xml:lang="en">NumericalDistribution - Number of words distribution</rdfs:label>
<rdfs:domain rdf:resource="http://stelar-project.eu/klms#TextualAttribute"/>