-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonly-related-to-trust-light.ttl
59 lines (50 loc) · 1.49 KB
/
only-related-to-trust-light.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
@prefix dqv: <http://www.w3.org/ns/dqv#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix : <http://example.org/kg/> .
:dbpediafr
a dcat:Dataset ;
dcterms:title "DBpedia in French"
.
:dbpediafr
dqv:hasQualityMeasurement :dbpediafrPageRank, :dbpediafrCreationDate
.
:dbpediafrPageRank
a dqv:QualityMeasurement ;
dqv:computedOn :dbpediafr ;
dqv:isMeasurementOf :pageRankMetric ;
dqv:value "0.0009"^^xsd:float
.
:dbpediafrCreationDate
a dqv:QualityMeasurement ;
dqv:computedOn :dbpediafr ;
dqv:isMeasurementOf :creationDateMetric ;
dqv:value "2023-06-01"^^xsd:dateTime
.
#definition of dimensions and metrics
:reputation
a dqv:Dimension ;
skos:prefLabel "Reputation"@en ;
skos:definition "Reputation refers to the reputation of the dataset."@en ;
dqv:inCategory :trust
.
:pageRankMetric
a dqv:Metric ;
skos:definition "PageRank of the KG."@en ;
dqv:expectedDataType xsd:float ;
dqv:inDimension :reputation
.
:currency
a dqv:Dimension ;
skos:prefLabel "Currency"@en ;
skos:definition "Currency refers to all the metric related to the time of the KG"@en ;
dqv:inCategory :trust
.
:creationDateMetric
a dqv:Metric ;
skos:definition "KG creation date"@en ;
dqv:expectedDataType xsd:dateTime;
dqv:inDimension :currency
.