Let us say that we input the following RDF code to the W3C RDF validator at http://www.w3.org/RDF/Validator/.
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:uni="http://www.example.org/uni-ns#">
<rdf:Description rdf:about="949352">
<uni:name>Grigoris Antoniou</uni:name>
<uni:title>Professor</uni:title>
</rdf:Description>
</rdf:RDF>
Once I ask to parse the RDF code, I find that in the triples, the RDF URI has been replaced with the own URI of the validator.
Should not the subject of the triples be http://www.w3.org/1999/02/22-rdf-syntax-ns#949352
?
Why does the validator do this?