vote up 0 vote down star
<rdf:Description about='uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031'>

Why this about does not contain urn:uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031 instead? Isn't the uuid a urn, and therefore required to have a urn: scheme in front of it ?

flag

76% accept rate
Sorry, i didn't see your RDF closely. The problem in the RDF validator is not the uri itslef but you used 'about' instead of 'rdf:about'. changing this attribute makes your document OK. – Pierre Oct 27 at 10:16
If the problem "why does my rdf not validate with this particular software" - it should have been the question. – dajobe Oct 27 at 14:29
no, the problem is why the URI specified as an argument of the rdf about does not contain urn:uuid:, as from standard, and why this seems to be the norm (if you search for rdf uuid on google you will see that) – Stefano Borini Oct 28 at 1:26

2 Answers

vote up 1 vote down check

Following the chain of specifications, the IANA URN namespace registry does indeed register 'uuid' as a namespace after 'urn:'. So yes, the URL above is wrong and it should start 'urn:uuid' as you were expecting.

link|flag
the fact is that if you search with google, you find a lot of URI like that one. – Stefano Borini Oct 27 at 5:41
It is still wrong, however many times you find evidence of that on the web with some search engine. – dajobe Oct 27 at 14:28
vote up 1 vote down

This URI is wrong. Using the following RDF document in the W3C RDF Validator returns an error

<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:dc="http://purl.org/dc/elements/1.1/">
  <rdf:Description about='uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031'>
    <dc:title>Hello</dc:title> 
  </rdf:Description>
</rdf:RDF>

Error: {W102} unqualified use of rdf:about is deprecated.[Line = 4, Column = 70]

link|flag
In fact, the problem comes from "rdf:about" see my comment in the header, please. – Pierre Oct 27 at 10:17
ah, right. unqualified of the about, not of the argument of the about. – Stefano Borini Oct 27 at 14:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.