SoftwareUnderstanding/software_types

Add metadata of the profile in machine-readable files

dgarijo opened this issue · 2 comments

We should add proper metadata of the profile on both the TTL and JSON-LD files:

  • authors
  • namespace
  • preferredNSPrefix
  • license
  • creationDate
  • version
  • version of schema.org it conforms to/extends
  • description
  • etc

Sounds good, can you perhaps point to an example we can base off? I'm less familiar with it.

Yeah, it's similar to this one: https://w3id.org/example

<https://w3id.org/example> rdf:type owl:Ontology ;
                            owl:versionIRI <https://w3id.org/example/1.0.1> ;
                            <http://purl.org/dc/terms/abstract> "An example vocabulary designed to illustrate how to publish vocabularies on the Web following the FAIR principles"@en ;
                            <http://purl.org/dc/elements/1.1/description> "This is an example ontology to illustrate some of the annotations that should be included"@en ;
                            <http://purl.org/dc/elements/1.1/title> "The example ontology"@en ;
                            <http://purl.org/dc/terms/created> "February 5th, 2020"@en ;
                            <http://purl.org/dc/terms/creator> "Daniel Garijo"@en ,
                                                               "Maria Poveda-Villalon"@en ;
                            <http://purl.org/dc/terms/license> <http://creativecommons.org/licenses/by/2.0/> ;
                            <http://purl.org/vocab/vann/preferredNamespacePrefix> "exo"@en ;
                            <http://purl.org/vocab/vann/preferredNamespaceUri> "https://w3id.org/example" ;
                            <http://schema.org/citation> "Cite this vocabulary as: Garijo, D. and Poveda-Villalon, M. The example ontology 1.0.1."@en ;
                            rdfs:comment "An example vocabulary designed to illustrate how to publish vocabularies on the Web following the FAIR principles. This vocabulary describes three simple classes with 3 properties and a data property."@en ;
                            owl:backwardCompatibleWith <https://w3id.org/example/1.0.0> ;
                            owl:priorVersion <https://w3id.org/example/1.0.0> ;
                            owl:versionInfo "1.0.1"@en .