Skip to content

Commit

Permalink
deploy: 0d27ae7
Browse files Browse the repository at this point in the history
  • Loading branch information
dalito committed Sep 3, 2023
0 parents commit a5082b1
Show file tree
Hide file tree
Showing 44 changed files with 3,372 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
3 changes: 3 additions & 0 deletions dev/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
**Directory to collect the vocabularies in rdf/turtle format**

that were created using the voc4cat workflow and its CI/CD pipeline.
185 changes: 185 additions & 0 deletions dev/voc4cat.log

Large diffs are not rendered by default.

65 changes: 65 additions & 0 deletions dev/vocab_example.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<https://example.org/test/0000010> a skos:Collection ;
dcterms:identifier "0000010"^^xsd:token ;
dcterms:isPartOf <https://example.org/test/> ;
dcterms:provenance "0000-0001-2345-6789 Created collection"@en ;
skos:definition "Collection of terms related to linked data."@en ;
skos:member <https://example.org/test/0000001>,
<https://example.org/test/0000002>,
<https://example.org/test/0000003> ;
skos:prefLabel "Linked data term"@en .

<https://example.org/test/0000002> a skos:Concept ;
dcterms:identifier "0000002"^^xsd:token ;
dcterms:provenance "0000-0001-2345-6789 Created concept"@en ;
rdfs:isDefinedBy <https://www.w3.org/TR/2010/NOTE-curie-20101216/> ;
skos:altLabel "CURIE"@en,
"CompactURI"@en ;
skos:broader <https://example.org/test/0000001> ;
skos:definition "A CURIE (or Compact URI) defines a generic, abbreviated syntax for expressing Uniform Resource Identifiers (URIs). "@en ;
skos:inScheme <https://example.org/test/> ;
skos:prefLabel "Compact Universal Resource Locator"@en .

<https://example.org/test/0000001> a skos:Concept ;
dcterms:identifier "0000001"^^xsd:token ;
dcterms:provenance "0000-0001-2345-6789 Created concept"@en ;
rdfs:isDefinedBy <https://datatracker.ietf.org/doc/html/rfc2396> ;
skos:altLabel "URI"@en ;
skos:definition "Uniform Resource Identifier is a compact string of characters for identifying an abstract or physical resource."@en ;
skos:inScheme <https://example.org/test/> ;
skos:narrower <https://example.org/test/0000002> ;
skos:prefLabel "Uniform Resource Identifier"@en ;
skos:relatedMatch <https://example.org/test/0000003> ;
skos:topConceptOf <https://example.org/test/> .

<https://example.org/test/0000003> a skos:Concept ;
dcterms:identifier "0000003"^^xsd:token ;
dcterms:provenance "0000-0001-2345-6789 Created concept"@en ;
rdfs:isDefinedBy <https://datatracker.ietf.org/doc/html/rfc3987> ;
skos:altLabel "IRI"@en ;
skos:definition "Internationalized Resource Identifier (IRI) is an internet protocol standard which builds on the Uniform Resource Identifier (URI) protocol by greatly expanding the set of permitted characters."@en ;
skos:inScheme <https://example.org/test/> ;
skos:prefLabel "Internationalized Resource Identifier"@en ;
skos:topConceptOf <https://example.org/test/> .

<https://example.org/test/> a skos:ConceptScheme ;
dcterms:created "2023-03-10"^^xsd:date ;
dcterms:creator <http://example.org/nfdi4cat/> ;
dcterms:hasPart <https://example.org/test/0000010> ;
dcterms:identifier ""^^xsd:token ;
dcterms:modified "2023-09-03"^^xsd:date ;
dcterms:provenance "https://orcid.org/0000-0001-2345-6789 Sofia Garcia"@en ;
dcterms:publisher <http://example.org/nfdi4cat/> ;
owl:versionInfo "v_0d27ae7a" ;
skos:definition "A test vocabulary for the voc4cat template"@en ;
skos:hasTopConcept <https://example.org/test/0000001>,
<https://example.org/test/0000003> ;
skos:prefLabel "Test-of-Voc4Cat"@en ;
dcat:contactPoint "Sofia Garcia (orcid:0000-0001-2345-6789)" .

