--- a/ldpatch.html Wed Jul 09 20:47:15 2014 -0400
+++ b/ldpatch.html Sat Jul 26 17:16:36 2014 -0400
@@ -195,8 +195,8 @@
@prefix schema: <http://schema.org/> .
@prefix profile: <http://ogp.me/ns/profile#> .
@prefix ex: <http://example.org/vocab#> .
-
-<http://example.org/timbl#> a schema:Person ;
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+<http://example.com/timbl#> a schema:Person ;
schema:alternateName "TimBL" ;
profile:first_name "Tim" ;
profile:last_name "Berners-Lee" ;
@@ -204,13 +204,12 @@
schema:attendee _:b1, _:b2 ;
ex:preferredLanguages ( "en" "fr" ).
-_:b1 ;
- schema:name "F2F5 - Linked Data Platform" ;
+_:b1 schema:name "F2F5 - Linked Data Platform" ;
schema:url <https://www.w3.org/2012/ldp/wiki/F2F5> .
_:b2 a schema:Event ;
schema:name "TED 2009" ;
- schema:startDate "2009-02-04" .
+ schema:startDate "2009-02-04" ;
schema:url <http://conferences.ted.com/TED2009/> .
</pre>
<p>
@@ -224,16 +223,16 @@
If-Match: "abc123"
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-@prefix schema: <http://schema.org> .
+@prefix schema: <http://schema.org/> .
@prefix profile: <http://ogp.me/ns/profile#> .
@prefix ex: <http://example.org/vocab#> .
Delete <#> profile:first_name "Tim" .
Add <#> profile:first_name "Timothy" .
-UpdateList <#> ex:preferredLanguages 1>2 ( "fr-CH" ) .
+UpdateList <#> ex:preferredLanguages 1>2 ( "fr-CH" ) .
-Bind ?event <#> /schema:attendee[/schema:url = <http://conferences.ted.com/TED2009/>] .
+Bind ?event <#> /schema:attendee[/schema:url = <https://www.w3.org/2012/ldp/wiki/F2F5>] .
Add ?event rdf:type schema:Event .
Bind ?ted <http://conferences.ted.com/TED2009/> /-schema:url! .
@@ -255,7 +254,7 @@
@prefix profile: <http://ogp.me/ns/profile#> .
@prefix ex: <http://example.org/vocab#> .
-<http://example.org/timbl#> a schema:Person ;
+<http://example.com/timbl#> a schema:Person ;
schema:alternateName "TimBL" ;
profile:first_name "Timothy" ;
profile:last_name "Berners-Lee" ;
@@ -263,7 +262,7 @@
schema:attendee _:b1, _:b2 ;
ex:preferredLanguages ( "en" "fr-CH" ).
-_:b1 ;
+_:b1 a schema:Event ;
schema:name "F2F5 - Linked Data Platform" ;
schema:url <https://www.w3.org/2012/ldp/wiki/F2F5> .
@@ -272,7 +271,7 @@
schema:url <http://conferences.ted.com/TED2009/> ;
schema:location [
schema:name "Long Beach, California";
- schema:geo [ schema:latitude "33.7817" ; schema:longitude "-118.2054" ] .
+ schema:geo [ schema:latitude "33.7817" ; schema:longitude "-118.2054" ]
] .
</pre>