Skip to content

Instantly share code, notes, and snippets.

@gatemezing
Created September 3, 2022 07:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gatemezing/ea47dcc8fb8b0ecd0b4e393426d8f112 to your computer and use it in GitHub Desktop.
Save gatemezing/ea47dcc8fb8b0ecd0b4e393426d8f112 to your computer and use it in GitHub Desktop.
Sample metadata to make a FAIR-able ontology in Turtle
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ex: <https://example.org/ex#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix cc: <http://creativecommons.org/ns#> .
## Ontology metadata here
<https://example.org/ex>
a owl:Ontology, voaf:Vocabulary ;
owl:versionIRI <https://example.org/ex/v1.4.ttl>;
owl:versionInfo "Version 1.4" ;
dcterms:creator <https://myorcidlink> ;
vann:preferredNamespacePrefix "ex";
vann:preferredNamespaceUri <https://example.org/ex#> ;
dcterms:contributor <https://colleague1-orcid-link>,
<https://colleague2-orcid-link>,
<https://colleague3-orcid-link>;
dcterms:issued "2022-08-27"^^xsd:date ;
dcterms:modified "2022-09-02"^^xsd:date ;
dcterms:title "Title of my awesome ontology"@en ;
dcterms:description "More description of my awesome ontology."@en;
cc:license <http://creativecommons.org/licenses/by/2.0/>,
<http://opendatacommons.org/licenses/by/>,
<http://www.data.gouv.fr/Licence-Ouverte-Open-Licence> ;
.
@gatemezing
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment