--- a/D003-1table3columns1row/directGraph.nt Tue Sep 27 15:37:41 2011 +0200
+++ b/D003-1table3columns1row/directGraph.nt Tue Sep 27 15:51:56 2011 +0200
@@ -1,4 +1,4 @@
_:a a <Student> .
-_:a <Student#ID> 10 .
+_:a <Student#ID> "10"<http://www.w3.org/2001/XMLSchema#integer> .
_:a <Student#FirstName> "Venus" .
_:a <Student#LastName> "Williams" .
--- a/D005-2duplicates0nulls/directGraph.nt Tue Sep 27 15:37:41 2011 +0200
+++ b/D005-2duplicates0nulls/directGraph.nt Tue Sep 27 15:51:56 2011 +0200
@@ -1,17 +1,15 @@
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
-
- _:a a <IOUs> .
- _:a <IOUs#fname> "Bob" .
- _:a <IOUs#lname> "Smith" .
- _:a <IOUs#amount> "30"^^xsd:float .
+_:a a <IOUs> .
+_:a <IOUs#fname> "Bob" .
+_:a <IOUs#lname> "Smith" .
+_:a <IOUs#amount> "30"^^<http://www.w3.org/2001/XMLSchema#float> .
- _:b a <IOUs> .
- _:b <IOUs#fname> "Sue" .
- _:b <IOUs#lname> "Jones" .
- _:b <IOUs#amount> "20"^^xsd:float .
+_:b a <IOUs> .
+_:b <IOUs#fname> "Sue" .
+_:b <IOUs#lname> "Jones" .
+_:b <IOUs#amount> "20"^^<http://www.w3.org/2001/XMLSchema#float> .
- _:c a <IOUs> .
- _:c <IOUs#fname> "Bob" .
- _:c <IOUs#lname> "Smith" .
- _:c <IOUs#amount> "30"^^xsd:float .
+_:c a <IOUs> .
+_:c <IOUs#fname> "Bob" .
+_:c <IOUs#lname> "Smith" .
+_:c <IOUs#amount> "30"^^<http://www.w3.org/2001/XMLSchema#float> .