onto.metadata creator, publisher, date and license

Posted by Olaf on
URL: http://owlready.306.s1.nabble.com/onto-metadata-creator-publisher-date-and-license-tp772.html

Is it possible to add creator, publisher, date and license metadata to a new ontology through the onto.metadata interface?

example from http://linkeddatabook.com/editions/1.0/#htoc51

1 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
2 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
3 @prefix owl: <http://www.w3.org/2002/07/owl#> .
4 @prefix dcterms: <http://purl.org/dc/terms/> .
5 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
6 @prefix cc: <http://creativecommons.org/ns#> .
7 @prefix prod: <http://biglynx.co.uk/vocab/productions#> .
8
9 <>
10   rdf:type owl:Ontology ;
11   rdfs:label "Big Lynx Productions Vocabulary" ;
12   dcterms:creator <http://biglynx.co.uk/people/nelly-jones> ;
13   dcterms:publisher <http://biglynx.co.uk/company.rdf#company> ;
14   dcterms:date "2010-10-31"^^xsd:date ;
15   cc:license <http://creativecommons.org/licenses/by-sa/3.0/> .