small editorial updates to DCAT document
authorfmaali
Tue, 24 Jul 2012 15:42:32 +0100
changeset 195 447d6c0215bf
parent 194 2735149f5e9c
child 196 6a8f4468005e
small editorial updates to DCAT document
dcat/index.html
--- a/dcat/index.html	Thu Jun 28 14:53:35 2012 +0100
+++ b/dcat/index.html	Tue Jul 24 15:42:32 2012 +0100
@@ -95,7 +95,11 @@
     <tr><td>dcat</td><td>http://www.w3.org/ns/dcat#</td></tr>
     <tr><td>dcterms</td><td>http://purl.org/dc/terms/</td></tr>
     <tr><td>dctype</td><td>http://purl.org/dc/dcmitype/</td></tr>
-    <tr><td>foaf  </td><td>http://xmlns.com/foaf/0.1/</td></tr>
+    <tr><td>foaf</td><td>http://xmlns.com/foaf/0.1/</td></tr>
+    <tr><td>rdf</td><td>http://www.w3.org/1999/02/22-rdf-syntax-ns#</td></tr>
+    <tr><td>rdfs</td><td>http://www.w3.org/2000/01/rdf-schema#</td></tr>
+    <tr><td>skos</td><td>http://www.w3.org/2004/02/skos/core#>/td></tr>
+    <tr><td>xsd</td><td>http://www.w3.org/2001/XMLSchema#</td></tr>
   </tbody>
 </table>
 </section>
@@ -120,12 +124,12 @@
 </p>
 <pre>  &nbsp;:catalog
        a dcat:Catalog&nbsp;;
-       dct:title "Imaginary catalog"&nbsp;;
+       dcterms:title "Imaginary catalog"&nbsp;;
        rdfs:label "Imaginary catalog"&nbsp;;
        foaf:homepage &lt;<a href="http://example.org/catalog" class="external free" title="http://example.org/catalog" rel="nofollow">http://example.org/catalog</a>&gt;&nbsp;;
-       dct:publisher&nbsp;:transparency-office&nbsp;;
-       dcat:themes&nbsp;:themes&nbsp;;
-       dct:language "en"^^xsd:language&nbsp;;
+       dcterms:publisher&nbsp;:transparency-office&nbsp;;
+       dcat:themeTaxonomy&nbsp;:themes&nbsp;;
+       dcterms:language "en"^^xsd:language&nbsp;;
        dcat:dataset&nbsp;:dataset-001&nbsp;;
        .
 </pre>
@@ -136,25 +140,25 @@
        rdfs:label "Transparency Office"&nbsp;;
        .
 </pre>
-<p>The catalog classify its datasets according to a set of domains represented by the relative URI&nbsp;:themes. SKOS can be used to describe the domains used:
+<p>The catalog classifies its datasets according to a set of domains represented by the relative URI&nbsp;:themes. SKOS can be used to describe the domains used:
 </p>
 <pre>  &nbsp;:themes
        a skos:ConceptScheme&nbsp;;
        skos:prefLabel "A set of domains to classify documents"&nbsp;;
-   .
+       .
 </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>The catalog lists each of its datasets via dcat:dataset property. 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
        a       dcat:Dataset&nbsp;;
-       dct:title "Imaginary dataset"&nbsp;;
+       dcterms:title "Imaginary dataset"&nbsp;;
        dcat:keyword "accountability","transparency" ,"payments"&nbsp;;
        dcat:theme&nbsp;:accountability&nbsp;;
-       dct:issued "2011-12-05"^^xsd:date&nbsp;;
-       dct:modified "2011-12-05"^^xsd:date&nbsp;;
-       dct:publisher&nbsp;:finance-ministry&nbsp;;
-       dct:accrualPeriodicity "every six months"&nbsp;;
-       dct:language "en"^^xsd:language&nbsp;;
+       dcterms:issued "2011-12-05"^^xsd:date&nbsp;;
+       dcterms:modified "2011-12-05"^^xsd:date&nbsp;;
+       dcterms:publisher&nbsp;:finance-ministry&nbsp;;
+       dcterms:accrualPeriodicity "every six months"&nbsp;;
+       dcterms:language "en"^^xsd:language&nbsp;;
        dcat:Distribution&nbsp;:dataset-001-csv&nbsp;;
        .
 </pre>
@@ -166,20 +170,28 @@
         skos:prefLabel "Accountability"&nbsp;;
         .
 </pre>
-<p>The dataset can be downloaded in CSV format via the distribution represented by&nbsp;:dataset-001-csv.
+<p>The dataset can be downloaded as a 5Kb CSV file. This is
+represented via the RDF resource of type dcat:Distribution&nbsp;:dataset-001-csv.
 </p>
 <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;;
-       dct:format [
-            a dct:IMT; 
+       dcterms:title "CSV distribution of imaginary dataset 001"&nbsp;;
+       dcterms:format [
+            a dcterms:IMT; 
             rdf:value "text/csv"; 
             rdfs:label "CSV"
+       ];
+       dcat:size [
+            rdfs:label "5Kb";
+            dcat:bytes "5120"^^xsd:integer;
        ]
        .
 </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>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,
+while &nbsp;:dataset-001 was issued on 2011-12-05, its description on Imaginary Catalog was added on 2011-12-11. This can be represented by dcat:
 </p>
 <pre>  &nbsp;:record-001
        a dcat:CatalogRecord&nbsp;;