Skip to content

Commit

Permalink
Update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Ostrzyciel committed May 5, 2023
1 parent 8de4945 commit 5f17bae
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 4 deletions.
18 changes: 16 additions & 2 deletions src/documentation.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,33 @@
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix spdx: <http://spdx.org/rdf/terms#> .
@prefix rbdoc: <https://w3id.org/riverbench/schema/documentation#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@base <https://w3id.org/riverbench/schema/documentation> .

<https://w3id.org/riverbench/schema/documentation> rdf:type owl:Ontology ;
owl:versionIRI <https://w3id.org/riverbench/schema/documentation/dev> ;
owl:imports <https://w3id.org/riverbench/schema/metadata/dev> ;
rdfs:comment "Ontology with metadata needed to generate documentation of datasets, distributions, profiles, etc. in RiverBench"@en ;
rdfs:label "RiverBench documentation ontology"@en .
dc:description "Ontology with metadata needed to generate documentation of datasets, distributions, profiles, etc. in RiverBench"@en ;
dc:title "RiverBench documentation ontology"@en ;
dcterms:created "2023-04-30T00:00:00"^^xsd:dateTime ;
dcterms:creator _:genid1, "Piotr Sowiński"@en ;
dcterms:issued "2023-05-05T00:00:00"^^xsd:dateTime ;
dcterms:license <https://spdx.org/licenses/CC-BY-4.0> ;
vann:preferredNamespacePrefix "rbdoc" ;
vann:preferredNamespaceUri "https://w3id.org/riverbench/schema/documentation#" ;
<http://schema.org/citation> "Please cite this work according to the instructions here: https://w3id.org/riverbench/documentation/licensing/"@en .

_:genid1 foaf:homepage <https://github.com/Ostrzyciel> ,
<https://orcid.org/0000-0002-2543-9461> ;
foaf:name "Piotr Sowiński" ;
foaf:nick "Ostrzyciel" .

#################################################################
# Annotation properties
Expand Down
4 changes: 2 additions & 2 deletions src/metadata.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
owl:imports <http://www.w3.org/ns/dcat> ;
dc:description "Ontology for describing datasets and profiles in the RiverBench benchmark suite."@en ;
dc:title "RiverBench metadata ontology"@en ;
dct:created "2023-04-30"@en ;
dct:created "2023-04-30T00:00:00"^^xsd:dateTime ;
dct:creator _:genid1, "Piotr Sowiński"@en ;
dct:issued "2023-05-05"@en ;
dct:issued "2023-05-05T00:00:00"^^xsd:dateTime ;
dct:license <https://spdx.org/licenses/CC-BY-4.0> ;
vann:preferredNamespacePrefix "rb" ;
vann:preferredNamespaceUri "https://w3id.org/riverbench/schema/metadata#" ;
Expand Down
11 changes: 11 additions & 0 deletions src/theme.ttl
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix rbt: <https://w3id.org/riverbench/schema/theme#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

rbt:conceptScheme a skos:ConceptScheme ;
skos:prefLabel "RiverBench topic scheme"@en ;
skos:definition "Collection of topic concepts used to annotate RiverBench datasets."@en ;
dcterms:license <https://spdx.org/licenses/CC-BY-4.0> ;
dcterms:creator [
foaf:homepage <https://github.com/Ostrzyciel> , <https://orcid.org/0000-0002-2543-9461> ;
foaf:name "Piotr Sowiński" ;
foaf:nick "Ostrzyciel" ;
] ;
vann:preferredNamespacePrefix "rbt" ;
vann:preferredNamespaceUri "https://w3id.org/riverbench/schema/theme#" ;
skos:hasTopConcept rbt:rootConcept .

rbt:rootConcept a skos:Concept ;
Expand Down

0 comments on commit 5f17bae

Please sign in to comment.