diff --git a/spec/index.html b/spec/index.html index ecbcf04..df38478 100644 --- a/spec/index.html +++ b/spec/index.html @@ -388,11 +388,20 @@

Definition

Document Element

The SPARQL Results Document begins with sparql document element in the http://www.w3.org/2005/sparql-results# namespace, written as follows:

<?xml version="1.0"?>
-<sparql xmlns="http://www.w3.org/2005/sparql-results#">
+<sparql xmlns="http://www.w3.org/2005/sparql-results#"
+  xmlns:its="http://www.w3.org/2005/11/its" 
+  its:version="2.0">
  ...
 </sparql>
 

Inside the sparql element are two sub-elements, head and a results element (either results or boolean) which must appear in that order.

+

If no literals with base direction appear in the results, the sparql document element may be simplified as follows.

+
<?xml version="1.0"?>
+<sparql xmlns="http://www.w3.org/2005/sparql-results#">
+ ...
+</sparql>
+
+

Different values of its:version are allowed.