-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathFM_F2
71 lines (64 loc) · 4.48 KB
/
FM_F2
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
@prefix this: <https://purl.org/fair-metrics/FM_F2#nanopub.RAqMxnBJOG91C5nBaJiAcI7WY6V98KzDja7f5sBXyMj48> .
@prefix sub: <https://purl.org/fair-metrics/FM_F2#nanopub.RAqMxnBJOG91C5nBaJiAcI7WY6V98KzDja7f5sBXyMj48.> .
@prefix metrics: <https://purl.org/fair-metrics/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dcelem: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix pav: <http://swan.mindinformatics.org/ontologies/1.2/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@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 fm: <https://purl.org/fair-metrics/terms/> .
sub:Head {
this: np:hasAssertion sub:assertion ;
np:hasProvenance sub:provenance ;
np:hasPublicationInfo sub:pubinfo ;
a np:Nanopublication .
}
sub:assertion {
metrics:FM_F2 a fair:FAIR-Metric ;
foaf:primaryTopic fair:F2 .
}
sub:provenance {
sub:_1 dcelem:format "application/x-texinfo" ;
a <http://rdfs.org/ns/void#Dataset> , dcat:Distribution ;
dcat:downloadURL <https://raw.githubusercontent.com/FAIRMetrics/Metrics/master/Distributions/FM_F2.tex> .
sub:_2 dcelem:format "application/pdf" ;
a <http://rdfs.org/ns/void#Dataset> , dcat:Distribution ;
dcat:downloadURL <https://raw.githubusercontent.com/FAIRMetrics/Metrics/master/Distributions/FM_F2.pdf> .
sub:assertion dcterms:author "Erik Schultes" , "Luiz Bonino" , "Mark Wilkinson" , "Michel Dumontier" , "Peter Doorn" , "Susanna Sansone" ;
dcterms:title "Machine-readability of metadata" ;
rdfs:comment "FAIR Metric for Fair Principle F2" ;
dcat:distribution sub:_1 , sub:_2 ;
prov:wasGeneratedBy "FAIR Metrics Working Group" ;
fm:comments "None" ;
fm:examples """This URL can resolve to:
- A record in a metadata registry relevant to your digital object (e.g. FAIRsharing.org, FAIR Data Point, smartAPI editor)
- Your metadata on an HTML web page using schema.org
- A FAIR Accessor...
Semanticscience Integrated Ontology : http://semanticscience.org/ontology/sio.owl https://biosharing.org/bsg-s002686
Example of a DANS metadata-record of an archived dataset: https://easy.dans.knaw.nl/ui/datasets/id/easy-dataset:67859/tab/1
smartAPI's API metadata: https://raw.githubusercontent.com/WebsmartAPI/smartAPI/master/docs/iodocs/smartapi.json
Metadata record of a database: - GEO https://fairsharing.org/biodbcore-000441
Metadata record of a standard: - RDF https://fairsharing.org/bsg-s000559
Non-article Published Work
- my Zenodo Deposit for polyA (https://doi.org/10.5281/zenodo.47641)
- myExperiment Workflow (http://www.myexperiment.org/workflows/2999.html)
- Jupyter notebook on GitHub (https://github.com/VidhyasreeRamu/GlobalClimateChange/blob/master/GlobalWarmingAnalysis.ipynb)""" ;
fm:measuring "The availability of machine-readable metadata that describes a digital resource." ;
fm:procedure "HTTP GET on the metadata URL. A response of [a 200,202,203 or 206 HTTP response after resolving all and any prior redirects. e.g. 301 -> 302 -> 200 OK] indicates that there is indeed a document. The second URL should resolve to the record of a registered file format (e.g. DCAT, DICOM, schema.org etc.) in a registry like FAIRsharing. Future ehnancements to FAIRSharing may include tags that indicate whether or not a given file format is generally-agreed to be machine-readable" ;
fm:rationale """This metric extit{does not} attempt to measure (or even define) 'Richness' - this will be defined in a future Metric. This metric is intended to test the format of the metadata - machine readability of metadata makes it possible to optimize discovery. For instance, Web search engines suggest the use of particular structured metadata elements to optimize search. Thus, the machine-readability aspect can help people and machines find a digital resource of interest.""" ;
fm:relevance "All" ;
fm:requirements "A URL to a document that contains machine-readable metadata for the digital resource. Furthermore, the file format must be specified." ;
fm:validation "Machine-readable or Machine-not-readable" .
}
sub:pubinfo {
this: dcterms:created "2017-11-20T00: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" .
}