correcting the Turtle examples. removing slashes from URI localnames\n\n see http://lists.w3.org/Archives/Public/public-gld-comments/2012Apr/0026.html
authorfmaali
Thu, 03 May 2012 13:17:15 +0100
changeset 190 15b936fc851c
parent 189 017e6f91f784
child 191 492957fab05e
correcting the Turtle examples. removing slashes from URI localnames\n\n see http://lists.w3.org/Archives/Public/public-gld-comments/2012Apr/0026.html
dcat/index.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&nbsp;: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&nbsp;:dataset/001. A possible description of it using dcat is shown below:
 </p>
-<pre>  &nbsp;:dataset/001
+<pre>  &nbsp;:dataset-001
        a       dcat:Dataset&nbsp;;
        dct:title "Imaginary dataset"&nbsp;;
        dcat:keyword "accountability","transparency" ,"payments"&nbsp;;
-       dcat:theme&nbsp;:themes/accountability&nbsp;;
+       dcat:theme&nbsp;:accountability&nbsp;;
        dct:issued "2011-12-05"^^xsd:date&nbsp;;
        dct:updated "2011-12-05"^^xsd:date&nbsp;;
-       dct:publisher&nbsp;:agency/finance-ministry&nbsp;;
+       dct:publisher&nbsp;:finance-ministry&nbsp;;
        dct:accrualPeriodicity "every six months"&nbsp;;
        dct:language "en"^^xsd:language&nbsp;;
-       dcat:Distribution&nbsp;:dataset/001/csv&nbsp;;
+       dcat:Distribution&nbsp;:dataset-001-csv&nbsp;;
        .
 </pre>
 <p>Notice that this dataset is classified under the domain represented by the relative URI&nbsp;:themes/accountability. This should be part of the domains set identified by the URI&nbsp;:themes that was used to describe the catalog domains. An example SKOS description
 </p>
-<pre>   &nbsp;:themes/accountability 
+<pre>   &nbsp;:accountability 
         a skos:Concept&nbsp;;
         skos:inScheme&nbsp;:themes&nbsp;;
         skos:prefLabel "Accountability"&nbsp;;
@@ -167,7 +167,7 @@
 </pre>
 <p>The dataset can be downloaded in CSV format via the distribution represented by&nbsp;:dataset/001/csv.
 </p>
-<pre>  &nbsp;:dataset/001/csv
+<pre>  &nbsp;:dataset-001-csv
        a dcat:Distribution&nbsp;;
        dcat:accessURL &lt;<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>&gt;&nbsp;;
        dct:title "CSV distribution of imaginary dataset 001"&nbsp;;
@@ -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,&nbsp;: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>  &nbsp;:record/001
+<pre>  &nbsp;:record-001
        a dcat:CatalogRecord&nbsp;;
-       foaf:primaryTopic&nbsp;:dataset/001&nbsp;;
+       foaf:primaryTopic&nbsp;:dataset-001&nbsp;;
        dct:issued "2011-12-11"^^xsd:date&nbsp;;
    .
   &nbsp;:catalog
-       dcat:record&nbsp;:record/001&nbsp;;
+       dcat:record&nbsp;:record-001&nbsp;;
    .
 </pre>
 <a name="Encoding_of_property_values" id="Encoding_of_property_values"></a><h2> <span class="mw-headline"> Encoding of property values </span></h2>