This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from NLeSC/refine4cloud
Refine4cloud
- Loading branch information
Showing
9 changed files
with
158 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,4 @@ playground | |
.vscode | ||
|
||
# Mac | ||
.DS_Store | ||
|
||
data | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
openapi: 3.0.0 | ||
info: | ||
description: | ||
Find more about [FAIR Data Point](https://github.com/NLeSC/fairdatapoint). | ||
title: FAIR Data Point | ||
version: "1.0.0" | ||
title: FAIR Data Point REST APIs | ||
description: FAIR Data Point is a RESTful web service that enables data owners | ||
to describe and to expose their datasets (metadata) as well as data users | ||
to discover more information about available datasets according to the | ||
[FAIR Data Principles](https://www.force11.org/group/fairgroup/fairprinciples). | ||
contact: | ||
name: Netherlands eScience Center | ||
url: https://www.esciencecenter.nl/ | ||
email: [email protected] | ||
license: | ||
name: Apache 2.0 | ||
url: 'http://www.apache.org/licenses/LICENSE-2.0.html' | ||
externalDocs: | ||
description: Find out more about FAIR Data Point | ||
url: https://github.com/NLeSC/fairdatapoint | ||
servers: | ||
- description: API version 1 | ||
url: / | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@prefix schema: <http://schema.org/> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix dcat: <http://www.w3.org/ns/dcat#> . | ||
@prefix dcterms: <http://purl.org/dc/terms/> . | ||
@prefix fdp: <http://rdf.biosemantics.org/ontologies/fdp-o#> . | ||
@prefix dbp: <http://dbpedia.org/resource/> . | ||
|
||
<http://0.0.0.0/catalog/catalog01> a dcat:Catalog ; | ||
dcterms:title "First sample catalog"; | ||
dcterms:hasVersion "2.0" ; | ||
dcterms:publisher <http://orcid.org/0000-0002-4368-8058> ; | ||
dcterms:isPartOf <http://0.0.0.0/fdp> ; | ||
fdp:metadataIdentifier <http://example.org/catalog01> ; | ||
fdp:metadataIssued "2016-10-27T00:00:00"^^xsd:dateTime ; | ||
fdp:metadataModified "2016-10-27T00:00:00"^^xsd:dateTime ; | ||
dcat:dataset <dataset/breedb> ; | ||
dcat:themeTaxonomy dbp:Breeding . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@prefix schema: <http://schema.org/> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix dcat: <http://www.w3.org/ns/dcat#> . | ||
@prefix dcterms: <http://purl.org/dc/terms/> . | ||
@prefix fdp: <http://rdf.biosemantics.org/ontologies/fdp-o#> . | ||
@prefix dbp: <http://dbpedia.org/resource/> . | ||
|
||
<http://0.0.0.0/dataset/breedb> a dcat:Dataset ; | ||
dcterms:title "BreeDB tomato passport dataset"^^xsd:string ; | ||
dcterms:publisher <http://orcid.org/0000-0002-4368-8058> ; | ||
dcterms:hasVersion "2.0"^^xsd:string ; | ||
dcterms:isPartOf <http://0.0.0.0/catalog/catalog01> ; | ||
fdp:metadataIdentifier <http://example.org/dataset01> ; | ||
fdp:metadataIssued "2016-10-27T09:30:00"^^xsd:dateTime ; | ||
fdp:metadataModified "2016-10-27T09:30:00"^^xsd:dateTime ; | ||
dcat:distribution <http://0.0.0.0/distribution/breedb-sparql> ; | ||
dcat:theme dbp:Plant_breeding . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix dcat: <http://www.w3.org/ns/dcat#> . | ||
@prefix dcterms: <http://purl.org/dc/terms/> . | ||
@prefix fdp: <http://rdf.biosemantics.org/ontologies/fdp-o#> . | ||
|
||
<http://0.0.0.0/distribution/breedb-sparql> a dcat:Distribution ; | ||
dcterms:title "SPARQL endpoint for BreeDB tomato passport data"^^xsd:string ; | ||
dcterms:license <http://rdflicense.appspot.com/rdflicense/cc-by-nc-nd3.0> ; | ||
dcterms:hasVersion "2.0"^^xsd:string ; | ||
dcterms:isPartOf <http://0.0.0.0/dataset/breedb> ; | ||
fdp:metadataIdentifier <http://example.org/dist_breedb-sparql> ; | ||
fdp:metadataIssued "2016-10-27T09:30:00"^^xsd:dateTime ; | ||
fdp:metadataModified "2016-10-27T09:30:00"^^xsd:dateTime ; | ||
dcat:mediaType "application/n-triples"^^xsd:string ; | ||
dcat:accessURL <http://virtuoso.biotools.nl:8888/sparql> . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@prefix ex: <http://example.com/ns#> . | ||
@prefix fdp: <http://rdf.biosemantics.org/ontologies/fdp-o#> . | ||
@prefix dcterms: <http://purl.org/dc/terms/> . | ||
@prefix lang: <http://id.loc.gov/vocabulary/iso639-1/> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix r3d: <http://www.re3data.org/schema/3-0#> . | ||
|
||
<http://0.0.0.0/fdp> a r3d:Repository; | ||
dcterms:title "FAIR Data Point service of Plant Breeding group at Wageningen University and Research."; | ||
dcterms:title "FAIR Data Point service van Plant Breeding group van Wageningen University and Research."@nl; | ||
dcterms:hasVersion "0.2"; | ||
dcterms:description "This service provides machine-readable descriptions about available datasets (metadata)."; | ||
dcterms:publisher <http://orcid.org/0000-0003-1711-7961> ; | ||
dcterms:language lang:en ; | ||
dcterms:conformsTo <https://github.com/FAIRDataTeam/FAIRDataPoint-Spec> ; | ||
fdp:metadataIdentifier ex:fdp; | ||
fdp:metadataIssued "2019-04-09T10:01:00"^^xsd:dateTime; | ||
fdp:metadataModified "2019-05-10T09:00:00"^^xsd:dateTime; | ||
rdfs:label "FAIR Data Point service of Plant Breeding group at Wageningen University and Research."; | ||
r3d:dataCatalog | ||
<http://0.0.0.0/catalog/catalog01>, | ||
<http://0.0.0.0/catalog/catalog02>; | ||
r3d:repositoryIdentifier ex:fdp_repositoryID . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters