- From: Dan Brickley <danbri@w3.org>
- Date: Fri, 7 Feb 2003 11:53:34 -0500
- To: pldms@mac.com, edd@usefulinc.com
- Cc: www-archive@w3.org
Fixed a couple bugs, and added xmlns stuff so I can test it.
the parsetype is 'Resource' not 'resource'; you also ommitted the
rdf: prefix on parsetype (OK but not encouraged) and had rdf:resource=
instead of rdf:about= in a couple of places.
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns="http://example.com/eg1#">
<House rdf:about="http://example.com/damian_house">
<address rdf:parseType="Resource">
<number>137</number>
<street>Cranbook Road</street>
<city>Bristol</city>
</address>
<resident>
<Person rdf:about="http://example.com/damian">
<name>Damian Steer</name>
<mailbox rdf:resource="mailto:damian@example.com"/>
<rdfs:seeAlso rdf:resource="http://example.com/document_b.rdf"/>
</Person>
</resident>
</House>
</rdf:RDF>
Received on Friday, 7 February 2003 11:53:38 UTC