-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a5082b1
Showing
44 changed files
with
3,372 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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,3 @@ | ||
**Directory to collect the vocabularies in rdf/turtle format** | ||
|
||
that were created using the voc4cat workflow and its CI/CD pipeline. |
Large diffs are not rendered by default.
Oops, something went wrong.
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,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 not shown.
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,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/> ; | ||
. | ||
|
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,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 ; | ||
. | ||
|
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 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/> ; | ||
. | ||
|
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 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 ; | ||
. | ||
|
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 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)" ; | ||
. | ||
|
Oops, something went wrong.