-
Notifications
You must be signed in to change notification settings - Fork 0
/
Profile.owl
209 lines (143 loc) · 7.75 KB
/
Profile.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY LOM "http://www.cs.teilar.gr/ontologies/LOM.owl#" >
<!ENTITY Graph "http://www.cs.teilar.gr/ontologies/Graph.owl#" >
<!ENTITY Profile "http://www.cs.teilar.gr/ontologies/Profile.owl#" >
<!ENTITY KConcept "http://www.cs.teilar.gr/ontologies/KConcept.owl#" >
<!ENTITY LearnerModel "http://www.cs.teilar.gr/ontologies/LearnerModel.owl#" >
<!ENTITY LearningObject "http://www.cs.teilar.gr/ontologies/LearningObject.owl#" >
<!ENTITY LearningDomainParticipant "http://www.cs.teilar.gr/ontologies/LearningDomainParticipant.owl#" >
]>
<rdf:RDF xmlns="http://www.w3.org/2002/07/owl#"
xml:base="http://www.w3.org/2002/07/owl"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:KConcept="http://www.cs.teilar.gr/ontologies/KConcept.owl#"
xmlns:LearningObject="http://www.cs.teilar.gr/ontologies/LearningObject.owl#"
xmlns:LOM="http://www.cs.teilar.gr/ontologies/LOM.owl#"
xmlns:Graph="http://www.cs.teilar.gr/ontologies/Graph.owl#"
xmlns:LearnerModel="http://www.cs.teilar.gr/ontologies/LearnerModel.owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:Profile="http://www.cs.teilar.gr/ontologies/Profile.owl#"
xmlns:LearningDomainParticipant="http://www.cs.teilar.gr/ontologies/LearningDomainParticipant.owl#">
<Ontology rdf:about="http://www.cs.teilar.gr/ontologies/Profile.owl">
<rdfs:comment>the general notion of the profile is to advertise en entity.
a learner has a learner model that holds the educational concepts that he/she aquires.
a learning service has learning capabilities, that eventually map to learnign objects.
a learning object has a profile, i.e a group of characterists that honors.
</rdfs:comment>
<imports rdf:resource="http://www.cs.teilar.gr/ontologies/LearnerModel.owl"/>
<imports rdf:resource="http://www.cs.teilar.gr/ontologies/LearningObject.owl"/>
</Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.cs.teilar.gr/ontologies/Graph.owl#hasAssociated -->
<ObjectProperty rdf:about="&Graph;hasAssociated"/>
<!-- http://www.cs.teilar.gr/ontologies/KConcept.owl#hasPrerequisite -->
<ObjectProperty rdf:about="&KConcept;hasPrerequisite"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.cs.teilar.gr/ontologies/Graph.owl#Node -->
<Class rdf:about="&Graph;Node">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</Class>
<!-- http://www.cs.teilar.gr/ontologies/KConcept.owl#KConcept -->
<Class rdf:about="&KConcept;KConcept"/>
<!-- http://www.cs.teilar.gr/ontologies/LOM.owl#LOM -->
<Class rdf:about="&LOM;LOM">
<rdfs:subClassOf rdf:resource="&Profile;Profile"/>
</Class>
<!-- http://www.cs.teilar.gr/ontologies/LearnerModel.owl#LearnerModelGraph -->
<rdf:Description rdf:about="&LearnerModel;LearnerModelGraph">
<rdfs:subClassOf rdf:resource="&Profile;Profile"/>
</rdf:Description>
<!-- http://www.cs.teilar.gr/ontologies/LearningDomainParticipant.owl#LearningService -->
<Class rdf:about="&LearningDomainParticipant;LearningService"/>
<!-- http://www.cs.teilar.gr/ontologies/Profile.owl#LearningServiceCapability -->
<Class rdf:about="&Profile;LearningServiceCapability">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="&KConcept;hasPrerequisite"/>
<onClass rdf:resource="&KConcept;KConcept"/>
<minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</minQualifiedCardinality>
</Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="&LearningObject;hasTargetConcept"/>
<onClass rdf:resource="&KConcept;KConcept"/>
<qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</qualifiedCardinality>
</Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="&Graph;hasAssociated"/>
<someValuesFrom rdf:resource="&LOM;LOM"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:comment rdf:datatype="&xsd;string">A Learning Service registers its Profile in the Learning Domain. A Service Profile consists of Capability instances.
Each Capability instance has a Target Concept and it may have one or more prerequisite concepts.
A capability (to teach a concept) can be exercised by possibly more than one learning objects owned by ther service. Hence each capability instance has associated to it some LOM instances (metadata descriptions of learning objects).</rdfs:comment>
</Class>
<!-- http://www.cs.teilar.gr/ontologies/Profile.owl#LearningServiceProfile -->
<Class rdf:about="&Profile;LearningServiceProfile">
<equivalentClass>
<Class>
<intersectionOf rdf:parseType="Collection">
<Restriction>
<onProperty rdf:resource="&Graph;hasAssociated"/>
<someValuesFrom rdf:resource="&Profile;LearningServiceCapability"/>
</Restriction>
<Restriction>
<onProperty rdf:resource="&Graph;hasAssociated"/>
<allValuesFrom rdf:resource="&Profile;LearningServiceCapability"/>
</Restriction>
<Restriction>
<onProperty rdf:resource="&LearningObject;describes"/>
<onClass rdf:resource="&LearningDomainParticipant;LearningService"/>
<qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</qualifiedCardinality>
</Restriction>
</intersectionOf>
</Class>
</equivalentClass>
<rdfs:subClassOf rdf:resource="&Profile;Profile"/>
</Class>
<!-- http://www.cs.teilar.gr/ontologies/Profile.owl#Profile -->
<Class rdf:about="&Profile;Profile">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:comment>the general notion of the profile is to advertise en entity.
a learner has a learner model that holds the educational concepts that he/she aquires.
a learning service has learning capabilities, that eventually map to learnign objects.
a learning object has a profile, i.e a group of characterists that honors.
</rdfs:comment>
</Class>
</rdf:RDF>
<!-- Generated by the OWL API (version 3.2.2.1789) http://owlapi.sourceforge.net -->