I have a question regaring writing triplets in RDF. According to the description http://www.w3.org/TR/rdf-concepts/#section-triples, it's been said that a predicate should be an URI.
But lets say if I want to write something like
<http://mydomain.com/#me>site-owner "http://mydomain.com"
then, how am I supposed to write a URI for site-owner. I am a bit confused. As give in this tutorial
http://videolectures.net/training06_sure_stsw/. He has written rdf in xml as
<rdf:Description rdf:about=“#York”>
<tel>6086592</tel>
</rdf:Description>
However, here the actual predicate tel is not in URI format. I am a bit confused. Even though one is using XML and the other is using NTriples, I think it should be same, isn't it. Thanks