Binary file added dev/vocab_example.xlsx
Binary file not shown.
19 changes: 19 additions & 0 deletions dev/vocab_example/0000001.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>

<https://example.org/test/0000001>
a skos:Concept ;
dcterms:identifier "0000001"^^xsd:token ;
dcterms:provenance "0000-0001-2345-6789 Created concept"@en ;
rdfs:isDefinedBy <https://datatracker.ietf.org/doc/html/rfc2396> ;
skos:altLabel "URI"@en ;
skos:definition "Uniform Resource Identifier is a compact string of characters for identifying an abstract or physical resource."@en ;
skos:inScheme <https://example.org/test/> ;
skos:narrower <https://example.org/test/0000002> ;
skos:prefLabel "Uniform Resource Identifier"@en ;
skos:relatedMatch <https://example.org/test/0000003> ;
skos:topConceptOf <https://example.org/test/> ;
.

19 changes: 19 additions & 0 deletions dev/vocab_example/0000002.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>

<https://example.org/test/0000002>
a skos:Concept ;
dcterms:identifier "0000002"^^xsd:token ;
dcterms:provenance "0000-0001-2345-6789 Created concept"@en ;
rdfs:isDefinedBy <https://www.w3.org/TR/2010/NOTE-curie-20101216/> ;
skos:altLabel
"CURIE"@en ,
"CompactURI"@en ;
skos:broader <https://example.org/test/0000001> ;
skos:definition "A CURIE (or Compact URI) defines a generic, abbreviated syntax for expressing Uniform Resource Identifiers (URIs). "@en ;
skos:inScheme <https://example.org/test/> ;
skos:prefLabel "Compact Universal Resource Locator"@en ;
.

17 changes: 17 additions & 0 deletions dev/vocab_example/0000003.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>

<https://example.org/test/0000003>
a skos:Concept ;
dcterms:identifier "0000003"^^xsd:token ;
dcterms:provenance "0000-0001-2345-6789 Created concept"@en ;
rdfs:isDefinedBy <https://datatracker.ietf.org/doc/html/rfc3987> ;
skos:altLabel "IRI"@en ;
skos:definition "Internationalized Resource Identifier (IRI) is an internet protocol standard which builds on the Uniform Resource Identifier (URI) protocol by greatly expanding the set of permitted characters."@en ;
skos:inScheme <https://example.org/test/> ;
skos:prefLabel "Internationalized Resource Identifier"@en ;
skos:topConceptOf <https://example.org/test/> ;
.

17 changes: 17 additions & 0 deletions dev/vocab_example/0000010.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>

<https://example.org/test/0000010>
a skos:Collection ;
dcterms:identifier "0000010"^^xsd:token ;
dcterms:isPartOf <https://example.org/test/> ;
dcterms:provenance "0000-0001-2345-6789 Created collection"@en ;
skos:definition "Collection of terms related to linked data."@en ;
skos:member
<https://example.org/test/0000001> ,
<https://example.org/test/0000002> ,
<https://example.org/test/0000003> ;
skos:prefLabel "Linked data term"@en ;
.

24 changes: 24 additions & 0 deletions dev/vocab_example/concept_scheme.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
PREFIX dcat: <http://www.w3.org/ns/dcat#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>

<https://example.org/test/>
a skos:ConceptScheme ;
dcterms:created "2023-03-10"^^xsd:date ;
dcterms:creator <http://example.org/nfdi4cat/> ;
dcterms:hasPart <https://example.org/test/0000010> ;
dcterms:identifier ""^^xsd:token ;
dcterms:modified "2023-03-10"^^xsd:date ;
dcterms:provenance "https://orcid.org/0000-0001-2345-6789 Sofia Garcia"@en ;
dcterms:publisher <http://example.org/nfdi4cat/> ;
owl:versionInfo "v2023-03-10" ;
skos:definition "A test vocabulary for the voc4cat template"@en ;
skos:hasTopConcept
<https://example.org/test/0000001> ,
<https://example.org/test/0000003> ;
skos:prefLabel "Test-of-Voc4Cat"@en ;
dcat:contactPoint "Sofia Garcia (orcid:0000-0001-2345-6789)" ;
.

Loading

0 comments on commit a5082b1

Please sign in to comment.