Work on unified metadata output
[ckanext-datagovau.git] / ckanext / datagovau / templates / package / read.n3
blob:a/ckanext/datagovau/templates/package/read.n3 -> blob:b/ckanext/datagovau/templates/package/read.n3
--- a/ckanext/datagovau/templates/package/read.n3
+++ b/ckanext/datagovau/templates/package/read.n3
@@ -1,1 +1,45 @@
+@prefix : <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix dcat: <http://www.w3.org/ns/dcat#> .
+@prefix dct: <http://purl.org/dc/terms/> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 
+<${ h.url_for(controller='package',action='read',id=c.pkg_dict['name'], qualified=True)}>
+a dcat:Dataset;
+     dct:description "${c.pkg_dict['notes']}";
+     dct:identifier "${c.pkg_dict['name']}";
+     dct:relation  [
+         rdf:value "";
+         :label "change_note" ],
+             [
+         rdf:value "";
+         :label "definition_note" ],
+             [
+         rdf:value "";
+         :label "editorial_note" ],
+             [
+         rdf:value "";
+         :label "example_note" ],
+             [
+         rdf:value "";
+         :label "history_note" ],
+             [
+         rdf:value "";
+         :label "scope_note" ],
+             [
+         rdf:value "";
+         :label "skos_note" ],
+             [
+         rdf:value "";
+         :label "temporal_granularity" ],
+             [
+         rdf:value "";
+         :label "type_of_dataset" ],
+             [
+         rdf:value "";
+         :label "update_frequency" ];
+     dct:title "${c.pkg_dict['title']}";
+     :label "${c.pkg_dict['name']}";
+     = <urn:uuid:${c.pkg_dict['id']}>;
+     foaf:homepage <http://127.0.0.1:5000/dataset/testt> .