forked from FAIRMetrics/Metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFM_A1.1
70 lines (58 loc) · 3.51 KB
/
FM_A1.1
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
@prefix this: <https://purl.org/fair-metrics/FM_A1.1> . # canonical URI for the metric
@prefix sub: <https://purl.org/fair-metrics/FM_A1.1#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dcelem: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix nx: <http://www.nextprot.org/db/search#> .
@prefix pav: <http://swan.mindinformatics.org/ontologies/1.2/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix prv: <http://purl.org/net/provenance/ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ro: <http://purl.org/obo/owl/OBO_REL#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <http://purl.org/fair-ontology#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix fm: <https://purl.org/fair-metrics/terms/> .
sub:Head {
sub:nanopub np:hasAssertion sub:assertion ;
np:hasProvenance sub:provenance ;
np:hasPublicationInfo sub:pubinfo ;
a np:Nanopublication .
}
sub:assertion {
this: a fair:FAIR-Metric ;
foaf:primaryTopic fair:A1.1 .
}
sub:provenance {
sub:assertion dcterms:author "Michel Dumontier", "Mark Wilkinson" , "Susanna Sansone", "Peter Doorn", "Luiz Bonino", "Erik Schultes" ;
dcterms:title "Access Protocol"^^xsd:string ;
rdfs:comment "FAIR Metric for Fair Principle A1.1"^^xsd:string ;
fm:measuring "The nature and use limitations of the access protocol"^^xsd:string ;
fm:rationale "Access to a resource may be limited by the specified communication protocol. In particular, we are worried about access to technical specifications and any costs associated with implementing the protocol. Protocols that are closed source or that have royalties associated with them could prevent users from being able to obtain the resource"^^xsd:string ;
fm:requirements "i) A URL to the description of the protocol\nii) true/false as to whether the protocol is open source\niii) true/false as to whether the protocol is (royalty) free"^^xsd:string ;
fm:procedure "Do an HTTP get on the URL to see if it returns a valid document. Ideally, we would have a universal database of communication protocols from which we can check this URL. We also check whether questions 2 and 3 are true or false."^^xsd:string ;
fm:validation "The HTTP GET on the URL should return a 200,202,203 or 206 HTTP response after resolving all and any prior redirects. e.g. 301 -> 302 -> 200 OK. The other two should be true/false."^^xsd:string ;
fm:relevance "All"^^xsd:string ;
fm:examples "None"^^xsd:string ;
fm:comments "None"^^xsd:string ;
dcat:distribution _:dist1 ;
dcat:distribution _:dist2 ;
prov:wasGeneratedBy "FAIR Metrics Working Group" .
_:dist1 dcelem:format "application/x-texinfo" ;
rdf:type <http://rdfs.org/ns/void#Dataset> ;
rdf:type <http://www.w3.org/ns/dcat#Distribution> ;
dcat:downloadURL <https://raw.githubusercontent.com/FAIRMetrics/Metrics/master/Distributions/FM_A1.1.tex> .
_:dist2 dcelem:format "application/pdf" ;
rdf:type <http://rdfs.org/ns/void#Dataset> ;
rdf:type <http://www.w3.org/ns/dcat#Distribution> ;
dcat:downloadURL <https://raw.githubusercontent.com/FAIRMetrics/Metrics/master/Distributions/FM_A1.1.pdf> .
}
sub:pubinfo {
this: dcterms:created "2017-11-21T00:00:00.0Z"^^xsd:dateTime ;
dcterms:rights <https://creativecommons.org/publicdomain/zero/1.0> ;
dcterms:rightsHolder <http://go-fair.org> ;
pav:authoredBy "Mark Wilkinson" , <https://orcid.org/0000-0001-6960-357X> ;
pav:versionNumber "1" ;
}