fixes in 5.8 Express derivation between quality metrics

Following Antoine's answer, I'll repost this
https://github.com/w3c/dwbp/pull/421/files
as a change request to the mlist.

vocab-dqg.html sec 5.8 "Express derivation between quality metrics" has two
bugs:

1. :myDatasetDistribution is not anywhere in this example. Instead, should
be :myCSVDatasetDistribution, :mySPARQLDatasetDistribution :

:myDataset 
      a dcat:Dataset ;
      dcterms:title "My dataset" ; 
 -    dcat:distribution :myDatasetDistribution
 +    dcat:distribution :myCSVDatasetDistribution,
:mySPARQLDatasetDistribution

2. "sparql-results+json" is not a registered MIME. Instead,
"application/sparql-results+json" is the correct one

     dcterms:title "SPARQL access to the dataset" ;
 -    dcat:mediaType "sparql-results+json"  
 +    dcat:mediaType "application/sparql-results+json"  

Received on Thursday, 7 July 2016 10:50:04 UTC