Move API google analytics and AGLS metadata to seperate extensions
[ckanext-datagovau.git] / ckanext / datagovau / templates / package / read.n3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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> .