ex046.ttl 828 B

123456789101112131415161718192021222324252627282930313233
  1. # filename: ex046.ttl
  2. @prefix ab: <http://learningsparql.com/ns/addressbook#> .
  3. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  4. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  5. @prefix owl: <http://www.w3.org/2002/07/owl#> .
  6. ab:i0432
  7. ab:firstName "Richard" ;
  8. ab:lastName "Mutt" ;
  9. ab:spouse ab:i9771 .
  10. ab:i8301
  11. ab:firstName "Craig" ;
  12. ab:lastName "Ellis" ;
  13. ab:patient ab:i9771 .
  14. ab:i9771
  15. ab:firstName "Cindy" ;
  16. ab:lastName "Marshall" .
  17. ab:spouse
  18. rdf:type owl:SymmetricProperty ;
  19. rdfs:comment "Identifies someone's spouse" .
  20. ab:patient
  21. rdf:type rdf:Property ;
  22. rdfs:comment "Identifies a doctor's patient" .
  23. ab:doctor
  24. rdf:type rdf:Property ;
  25. rdfs:comment "Identifies a doctor treating the named resource" ;
  26. owl:inverseOf ab:patient .