- From: Wendy A Chisholm <wendy@w3.org>
- Date: Thu, 28 Feb 2002 09:18:11 -0500
- To: w3c-wai-er-ig@w3.org
- Cc: Libby Miller <Libby.Miller@bristol.ac.uk>, danbri@w3.org
- Message-Id: <5.1.0.14.2.20020228090807.04e14280@localhost>
Hello folks,
I've been playing around the last few days with EARL schema possibilities. I've gotten rid of blank nodes, which seemed like a good idea. Is it an improvement?
Sean and Danbri, Libby said this was "implicit reification." What are the implications on queries? I haven't played or thought much about that yet.
I've worked 2 examples. One is a single simple statement, the second combines 2 to make sure that we don't lose important info.
Example 1: Simple statement
success3.svg is the graph produced by the RDF Validator.
<rdf:RDF
xmlns:sp="http://valet.webthing.com/xmlns/sp"
xmlns:valet="http://valet.webthing.com/xmlns/valet"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<Assertor rdf:about="http://valet.webthing.com/page/">
<name>Page Valet</name>
<testMode>Automatic</testMode>
<contactInfo>http://valet.webthing.com/page/</contactInfo>
<Asserts>
<TestSubject rdf:about="http://mypage.org">
<rdf:type rdf:resource="http://WebContent"/>
<Result>
<TestResult rdf:about="http://passes">
<TestID rdf:resource="http://testid"/>
<Confidence>High</Confidence>
</TestResult>
</Result>
</TestSubject>
</Asserts>
</Assertor>
</rdf:RDF>
Example 2: simple merge
Here is a simple merge of a couple of assertions to make sure we don't lose info. success4.svg is the graph produced by the RDF Validator.
<rdf:RDF
xmlns:sp="http://valet.webthing.com/xmlns/sp"
xmlns:valet="http://valet.webthing.com/xmlns/valet"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<Assertor rdf:about="http://valet.webthing.com/page/">
<name>Page Valet</name>
<testMode>Automatic</testMode>
<contactInfo>http://valet.webthing.com/page/</contactInfo>
<Asserts>
<TestSubject rdf:about="http://mypage.org">
<rdf:type rdf:resource="http://WebContent"/>
<Result>
<TestResult rdf:about="http://passes">
<TestID rdf:resource="http://testid"/>
<Confidence>High</Confidence>
</TestResult>
</Result>
</TestSubject>
</Asserts>
<Asserts>
<TestSubject rdf:about="http://mypage.org">
<rdf:type rdf:resource="http://WebContent"/>
<Result>
<TestResult rdf:about="http://fails">
<TestID rdf:resource="http://testid"/>
<Confidence>Low</Confidence>
</TestResult>
</Result>
</TestSubject>
</Asserts>
</Assertor>
</rdf:RDF>
--
wendy a chisholm
world wide web consortium
web accessibility initiative
seattle, wa usa
/--
Attachments
- image/svg attachment: success3.svg
- image/svg attachment: success4.svg
Received on Thursday, 28 February 2002 09:11:28 UTC