- From: Holger Knublauch <holger@topquadrant.com>
- Date: Fri, 22 Apr 2016 13:31:03 +1000
- To: "public-data-shapes-wg@w3.org" <public-data-shapes-wg@w3.org>
As discussed today, I have worked on a proposal to use sh:prefix as a compromise between the various view points. It can be found in the beginning of section 6.1: http://w3c.github.io/data-shapes/shacl/#sparql-constraints-syntax (Please don't interpret this as an attempt to smuggle something into the spec :) I have put this into the draft with the intention of making a readable proposal only. The section that I wrote has merely replaced an even more controversial passage based on the prefixes in the shapes graph. It is also clearly marked as unfinished.) Reflecting on the discussion today, I was really surprised by the broad pushback against this sh:prefix property. From a practical viewpoint, it appears clear to me that people would not like to have to be forced to either spell out the whole prefix each time sh:sparql """ SELECT $this ($this AS ?subject) (<http://example.com/ns#germanLabel> AS ?predicate) (?value AS ?object) WHERE { $this <http://example.com/ns#germanLabel> ?value . FILTER (!isLiteral(?value) || !langMatches(lang(?value), "de")) } """ ; or to repeat the same PREFIX declaration in each sh:sparql: sh:sparql """ PREFIX ex: <http://example.com/ns#> SELECT $this ($this AS ?subject) (ex:germanLabel AS ?predicate) (?value AS ?object) WHERE { $this ex:germanLabel ?value . FILTER (!isLiteral(?value) || !langMatches(lang(?value), "de")) } """ ; Having to repeat or spell out does not only bloat the documents, but also makes them more error prone and harder to maintain. Sure, visual tools could generate them, but this would not help those hand-editing Turtle files. One counter argument today was that this would open the door for conflicts because of prefix clashes. Sure, this is similar to the existing situation with Turtle and other formats. But 1) These potential conflicts are easy to detect and would produce an invalid shapes graph 2) Shape graph authors can always shield themselves from conflicting sh:prefix statements by putting PREFIXes into their query strings. 3) In my ten years at TQ I have barely ever seen such conflicts. The other argument I remember was that having fully parsable sh:sparql strings in the file would simplify copy and paste for testing. Again, nobody is forced to use sh:prefix triples so you are free to follow the coding convention and workflow of your choice. The other option, not doing anything will almost certainly lead to a situation in which some tools will just use the prefixes from Turtle files and others won't, creating incompatible files. I believe sh:prefix has little costs and is IMHO crucial for getting SHACL's SPARQL extension mechanism adopted. Given that we are exploring something new here (SPIN didn't use sh:sparql but a completely different RDF syntax for SPARQL), I propose to leave it in the spec for now and let user feedback decide. As a further step towards an acceptable compromise, I have added a statement that it is recommended to only use sh:prefix in closed and controlled environments or for well-established prefixes. Thanks, Holger
Received on Friday, 22 April 2016 03:31:39 UTC