Move API google analytics and AGLS metadata to seperate extensions
[ckanext-datagovau.git] / ckanext / datagovau / templates / package / read.n3
1 @prefix : <http://www.w3.org/2000/01/rdf-schema#> .
2 @prefix dcat: <http://www.w3.org/ns/dcat#> .
3 @prefix dct: <http://purl.org/dc/terms/> .
4 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
6 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7
8 <${ h.url_for(controller='package',action='read',id=c.pkg_dict['name'], qualified=True)}>
9 a dcat:Dataset;
10 dct:description "${c.pkg_dict['notes']}";
11 dct:identifier "${c.pkg_dict['name']}";
12 dct:relation [
13 rdf:value "";
14 :label "change_note" ],
15 [
16 rdf:value "";
17 :label "definition_note" ],
18 [
19 rdf:value "";
20 :label "editorial_note" ],
21 [
22 rdf:value "";
23 :label "example_note" ],
24 [
25 rdf:value "";
26 :label "history_note" ],
27 [
28 rdf:value "";
29 :label "scope_note" ],
30 [
31 rdf:value "";
32 :label "skos_note" ],
33 [
34 rdf:value "";
35 :label "temporal_granularity" ],
36 [
37 rdf:value "";
38 :label "type_of_dataset" ],
39 [
40 rdf:value "";
41 :label "update_frequency" ];
42 dct:title "${c.pkg_dict['title']}";
43 :label "${c.pkg_dict['name']}";
44 = <urn:uuid:${c.pkg_dict['id']}>;
45 foaf:homepage <http://127.0.0.1:5000/dataset/testt> .