Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. @prefix : <http://sample.org/ont#> .
  2. @prefix owl: <http://www.w3.org/2002/07/owl#> .
  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. @base <http://sample.org/ont#> .
  6.  
  7. <http://sample.org/ont#> rdf:type owl:Ontology .
  8.  
  9. :P rdf:type owl:DatatypeProperty ;
  10. rdfs:domain :A .
  11.  
  12. :A rdf:type owl:Class .
  13.  
  14. :B rdf:type owl:Class ;
  15. owl:equivalentClass [ rdf:type owl:Class ;
  16. owl:intersectionOf ( :A
  17. [ rdf:type owl:Restriction ;
  18. owl:onProperty :P ;
  19. owl:hasValue "B"
  20. ]
  21. )
  22. ] .
  23.  
  24. :b rdf:type :A , owl:NamedIndividual ;
  25. :P "B" .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement