-
Notifications
You must be signed in to change notification settings - Fork 0
/
Student.owl
144 lines (94 loc) · 4.18 KB
/
Student.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?xml version="1.0"?>
<rdf:RDF xmlns="http://www.semanticweb.org/michaejamesharrisonl/ontologies/2017/7/untitled-ontology-214#"
xml:base="http://www.semanticweb.org/michaejamesharrisonl/ontologies/2017/7/untitled-ontology-214"
xmlns:p1="#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:cair="http://cair.za.net/"
xmlns:cair1="http://cair.cs.uct.ac.za/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="http://www.semanticweb.org/michaejamesharrisonl/ontologies/2017/7/untitled-ontology-214"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://cair.cs.uct.ac.za/defeasible -->
<owl:AnnotationProperty rdf:about="http://cair.cs.uct.ac.za/defeasible"/>
<!-- http://cair.cs.uct.ac.za/rank -->
<owl:AnnotationProperty rdf:about="http://cair.cs.uct.ac.za/rank"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- #receives -->
<owl:ObjectProperty rdf:about="#receives"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- #EmployedStudent -->
<owl:Class rdf:about="#EmployedStudent">
<rdfs:subClassOf rdf:resource="#Student"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#receives"/>
<owl:someValuesFrom rdf:resource="#TaxInvoice"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="#EmployedStudent"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
<owl:annotatedTarget>
<owl:Restriction>
<owl:onProperty rdf:resource="#receives"/>
<owl:someValuesFrom rdf:resource="#TaxInvoice"/>
</owl:Restriction>
</owl:annotatedTarget>
<cair1:defeasible rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</cair1:defeasible>
<cair1:rank rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</cair1:rank>
</owl:Axiom>
<!-- #Student -->
<owl:Class rdf:about="#Student">
<rdfs:subClassOf>
<owl:Class>
<owl:complementOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#receives"/>
<owl:someValuesFrom rdf:resource="#TaxInvoice"/>
</owl:Restriction>
</owl:complementOf>
</owl:Class>
</rdfs:subClassOf>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="#Student"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
<owl:annotatedTarget>
<owl:Class>
<owl:complementOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#receives"/>
<owl:someValuesFrom rdf:resource="#TaxInvoice"/>
</owl:Restriction>
</owl:complementOf>
</owl:Class>
</owl:annotatedTarget>
<cair1:defeasible rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</cair1:defeasible>
<cair1:rank rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</cair1:rank>
</owl:Axiom>
<!-- #TaxInvoice -->
<owl:Class rdf:about="#TaxInvoice"/>
</rdf:RDF>
<!-- Generated by the OWL API (version 5.0.0.20160228-2008) https://github.com/owlcs/owlapi/ -->