Skip to content

Recognition of SWEET Contributors

Lewis John McGibbney edited this page Jan 17, 2019 · 3 revisions

This page describes how, if you so wish, you can be recognized for your contributions to SWEET.

Put simply, for anything you contribute, please populate the ontology metadata with the following Turtle snippet editing it with your own details. Note, you can see both a dcterms:creator and dcterms:contributor noted below. Please edit accordingly.

  dcterms:creator [
      rdf:type foaf:Person ;
      organization:hasMembership [
          rdf:type organization:Membership ;
          organization:memberDuring [
              rdf:type time:Interval ;
              time:hasBeginning [
                  rdf:type time:Instant ;
                  time:inXSDDateTimeStamp "2014-04-01T00:00:00+08:00"^^xsd:dateTimeStamp ;
                ] ;
            ] ;
          organization:organization <https://www.jpl.nasa.gov> ;
          organization:organization <http://dbpedia.org/resource/JPL> ;
          organization:role [
              rdf:type organization:Role ;
              rdfs:label "Data Scientist" ;
            ] ;
        ] ;
      foaf:family_name "McGibbney" ;
      foaf:firstName "Lewis J" ;
      foaf:mbox <mailto:[email protected]> ;
      foaf:name "Lewis John McGibbney" ;
    ] ;
  dcterms:contributor [
      rdf:type foaf:Person ;
      organization:hasMembership [
          rdf:type organization:Membership ;
          organization:memberDuring [
              rdf:type time:Interval ;
              time:hasBeginning [
                  rdf:type time:Instant ;
                  time:inXSDDateTimeStamp "2012-12-01T00:00:00+08:00"^^xsd:dateTimeStamp ;
                ] ;
            ] ;
          organization:organization <http://csiro.au> ;
          organization:organization <http://dbpedia.org/resource/CSIRO> ;
          organization:role [
              rdf:type organization:Role ;
              rdfs:label "Research Scientist" ;
            ] ;
        ] ;
      foaf:family_name "Cox" ;
      foaf:firstName "Simon J D" ;
      foaf:mbox <mailto:[email protected]> ;
      foaf:name "Simon J D COX" ;
      foaf:publications <http://orcid.org/0000-0002-3884-3420> ;
      foaf:workInfoHomepage <http://people.csiro.au/Simon-Cox> ;
] ;

An example of how this has been done can be found in the SWEET SSN Alignment Graph.

Clone this wiki locally