[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: RDF for unstructured databases, RDF for axiomatic


snomed rdf
Shelley Powers scripsit:

> How do you handle a RDF stripe? node-arc-node-arc? Do you create a 
> property that's a resource and then define the resource elsewhere? Or 
> do you nest it? Also, how do you handle containers? These aren't 
> RDF/XML constructs -- these are RDF model constructs. They would need 
> to map to your syntax. I'm not sure how to do this, unambiguously 
> from your document.

Actually, neither stripes nor containers are model constructs: both are
reducible to triples and bnodes.

A stripe like:

<rdf:Description rdf:about="20021115clin002.xml">
  <subject>
    <Descriptor>
      <vocab>SNOMED-RT-0203</vocab>
      <code>P0-00000</code>
      <editMode>implicit</editMode>
      <label>Procedure, NOS</label>
    </Descriptor>
  </subject>
</rdf:Description>

is equivalent to:

<RDF:Description rdf:about="20021115clin002.xml">
  <subject resource="#quux"/>
</rdf:Description>
<Descriptor id="quux">
  <vocab>SNOMED-RT-0203</vocab>
  <code>P0-00000</code>
  <editMode>implicit</editMode>
  <label>Procedure, NOS</label>
</Descriptor>

which is in RPV syntax (if I have not goofed):

<R r="20021115clin002.xml">
  <PV p="/namespaces/meta1#subject" v="#quux">
</R>
<R id="quux">
  <PV p="/namespaces/meta1#vocab">SNOMED-RT-0203</PV>
  <PV p="/namespaces/meta1#code">P0-00000</PV>
  <PV p="/namespaces/meta1#editMode">implicit</PV>
  <PV p="/namespaces/meta1#label">Procedure, NOS</PV>
</R>

As for containers, a container is just a bnode with a type property and
a bunch of properties named rdf:_1, rdf:_2, etc.  The rdf:li is just
syntactic sugar.

-- 
Not to perambulate              || John Cowan <jcowan@r...>
    the corridors               || http://www.reutershealth.com
during the hours of repose      || http://www.ccil.org/~cowan
    in the boots of ascension.  \\ Sign in Austrian ski-resort hotel

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.