-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathterms
72 lines (63 loc) · 3.02 KB
/
terms
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
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix fm: <https://purl.org/fair-metrics/terms/> .
<https://purl.org/fair-metrics/terms/>
dcterms:modified "2018-04-04"^^<http://www.w3.org/2001/XMLSchema#date> ;
dcterms:title "FAIRMetrics Terms"@en .
fm:measuring
a rdf:Property ;
dcterms:issued "2018-04-04"^^<http://www.w3.org/2001/XMLSchema#date> ;
rdfs:isDefinedBy <https://purl.org/fair-metrics/terms/> ;
rdfs:range rdfs:Literal ;
rdfs:comment "A description of what is being measured by the metric."@en ;
rdfs:label "What is being measured?"@en .
fm:rationale
a rdf:Property ;
dcterms:issued "2018-04-04"^^<http://www.w3.org/2001/XMLSchema#date> ;
rdfs:isDefinedBy <https://purl.org/fair-metrics/terms/> ;
rdfs:range rdfs:Literal ;
rdfs:comment "A description of why this is being measured."@en ;
rdfs:label "Why should we measure it?"@en .
fm:requirements
a rdf:Property ;
dcterms:issued "2018-04-04"^^<http://www.w3.org/2001/XMLSchema#date> ;
rdfs:isDefinedBy <https://purl.org/fair-metrics/terms/> ;
rdfs:range rdfs:Literal ;
rdfs:comment "A description of what requirements need to be met for the measure to be considered successful."@en ;
rdfs:label "What must be provided?"@en .
fm:procedure
a rdf:Property ;
dcterms:issued "2018-04-04"^^<http://www.w3.org/2001/XMLSchema#date> ;
rdfs:isDefinedBy <https://purl.org/fair-metrics/terms/> ;
rdfs:range rdfs:Literal ;
rdfs:comment "A description of how the requirements are to be measured."@en ;
rdfs:label "How do we measure it?"@en .
fm:validation
a rdf:Property ;
dcterms:issued "2018-04-04"^^<http://www.w3.org/2001/XMLSchema#date> ;
rdfs:isDefinedBy <https://purl.org/fair-metrics/terms/> ;
rdfs:range rdfs:Literal ;
rdfs:comment "A description of what constitutes a valid result."@en ;
rdfs:label "What is a valid result?"@en .
fm:relevance
a rdf:Property ;
dcterms:issued "2018-04-04"^^<http://www.w3.org/2001/XMLSchema#date> ;
rdfs:isDefinedBy <https://purl.org/fair-metrics/terms/> ;
rdfs:range rdfs:Literal ;
rdfs:comment "A description of digital resources for which this measure is relevant."@en ;
rdfs:label "For which digital resource(s) is this relevant?"@en .
fm:examples
a rdf:Property ;
dcterms:issued "2018-04-04"^^<http://www.w3.org/2001/XMLSchema#date> ;
rdfs:isDefinedBy <https://purl.org/fair-metrics/terms/> ;
rdfs:range rdfs:Literal ;
rdfs:comment "A description of applications across different types of digital resources."@en ;
rdfs:label "Examples of their application across types of digital resource"@en .
fm:comments
a rdf:Property ;
dcterms:issued "2018-04-04"^^<http://www.w3.org/2001/XMLSchema#date> ;
rdfs:isDefinedBy <https://purl.org/fair-metrics/terms/> ;
rdfs:range rdfs:Literal ;
rdfs:comment "Additional comments on the described metric."@en ;
rdfs:label "Comments"@en .