In the RDF Turtle documentation from W3C I came across two examples (16 and 17) where an email address was used as an IRI:
_:b <http://xmlns.com/foaf/0.1/mbox> <bob@example.com> .
As I understand it, email addresses are allowed as URIs when preceded with the appropriate scheme, i.e. mailto:bob@example.com
. If the email address in the above example should be a valid URI then the statement should actually read:
_:b <http://xmlns.com/foaf/0.1/mbox> <mailto:bob@example.com> .
Is this an error in the documentation or do IRIs (as opposed to URIs) not require a scheme?