RDF and uuid. why is there no urn scheme?

<rdf:Description about='uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031'>

      

Why about

doesn't this one contain urn:uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031

instead? Isn't uuid an urn, and therefore it is required to have an urn diagram in front of you:

+2


source to share


2 answers


Following the specification chain, the IANA URN registry does indeed register 'uuid' as a namespace after 'urn:'. So yes, the above url is not correct and it should start "urn: uuid" as you would expect.



+3


source


This URI is wrong. Using the following RDF document in 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]

+1


source







All Articles