Guest User

Untitled

a guest
Feb 6th, 2015
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.96 KB | None | 0 0
  1. <rdf:RDF
  2.     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  3.     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
  4.    
  5.     <!-- Class -->
  6.     <rdfs:Class rdf:about="urn:ex:Book">
  7.     </rdfs:Class>
  8.      
  9.     <rdfs:Class rdf:about="urn:ex:Author">
  10.     </rdfs:Class>
  11.      
  12.     <rdfs:Class rdf:about="urn:ex:Publisher">
  13.     </rdfs:Class>
  14.    
  15.    
  16.     <!-- Properties of Book -->
  17.     <rdf:Description rdf:about="urn:ex:hasTitle">
  18.         <rdfs:domain rdf:resource="urn:ex:Book"/>
  19.         <rdfs:range rdf:resource="xmlns:rdfsLiteral"/>
  20.     </rdf:Description>
  21.    
  22.     <rdf:Description rdf:about="urn:ex:hasAuthor">
  23.         <rdfs:domain rdf:resource="urn:ex:Book"/>
  24.         <rdfs:range rdf:resource="urn:ex:Author"/>
  25.     </rdf:Description>
  26.    
  27.     <rdf:Description rdf:about="urn:ex:hasPublisher">
  28.         <rdfs:domain rdf:resource="urn:ex:Book"/>
  29.         <rdfs:range rdf:resource="urn:ex:Publisher"/>
  30.     </rdf:Description>
  31.    
  32.    
  33.     <!-- Properties of Author -->
  34.    
  35.     <rdf:Description rdf:about="urn:ex:hasName">
  36.         <rdfs:domain rdf:resource="urn:ex:Author"/>
  37.         <rdfs:range rdf:resource="xmlns:rdfsLiteral"/>
  38.     </rdf:Description>
  39.    
  40.     <rdf:Description rdf:about="urn:ex:hasFirstName">
  41.         <rdfs:domain rdf:resource="urn:ex:Author"/>
  42.         <rdfs:range rdf:resource="xmlns:rdfsLiteral"/>
  43.     </rdf:Description>
  44.    
  45.     <rdf:Description rdf:about="urn:ex:hasBirthYear">
  46.         <rdfs:domain rdf:resource="urn:ex:Author"/>
  47.         <rdfs:range rdf:resource="xmlns:rdfsLiteral"/>
  48.     </rdf:Description>
  49.    
  50.     <rdf:Description rdf:about="urn:ex:hasBirthPlace">
  51.         <rdfs:domain rdf:resource="urn:ex:Author"/>
  52.         <rdfs:range rdf:resource="xmlns:rdfsLiteral"/>
  53.     </rdf:Description>
  54.    
  55.    
  56.     <!-- Properties of Publisher -->
  57.    
  58.     <rdf:Description rdf:about="urn:ex:hasPublisherName">
  59.         <rdfs:domain rdf:resource="urn:ex:Publisher"/>
  60.         <rdfs:range rdf:resource="xmlns:rdfsLiteral"/>
  61.     </rdf:Description>
  62.    
  63.     <rdf:Description rdf:about="urn:ex:hasFundationYear">
  64.         <rdfs:domain rdf:resource="urn:ex:Publisher"/>
  65.         <rdfs:range rdf:resource="xmlns:rdfsLiteral"/>
  66.     </rdf:Description>
  67.  
  68. </rdf:RDF>
Advertisement
Add Comment
Please, Sign In to add comment