Re: 8 points for GRDDL (output other than RDF/XML?)

> 1.  IIRC, RDF/XML does not support numeric terms.

As far as I understand your words, it does. See

  http://www.w3.org/TR/REC-rdf-syntax/#typedliterals

and the second approved test case at 

  http://www.w3.org/TR/2004/REC-rdf-testcases-20040210/#tc_cert

which reads, in part:

  <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
           xmlns:eg="http://example.org/">

   <rdf:Description rdf:about="http://example.org/foo">
     <eg:bar 
          rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">10</eg:bar>
   </rdf:Description>
  
  </rdf:RDF>

as parsing to:

  <http://example.org/foo> 
      <http://example.org/bar> 
      "10"^^<http://www.w3.org/2001/XMLSchema#integer> .

Is that not support for numeric terms?

   -- sandro

Received on Friday, 10 March 2006 13:31:54 UTC