-
Notifications
You must be signed in to change notification settings - Fork 0
/
daqar.html
1549 lines (1438 loc) · 51.1 KB
/
daqar.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta lang="" property="dc:language" content="en">
<title>DaQAR - The Data Quality Assessment Requirements Vocabulary</title>
<link rel="stylesheet" href="style.css">
<link rel="canonical" href="https://purl.org/net/vsr/daqar/">
<link href="daqar.owl" rel="alternate" type="application/rdf+xml" />
<link href="daqar.ttl" rel="alternate" type="text/turtle" />
<style>
table.definition th:first-child { width: 200px; }
</style>
</head>
<body>
<div>
<h1 property="dcterms:title">DaQAR - The Data Quality Assessment Requirements Vocabulary</h1>
<i>(author names currently anonymized due to ongoing double-blind conference review) </i>
<hr title="Separator for header">
</div>
<section property="dc:abstract">
<h2>Abstract</h2>
<p>The World Wide Web represents a tremendous source of
information with resources of varying data quality from almost arbitrary
knowledge domains. The decision process to select the best data source
for current business requirements is not trivial. In the past, research
has already focused on related quality aspects such as vocabularies to
represent data quality metrics and measurements (DQV) or notations to
represent and validate structural requirements (SHACL). But a consistent
universal semantic approach to define specific quality requirements for
assessment purposes from the data consumer side is still missing. Therefore,
we address this challenge and present DaQAR - an ontology that is
capable of defining arbitrary quality requirements on both data instance,
schema and service level in a uniform fashion. This formalization includes
desired measurement result boundaries, a customizable calculation as
well as comprehensible quality rating scores. It can be used for data
quality assessment purposes to compare multiple eligible data resources
on particular metrics and attributes of current interest.</p>
</section>
<section typeof="bibo:Chapter" resource="#namespaces" property="bibo:hasPart">
<h2><span class="secno">1. </span>Namespaces</h2>
<p>
</p>
<p>The table below indicates the full list of namespaces and prefixes used in this document.</p>
<table id="namespacesTable">
<thead>
<tr>
<th>Prefix</th>
<th>Namespace</th>
</tr>
</thead>
<tbody>
<tr>
<td>dqr</td>
<td>http://purl.org/net/vsr/daqar#</td>
</tr>
<tr>
<td>dqv</td>
<td>http://www.w3.org/ns/dqv#</td>
</tr>
<tr>
<td>dcat</td>
<td>http://www.w3.org/ns/dcat#</td>
</tr>
<tr>
<td>dcterms</td>
<td>http://purl.org/dc/terms/</td>
</tr>
<tr>
<td>shacl</td>
<td>http://www.w3.org/ns/shacl#</td>
</tr>
<tr>
<td>void</td>
<td>http://rdfs.org/ns/void#</td>
</tr>
<tr>
<td>muo</td>
<td>http://purl.oclc.org/NET/muo/muo#</td>
</tr>
<tr>
<td>rdf</td>
<td>http://www.w3.org/1999/02/22-rdf-syntax-ns#</td>
</tr>
<tr>
<td>xsd</td>
<td>http://www.w3.org/2001/XMLSchema#</td>
</tr>
<tr>
<td>ex</td>
<td>http://example.org/</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h2><span class="secno">2. </span>Vocabulary Overview</h2>
DaQAR seeks to reuse already established data related vocabularies,
primarily DCAT and DQV. It includes the following concepts depicted in figure 1.
<figure>
<img src="erd.png">
<figcaption>Fig. <span class="figno">1</span> <span class="fig-title">DaQAR data model with main relations</span></figcaption>
</figure>
A machine-readable version of this ontology is available at <a href="daqar.owl">daqar.owl</a> or <a href="daqar.ttl">daqar.ttl</a>.
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h2><span class="secno">3.</span>Vocabulary specification</h2>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h3><span class="secno">3.1 </span>Class: QualityRequirementSpec </h3>
<table class="definition">
<thead>
<tr>
<th>RDF Class:</th>
<th><a name="QualityRequirementSpec">dqr:QualityRequirementSpec</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>
Represents a specification of requirements on a data set or data service from consumer side for quality assessment purposes
</td>
</tr>
<tr>
<td class="prop">Note:</td>
<td>
A dqr:QualityRequirementSpec is an abstract definition of requirements, conditions and desired metric values. It is basically independent from a concret data set and can be used among multiple data sets or data set states for comparison purposes.
</td>
</tr>
</tbody>
</table>
<p>The following properties can be used with instances of this class:
</p>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.1.1 </span>Property: hasRequirements</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasRequirements">dqr:hasRequirements</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition: </td>
<td>Indicates the QualityRequirements that have to be checked</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityRequirementSpec</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>dqr:QualityRequirement</td>
</tr>
<tr><td class="prop">Minimum cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note:</td>
<td>All QualityRequirements should be computeable independently.</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.1.2 </span>Property: hasAssessment</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasAssessment">dqr:hasAssessment</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Indicates the definition of an overall assessment relation how the quality of a data source has to be calculated </td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityRequirementSpec</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>dqr:QualityAssessmentCombination</td>
</tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note:</td>
<td>If this property is not provided, the dqr:QualityRequirementSpec represents a list of quality metrics without an assessment instruction.</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h3><span class="secno">3.2 </span>Class: QualityAssessmentCombination </h3>
<table class="definition">
<thead>
<tr>
<th>RDF Class:</th>
<th><a name="QualityAssessmentCombination">dqr:QualityAssessmentCombination</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>
Represents an instruction on how to combine the results from multiple dqr:QualityAssessments to an overall assessment score
</td>
</tr>
<tr>
<td class="prop">Note:</td>
<td>If there is only one quality requirement that has to be assessed, this class represents simply a proxy container for this calculation.</td>
</tr>
</tbody>
</table>
<p>The following properties can be used with instances of this class:
</p>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.2.1 </span>Property: hasReturnType</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasReturnType">dqr:hasReturnType</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Indicates the numeric type of the returned assessment result</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityAssessmentCombination</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>dqr:ReturnType</td>
</tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note:</td>
<td>The class dqr:ReturnType currently contains the concepts <br/>
<ul><li>dqr:QualityRatio for a decimal representation 0.0 (worst) <= DQ <= 1.0 (best)</li>
<li>dqr:QualityStar for an integer representation 0 (worst) <= DQ <= 5 (best)</li>
<li>dqr:QualityGrade for an integer representation 1 (best) <= DQ <= 6 (worst)</li></ul> If the property is not provided at all, dqr:QualityRatio is assumed.
</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.2.2 </span>Property: hasAssessmentTerms</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasAssessmentTerms">dqr:hasAssessmentTerms</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Represents a list of independent QualityAssessment subcalculations that should be combined to an overall assessment result</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityAssessmentCombination</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>dqr:QualityAssessmentTerm</td>
</tr>
<tr><td class="prop">Minimum cardinality:</td><td>1</td></tr>
<!--
<tr>
<td class="prop">Note:</td>
<td></td>
</tr>-->
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h3><span class="secno">3.3 </span>Class: QualityAssessmentTerm </h3>
<table class="definition">
<thead>
<tr>
<th>RDF Class:</th>
<th><a name="QualityAssessmentTerm">dqr:QualityAssessmentTerm</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>
Represents a weighted assessment sub-calculation for a particular requirement
</td>
</tr>
<!--
<tr>
<td class="prop">Note:</td>
<td></td>
</tr>
-->
</tbody>
</table>
<p>The following properties can be used with instances of this class:
</p>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.3.1 </span>Property: hasWeight</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasWeight">dqr:hasWeight</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Indicates the influence of the current assessment to the overall assessment score</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityAssessmentTerm</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>xsd:decimal, 0.0 <= value <= 1.0</td>
</tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note: </td>
<td>dqr:QualityAssessmentCombination basically calculates a normalized value, so the sum of all weights should be 1.0 in total if not otherwise explicitly intended</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.3.2 </span>Property: hasAssessment</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasAssessment">dqr:hasAssessment</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Indicates a quality assessment that shall be calculated</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityAssessmentTerm</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>dqr:QualityAssessment</td>
</tr>
<tr><td class="prop">Minimum cardinality:</td><td>1</td></tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<!--
<tr>
<td class="prop">Note:</td>
<td></td>
</tr>
-->
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h3><span class="secno">3.4 </span>Class: QualityRequirement </h3>
<table class="definition">
<thead>
<tr>
<th>RDF Class:</th>
<th><a name="QualityRequirement">dqr:QualityRequirement</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>
Represents a particular measurable quality aspect of interest whose result is assesseable
</td>
</tr>
</tbody>
</table>
<p>The following properties can be used with instances of this class:
</p>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.4.1 </span>Property: hasRequirementType</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasRequirementType">dqr:hasRequirementType</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Indicates the type of examined quality aspect</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityRequirement</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>dqr:RequirementType</td>
</tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note:</td>
<td>
Basically, any URI-representable concept can be used as a requirement specification. URIs of particular quality metrics are of major interest. But we could also use SHACL URIs from template graphs as a requirement description. In order to programmatically distinguish these different concepts, the class dqr:RequirementType currently contains the concepts<br/>
<ul>
<li>dqr:SimpleMetric for directly calculable metrics such as DQV, daq or ISO metrics</li>
<li>dqr:ShapeConstraint for SHACL-like template graph descriptors that are run by a separate processor</li></ul>
The dqr:RequirementType class is open for future extensions.<br/>
If the property is not mentioned at all, dqr:SimpleMetric is assumed.
</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.4.2 </span>Property: hasRequirementConcept</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasRequirementConcept">dqr:hasRequirementConcept</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Represents the particular quality concepts in form of a URI</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityRequirement</td>
</tr>
<tr><td class="prop">Minimum cardinality:</td><td>1</td></tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note:</td>
<td>This can be a daq:Metric, a dqv:Metric, a SHACL URL or any other URI representing a quality requirement</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.4.3 </span>Property: hasImplementation</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasImplementation">dqr:hasImplementation</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Indicates if the calculation relies on a concrete, mandatory implementation of a quality requirement concept</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityRequirement</td>
</tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note:</td>
<td>Sometimes, the same quality metric is implemented in different interpretations and its calculation can lead to different results. This property allows it to specify an optional URI representing a concrete tool, service or implementation that should be used for measuring the concept defined</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.4.4 </span>Property: expectedDataType</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="expectedDataType">dqr:expectedDataType</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Indicates the expected return type of the measurement result</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityRequirement</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>xsd:anySimpleType</td>
</tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note:</td>
<td>Currently, some descriptions of recommended DQ metrics leave it open, e.g., if the caculation should return an integer value for all instances satisfying the requirement, or a ratio, or something totally different. The dqr:expectedDataType makes this definition explicit.</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.4.5 </span>Property: hasUnit</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasUnit">dqr:hasUnit</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Indicates the unit of the measurement result</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityRequirement</td>
</tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note:</td>
<td>It is helpful to explicitly state the unit of a measurement result in the requirement description if applicable, e.g., if it returns seconds or milliseconds. We currently reommend to use the Measurement Units Ontology (MUO).</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.4.6 </span>Property: hasAssessment</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasAssessment">dqr:hasAssessment</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Indicates a calculation function for assessing the measurement result</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityRequirement</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>dqr:QualityAssessment</td>
</tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note:</td>
<td>The object can either be an individual definition of an assessment function. It can also be a URL to a well-known assessment function that was already defined somewehere else. If the property is not provided at all, the quality requirement description simply states the desired quality concept of interest along with some additional requirement meta data.</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.4.7 </span>Property: hasAssessmentParam</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasAssessmentParam">dqr:hasAssessmentParam</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Specifies parameter values that can be used in combination with well-known assessment function definitions.</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityRequirement</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>dqr:AssessmentParam</td>
</tr>
<!--
<tr>
<td class="prop">Note:</td>
<td></td>
</tr>-->
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h3><span class="secno">3.5 </span>Class: AssessmentParam </h3>
<table class="definition">
<thead>
<tr>
<th>RDF Class:</th>
<th><a name="AssessmentParam">dqr:AssessmentParam</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>
Represents a parameter with a defined value that can be reused by an assessment tool in combination with a well-known dqr:Assessment function
</td>
</tr>
<tr>
<td class="prop">Note:</td>
<td>In order to map and use these parameter values, they should have a well-known parameter type that corresponds to the parameter type used in the well-known assessment function</td>
</tr>
</tbody>
</table>
<p>The following properties can be used with instances of this class:
</p>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.5.1 </span>Property: hasParamType</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasParamType">dqr:hasParamType</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Indicates the type of the assessment param</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:AssessmentParam</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>dqr:ParamType</td>
</tr>
<tr><td class="prop">Minimum cardinality:</td><td>1</td></tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note:</td>
<td>The class dqr:Param is open for extensions and currently contains the concepts
<ul>
<li>dqr:LowerThanParam</li>
<li>dqr:LowerEqualThanParam</li>
<li>dqr:AverageParam</li>
<li>dqr:GreaterThanParam</li>
<li>dqr:GreaterEqualThanParam</li>
</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.5.2 </span>Property: hasValue</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasValue">dqr:hasValue</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Specified the value of the assessment parameter</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:AssessmentParam</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>xsd:anySimpleType</td>
</tr>
<tr><td class="prop">Minimum cardinality:</td><td>1</td></tr>
<tr><td class="prop">Maxmium cardinality:</td><td>1</td></tr>
<!--
<tr>
<td class="prop">Note:</td>
<td></td>
</tr>
-->
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h3><span class="secno">3.6 </span>Class: QualityAssessment </h3>
<table class="definition">
<thead>
<tr>
<th>RDF Class:</th>
<th><a name="QualityAssessment">dqr:QualityAssessment</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>
Represents the defintion of a function of measurement boundaries on how to assess the measured value of a related quality concept of interest
</td>
</tr>
<tr>
<td class="prop">Note:</td>
<td>This can either be an individually defined assessment function or a well-known assessment function. A well-known assessment function is a globally provided QualityAssessment URL for re-occuring assessment function patterns. <br/>
Currently, the following well-known QualityAssessment function descriptions are supported:<br/>
<ul>
<li>dqr:MaxValueAssessmentFunction - a linear quality assessment function for a measurement value from 0.0 (best) to a max value (worst), dqr:AssessmentParam dqr:LowerThanParam</li>
</ul>
This list is open for future extensions.
</td>
</tr>
</tbody>
</table>
<p>The following properties can be used with instances of this class:
</p>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.6.1 </span>Property: hasReturnType</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasReturnType">dqr:hasReturnType</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Indicates the type of the returned value for the assessment result</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityAssessment</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>dqr:ReturnType</td>
</tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note:</td>
<td>See section 3.2.1 for further details</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.6.2 </span>Property: hasReturnValue</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasReturnValue">dqr:hasReturnValue</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Indicates the computation type of the returned assessment value</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityAssessment</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>dqr:ReturnValue</td>
</tr>
<tr><td class="prop">Maxmium cardinality:</td><td>1</td></tr>
<tr>
<td class="prop">Note:</td>
<td>This is an additional meta information, if the assessment value is actually calculated by a particular assessment function. The class dqr:ReturnValue currently contains the concepts<br/>
<ul>
<li>dqr:FunctionalValue</li>
<li>dqr:ConstantValue</li>
</ul>
and is open for future extensions.
</td>
</tr>
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.6.3 </span>Property: hasCondition</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasCondition">dqr:hasCondition</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Specifies an operation or a condition that has to be met by the measured value in order to calculate an assessment result</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:QualityAssessment</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>dqr:AssessmentCondition</td>
</tr>
<tr><td class="prop">Minimum cardinality:</td><td>1</td></tr>
<!--
<tr>
<td class="prop">Note:</td>
<td></td>
</tr>
-->
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h3><span class="secno">3.7 </span>Class: AssessmentCondition </h3>
<table class="definition">
<thead>
<tr>
<th>RDF Class:</th>
<th><a name="AssessmentCondition">dqr:AssessmentCondition</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>Represents a measurement value range and a mapping function to an assessment value
</td>
</tr>
<!--
<tr>
<td class="prop">Note:</td>
<td></td>
</tr>
-->
</tbody>
</table>
<p>The following properties can be used with instances of this class:
</p>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.7.1 </span>Property: hasValueLowerThan</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasValueLowerThan">dqr:hasValueLowerThan</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>
Indicates what happens if the measured value is lower than the specified value
</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:AssessmentCondition</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>xsd:anySimpleType</td>
</tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<!--
<tr>
<td class="prop">Note:</td>
<td></td>
</tr>
-->
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.7.2 </span>Property: hasValueLowerEqualThan</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasValueLowerEqualThan">dqr:hasValueLowerEqualThan</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>
Indicates what happens if the measured value is lower or euqal than the specified value
</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:AssessmentCondition</td>
</tr>
<tr>
<td class="prop">Range:</td>
<td>xsd:anySimpleType</td>
</tr>
<tr><td class="prop">Maximum cardinality:</td><td>1</td></tr>
<!--
<tr>
<td class="prop">Note:</td>
<td></td>
</tr>
-->
</tbody>
</table>
</section>
<section typeof="bibo:Chapter" property="bibo:hasPart">
<h4><span class="secno">3.7.3 </span>Property: hasValueGreaterThan</h4>
<table class="definition">
<thead>
<tr>
<th>RDF Property:</th>
<th><a name="hasValueGreaterThan">dqr:hasValueGreaterThan</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="prop">Definition:</td>
<td>
Indicates what happens if the measured value is greater than the specified value
</td>
</tr>
<tr>
<td class="prop">Domain:</td>
<td>dqr:AssessmentCondition</td>