correcting the Turtle examples. removing slashes from URI localnames\n\n see http://lists.w3.org/Archives/Public/public-gld-comments/2012Apr/0026.html
--- a/dcat/index.html Mon Apr 30 02:12:35 2012 -0400
+++ b/dcat/index.html Thu May 03 13:17:15 2012 +0100
@@ -125,7 +125,7 @@
dct:publisher :transparency-office ;
dcat:themes :themes ;
dct:language "en"^^xsd:language ;
- dcat:dataset :dataset/001 ;
+ dcat:dataset :dataset-001 ;
.
</pre>
<p>The publisher of the catalog has the relative URI :transparency-office. Further description of the publisher can be provided as in the following example:
@@ -144,22 +144,22 @@
</pre>
<p>The catalog connect to each of its datasets via dcat:dataset. In the example above, an example dataset was mentioned with the relative URI :dataset/001. A possible description of it using dcat is shown below:
</p>
-<pre> :dataset/001
+<pre> :dataset-001
a dcat:Dataset ;
dct:title "Imaginary dataset" ;
dcat:keyword "accountability","transparency" ,"payments" ;
- dcat:theme :themes/accountability ;
+ dcat:theme :accountability ;
dct:issued "2011-12-05"^^xsd:date ;
dct:updated "2011-12-05"^^xsd:date ;
- dct:publisher :agency/finance-ministry ;
+ dct:publisher :finance-ministry ;
dct:accrualPeriodicity "every six months" ;
dct:language "en"^^xsd:language ;
- dcat:Distribution :dataset/001/csv ;
+ dcat:Distribution :dataset-001-csv ;
.
</pre>
<p>Notice that this dataset is classified under the domain represented by the relative URI :themes/accountability. This should be part of the domains set identified by the URI :themes that was used to describe the catalog domains. An example SKOS description
</p>
-<pre> :themes/accountability
+<pre> :accountability
a skos:Concept ;
skos:inScheme :themes ;
skos:prefLabel "Accountability" ;
@@ -167,7 +167,7 @@
</pre>
<p>The dataset can be downloaded in CSV format via the distribution represented by :dataset/001/csv.
</p>
-<pre> :dataset/001/csv
+<pre> :dataset-001-csv
a dcat:Distribution ;
dcat:accessURL <<a href="http://www.example.org/files/001.csv" class="external free" title="http://www.example.org/files/001.csv" rel="nofollow">http://www.example.org/files/001.csv</a>> ;
dct:title "CSV distribution of imaginary dataset 001" ;
@@ -180,13 +180,13 @@
</pre>
<p>Finally, if the catalog publisher decides to keep metadata describing its records (i.e. the records containing metadata describing the datasets) dcat:CatalogRecord can be used. For example, :dataset/001 was issued on 2011-12-05. however, its description on Imaginary Catalog was added on 2011-12-11. This can be represented by dcat:
</p>
-<pre> :record/001
+<pre> :record-001
a dcat:CatalogRecord ;
- foaf:primaryTopic :dataset/001 ;
+ foaf:primaryTopic :dataset-001 ;
dct:issued "2011-12-11"^^xsd:date ;
.
:catalog
- dcat:record :record/001 ;
+ dcat:record :record-001 ;
.
</pre>
<a name="Encoding_of_property_values" id="Encoding_of_property_values"></a><h2> <span class="mw-headline"> Encoding of property values </span></h2>