comparison OPPL/test-data/ontology/single/elk.owl @ 18:d3616fac4ca5 draft

Elk support added
author Mikel Egana Aranguren <mikel-egana-aranguren@toolshed.g2.bx.psu.edu>
date Thu, 20 Sep 2012 12:46:36 +0200
parents
children
comparison
equal deleted inserted replaced
17:c9e01f86b07c 18:d3616fac4ca5
1 <?xml version="1.0"?>
2
3
4 <!DOCTYPE rdf:RDF [
5 <!ENTITY owl "http://www.w3.org/2002/07/owl#" >
6 <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
7 <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
8 <!ENTITY debug "http://www.samuelcroset.com/debug.owl#" >
9 <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
10 ]>
11
12
13 <rdf:RDF xmlns="http://www.samuelcroset.com/debug.owl#"
14 xml:base="http://www.samuelcroset.com/debug.owl"
15 xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
16 xmlns:owl="http://www.w3.org/2002/07/owl#"
17 xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
18 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
19 xmlns:debug="http://www.samuelcroset.com/debug.owl#">
20 <owl:Ontology rdf:about="http://www.samuelcroset.com/debug.owl"/>
21
22
23
24 <!--
25 ///////////////////////////////////////////////////////////////////////////////////////
26 //
27 // Object Properties
28 //
29 ///////////////////////////////////////////////////////////////////////////////////////
30 -->
31
32
33
34
35 <!-- http://www.samuelcroset.com/debug.owl#eats -->
36
37 <owl:ObjectProperty rdf:about="&debug;eats"/>
38
39
40
41 <!--
42 ///////////////////////////////////////////////////////////////////////////////////////
43 //
44 // Classes
45 //
46 ///////////////////////////////////////////////////////////////////////////////////////
47 -->
48
49
50
51
52 <!-- http://www.samuelcroset.com/debug.owl#Animal -->
53
54 <owl:Class rdf:about="&debug;Animal"/>
55
56
57
58 <!-- http://www.samuelcroset.com/debug.owl#Food -->
59
60 <owl:Class rdf:about="&debug;Food"/>
61
62
63
64 <!-- http://www.samuelcroset.com/debug.owl#Lion -->
65
66 <owl:Class rdf:about="&debug;Lion">
67 <rdfs:subClassOf rdf:resource="&debug;Animal"/>
68 <rdfs:subClassOf>
69 <owl:Restriction>
70 <owl:onProperty rdf:resource="&debug;eats"/>
71 <owl:someValuesFrom rdf:resource="&debug;Meat"/>
72 </owl:Restriction>
73 </rdfs:subClassOf>
74 </owl:Class>
75
76
77
78 <!-- http://www.samuelcroset.com/debug.owl#Meat -->
79
80 <owl:Class rdf:about="&debug;Meat">
81 <rdfs:subClassOf rdf:resource="&debug;Food"/>
82 </owl:Class>
83
84
85
86 <!-- http://www.samuelcroset.com/debug.owl#MeatEater -->
87
88 <owl:Class rdf:about="&debug;MeatEater">
89 <owl:equivalentClass>
90 <owl:Class>
91 <owl:intersectionOf rdf:parseType="Collection">
92 <rdf:Description rdf:about="&debug;Animal"/>
93 <owl:Restriction>
94 <owl:onProperty rdf:resource="&debug;eats"/>
95 <owl:someValuesFrom rdf:resource="&debug;Meat"/>
96 </owl:Restriction>
97 </owl:intersectionOf>
98 </owl:Class>
99 </owl:equivalentClass>
100 </owl:Class>
101 </rdf:RDF>
102
103
104
105 <!-- Generated by the OWL API (version 3.2.3.1824) http://owlapi.sourceforge.net -->
106