Convert the following Turtle to RDF/XML (by
hand). The RDF/XML must be correct and express the same
triples as the Turtle. The RDF/XML should strive to be
readable (i.e., using helpful abbreviations...no
N-Triples in RDF/XML). Note that there are constructs
that we didn't cover in class (e.g., datatype and lang),
you should look up the syntax in the book on in the
RDF/XML specification (links above)
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix dc: <http://purl.org/dc/elements/1.1/>.
@prefix ex: <http://www.example.org/CMCS498w/2004/02/02/lecture#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
<http://www.mindswap.org/2004/CMCS498w/talks/basicGraphs>
dc:creator _:bijan;
dc:title "RDF: Basic Concepts and Syntax";
dc:title "RDF: Concepts de base et syntaxe"@fr ;
ex:webPageURI "http://www.mindswap.org/~bparsia/talks/CMCS498w/basicGraphs";
dc:relation <http://www.faqs.org/rfcs/rfc2396.html>,
<http://www.w3.org/TR/rdf-mt/#graphsyntax>,
<http://www.ilrt.bris.ac.uk/discovery/2004/01/turtle/>;
dc:date "2004-02-02"^^xsd:date.
_:bijan foaf:mbox <mailto:bparsia@isr.umd.edu>, <mailto:bijan@monkeyfist.com>;
rdf:type ex:Person, ex:Instructor.
<http://www.ilrt.bris.ac.uk/discovery/2004/01/turtle/>
dc:creator [foaf:name "Dave Beckett";
rdf:type ex:Person];
rdf:type ex:Specification.