-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLearnerInformation.owl
More file actions
899 lines (882 loc) · 36.3 KB
/
Copy pathLearnerInformation.owl
File metadata and controls
899 lines (882 loc) · 36.3 KB
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
<?xml version="1.0"?>
<!DOCTYPE Ontology [
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY xml "http://www.w3.org/XML/1998/namespace" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
]>
<Ontology xmlns="http://www.w3.org/2002/07/owl#"
xml:base="http://www.cs.teilar.gr/ontologies/LearnerInformation.owl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
ontologyIRI="http://www.cs.teilar.gr/ontologies/LearnerInformation.owl">
<Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<Prefix name="" IRI="http://www.w3.org/2002/07/owl#"/>
<Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/>
<Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/>
<Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
<Import>http://www.cs.teilar.gr/ontologies/KConcept.owl</Import>
<Import>http://www.cs.teilar.gr/ontologies/LearningStyle.owl</Import>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/date"/>
<Literal datatypeIRI="&xsd;date">20-01-2011</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<Literal datatypeIRI="&xsd;string">The LIP ontology is an owl binding for the IMS Learner Information Package. The structure of the LIP data is as follows:
• Identification: Biographic and demographic data relevant to learning;
• Goal: Learning, career and other objectives and aspirations;
• Qualifications, Certifications and Licenses (qcl): Qualifications, certifications and licenses granted by
recognized authorities;
• Activity: Any learning-related activity in any state of completion. Could be self-reported. Includes formal and
informal education, training, work experience, and military or civic service;
• Transcript: A record that is used to provide an institutionally-based summary of academic achievement. The
structure of this record can take many forms;
• Interest: Information describing hobbies and recreational activities;
• Competency: Skills, knowledge, and abilities acquired in the cognitive, affective, and/or psychomotor domains;
• Affiliation: Membership of professional organizations, etc. Membership of groups is covered by the IMS
Enterprise specification;
• Accessibility: General accessibility to the learner information as defined through language capabilities,
disabilities, eligibilities and learning preferences including cognitive preferences (e.g. issues of learning style), physical preferences (e.g. a preference for large print), and technological preferences (e.g. a preference for a particular computer platform);
• Securitykey: The set of passwords and security keys assigned to the learner for transactions with learner
information systems and services;
• Relationship: The set of relationships between the core components. The core structures do not have within
them identifiers that link to the core structures. Instead all of these relationships are captured in a single core
structure thereby making the links simpler to identify and manage.</Literal>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/creator"/>
<Literal datatypeIRI="&xsd;string">Takis Hartonas</Literal>
</Annotation>
<Declaration>
<Class IRI="#Accessibility"/>
</Declaration>
<Declaration>
<Class IRI="#Activity"/>
</Declaration>
<Declaration>
<Class IRI="#Address"/>
</Declaration>
<Declaration>
<Class IRI="#Affiliation"/>
</Declaration>
<Declaration>
<Class IRI="#Competency"/>
</Declaration>
<Declaration>
<Class IRI="#ContactInfo"/>
</Declaration>
<Declaration>
<Class IRI="#Demographics"/>
</Declaration>
<Declaration>
<Class IRI="#Goal"/>
</Declaration>
<Declaration>
<Class IRI="#Identification"/>
</Declaration>
<Declaration>
<Class IRI="#LIP"/>
</Declaration>
<Declaration>
<Class IRI="#LIPContentType"/>
</Declaration>
<Declaration>
<Class IRI="#LIPElement"/>
</Declaration>
<Declaration>
<Class IRI="#Name"/>
</Declaration>
<Declaration>
<Class IRI="#OrganizationName"/>
</Declaration>
<Declaration>
<Class IRI="#PersonName"/>
</Declaration>
<Declaration>
<Class IRI="#Privacy"/>
</Declaration>
<Declaration>
<Class IRI="#Qcl"/>
</Declaration>
<Declaration>
<Class IRI="#Referential"/>
</Declaration>
<Declaration>
<Class IRI="#Temporal"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#addressInfo"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#affiliated"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#contactinfo"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#contentype"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#demographics"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasComponent"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasLIPElement"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#isComponentOf"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#isLIPElementOf"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#name"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#style"/>
</Declaration>
<Declaration>
<DataProperty IRI="#addressInfo"/>
</Declaration>
<Declaration>
<DataProperty IRI="#addresstype"/>
</Declaration>
<Declaration>
<DataProperty IRI="#city"/>
</Declaration>
<Declaration>
<DataProperty IRI="#contactinfo"/>
</Declaration>
<Declaration>
<DataProperty IRI="#country"/>
</Declaration>
<Declaration>
<DataProperty IRI="#date"/>
</Declaration>
<Declaration>
<DataProperty IRI="#demographics"/>
</Declaration>
<Declaration>
<DataProperty IRI="#duration"/>
</Declaration>
<Declaration>
<DataProperty IRI="#email"/>
</Declaration>
<Declaration>
<DataProperty IRI="#firstname"/>
</Declaration>
<Declaration>
<DataProperty IRI="#gender"/>
</Declaration>
<Declaration>
<DataProperty IRI="#issuedBy"/>
</Declaration>
<Declaration>
<DataProperty IRI="#language"/>
</Declaration>
<Declaration>
<DataProperty IRI="#lastname"/>
</Declaration>
<Declaration>
<DataProperty IRI="#middlename"/>
</Declaration>
<Declaration>
<DataProperty IRI="#name"/>
</Declaration>
<Declaration>
<DataProperty IRI="#organizationName"/>
</Declaration>
<Declaration>
<DataProperty IRI="#personName"/>
</Declaration>
<Declaration>
<DataProperty IRI="#pobox"/>
</Declaration>
<Declaration>
<DataProperty IRI="#preferredname"/>
</Declaration>
<Declaration>
<DataProperty IRI="#region"/>
</Declaration>
<Declaration>
<DataProperty IRI="#right"/>
</Declaration>
<Declaration>
<DataProperty IRI="#role"/>
</Declaration>
<Declaration>
<DataProperty IRI="#status"/>
</Declaration>
<Declaration>
<DataProperty IRI="#street"/>
</Declaration>
<Declaration>
<DataProperty IRI="#streetnumber"/>
</Declaration>
<Declaration>
<DataProperty IRI="#telephone"/>
</Declaration>
<Declaration>
<DataProperty IRI="#vocabulary"/>
</Declaration>
<Declaration>
<DataProperty IRI="#web"/>
</Declaration>
<EquivalentClasses>
<Class IRI="#Accessibility"/>
<ObjectIntersectionOf>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#style"/>
<Class IRI="http://www.cs.teilar.gr/ontologies/LearningStyle.owl#LearningStyle"/>
</ObjectSomeValuesFrom>
<DataSomeValuesFrom>
<DataProperty IRI="#language"/>
<Datatype abbreviatedIRI="xsd:language"/>
</DataSomeValuesFrom>
</ObjectIntersectionOf>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#Affiliation"/>
<ObjectIntersectionOf>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#affiliated"/>
<Class IRI="#Identification"/>
</ObjectSomeValuesFrom>
<DataSomeValuesFrom>
<DataProperty IRI="#duration"/>
<Datatype abbreviatedIRI="xsd:duration"/>
</DataSomeValuesFrom>
<DataSomeValuesFrom>
<DataProperty IRI="#status"/>
<DataOneOf>
<Literal datatypeIRI="&xsd;string">active</Literal>
<Literal datatypeIRI="&xsd;string">past</Literal>
</DataOneOf>
</DataSomeValuesFrom>
<DataSomeValuesFrom>
<DataProperty IRI="#vocabulary"/>
<DataOneOf>
<Literal datatypeIRI="&xsd;string">educational</Literal>
<Literal datatypeIRI="&xsd;string">professional</Literal>
<Literal datatypeIRI="&xsd;string">recreational</Literal>
<Literal datatypeIRI="&xsd;string">social</Literal>
</DataOneOf>
</DataSomeValuesFrom>
</ObjectIntersectionOf>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#Competency"/>
<ObjectIntersectionOf>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#contentype"/>
<ObjectUnionOf>
<Class IRI="http://www.cs.teilar.gr/ontologies/KConcept.owl#Concept"/>
<Class IRI="http://www.cs.teilar.gr/ontologies/KConcept.owl#Course"/>
<Class IRI="http://www.cs.teilar.gr/ontologies/KConcept.owl#Discipline"/>
</ObjectUnionOf>
</ObjectSomeValuesFrom>
<DataSomeValuesFrom>
<DataProperty IRI="#date"/>
<Datatype abbreviatedIRI="xsd:date"/>
</DataSomeValuesFrom>
<DataSomeValuesFrom>
<DataProperty IRI="#vocabulary"/>
<DataOneOf>
<Literal datatypeIRI="&xsd;string">excellent</Literal>
<Literal datatypeIRI="&xsd;string">good</Literal>
<Literal datatypeIRI="&xsd;string">poor</Literal>
<Literal datatypeIRI="&xsd;string">very good</Literal>
</DataOneOf>
</DataSomeValuesFrom>
</ObjectIntersectionOf>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#Goal"/>
<ObjectIntersectionOf>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#contentype"/>
<ObjectUnionOf>
<Class IRI="http://www.cs.teilar.gr/ontologies/KConcept.owl#Concept"/>
<Class IRI="http://www.cs.teilar.gr/ontologies/KConcept.owl#Course"/>
<Class IRI="http://www.cs.teilar.gr/ontologies/KConcept.owl#Discipline"/>
</ObjectUnionOf>
</ObjectSomeValuesFrom>
<DataSomeValuesFrom>
<DataProperty IRI="#date"/>
<Datatype abbreviatedIRI="xsd:date"/>
</DataSomeValuesFrom>
<DataSomeValuesFrom>
<DataProperty IRI="#vocabulary"/>
<DataOneOf>
<Literal datatypeIRI="&xsd;string">high</Literal>
<Literal datatypeIRI="&xsd;string">low</Literal>
<Literal datatypeIRI="&xsd;string">medium</Literal>
</DataOneOf>
</DataSomeValuesFrom>
</ObjectIntersectionOf>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#Identification"/>
<ObjectIntersectionOf>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#addressInfo"/>
<Class IRI="#Address"/>
</ObjectSomeValuesFrom>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#contactinfo"/>
<Class IRI="#ContactInfo"/>
</ObjectSomeValuesFrom>
<ObjectMinCardinality cardinality="0">
<ObjectProperty IRI="#demographics"/>
<Class IRI="#Demographics"/>
</ObjectMinCardinality>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#contentype"/>
<Class IRI="#LIPContentType"/>
</ObjectExactCardinality>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#name"/>
<Class IRI="#Name"/>
</ObjectExactCardinality>
</ObjectIntersectionOf>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#LIP"/>
<ObjectIntersectionOf>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#hasLIPElement"/>
<Class IRI="#LIPElement"/>
</ObjectSomeValuesFrom>
<ObjectAllValuesFrom>
<ObjectProperty IRI="#hasLIPElement"/>
<Class IRI="#LIPElement"/>
</ObjectAllValuesFrom>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#contentype"/>
<Class IRI="#LIPContentType"/>
</ObjectExactCardinality>
</ObjectIntersectionOf>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#LIPContentType"/>
<ObjectIntersectionOf>
<ObjectMinCardinality cardinality="0">
<ObjectProperty IRI="#contentype"/>
<Class IRI="#Privacy"/>
</ObjectMinCardinality>
<ObjectMinCardinality cardinality="1">
<ObjectProperty IRI="#contentype"/>
<Class IRI="#Referential"/>
</ObjectMinCardinality>
<ObjectMinCardinality cardinality="1">
<ObjectProperty IRI="#contentype"/>
<Class IRI="#Temporal"/>
</ObjectMinCardinality>
</ObjectIntersectionOf>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#LIPElement"/>
<ObjectUnionOf>
<Class IRI="#Accessibility"/>
<Class IRI="#Activity"/>
<Class IRI="#Affiliation"/>
<Class IRI="#Competency"/>
<Class IRI="#Goal"/>
<Class IRI="#Identification"/>
<Class IRI="#Qcl"/>
</ObjectUnionOf>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#OrganizationName"/>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#organizationName"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataExactCardinality>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#PersonName"/>
<ObjectIntersectionOf>
<DataMinCardinality cardinality="0">
<DataProperty IRI="#middlename"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataMinCardinality>
<DataMinCardinality cardinality="0">
<DataProperty IRI="#preferredname"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataMinCardinality>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#firstname"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataExactCardinality>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#lastname"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataExactCardinality>
</ObjectIntersectionOf>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#Privacy"/>
<ObjectIntersectionOf>
<DataSomeValuesFrom>
<DataProperty IRI="#right"/>
<DataOneOf>
<Literal datatypeIRI="&xsd;string">Access</Literal>
<Literal datatypeIRI="&xsd;string">ReadAccess</Literal>
<Literal datatypeIRI="&xsd;string">WriteAccess</Literal>
</DataOneOf>
</DataSomeValuesFrom>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#role"/>
<DataOneOf>
<Literal datatypeIRI="&xsd;string">All</Literal>
<Literal datatypeIRI="&xsd;string">Creator</Literal>
<Literal datatypeIRI="&xsd;string">Learner</Literal>
<Literal datatypeIRI="&xsd;string">Owner</Literal>
<Literal datatypeIRI="&xsd;string">ProfileManager</Literal>
<Literal datatypeIRI="&xsd;string">Steward</Literal>
</DataOneOf>
</DataExactCardinality>
</ObjectIntersectionOf>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#Qcl"/>
<ObjectIntersectionOf>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#contentype"/>
<ObjectUnionOf>
<Class IRI="http://www.cs.teilar.gr/ontologies/KConcept.owl#Concept"/>
<Class IRI="http://www.cs.teilar.gr/ontologies/KConcept.owl#Course"/>
<Class IRI="http://www.cs.teilar.gr/ontologies/KConcept.owl#Discipline"/>
</ObjectUnionOf>
</ObjectSomeValuesFrom>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#date"/>
<Datatype abbreviatedIRI="xsd:date"/>
</DataExactCardinality>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#issuedBy"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataExactCardinality>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#vocabulary"/>
<DataOneOf>
<Literal datatypeIRI="&xsd;string">Award</Literal>
<Literal datatypeIRI="&xsd;string">Certificate</Literal>
<Literal datatypeIRI="&xsd;string">Degree</Literal>
</DataOneOf>
</DataExactCardinality>
</ObjectIntersectionOf>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#Referential"/>
<ObjectIntersectionOf>
<DataSomeValuesFrom>
<DataProperty IRI="#issuedBy"/>
<Datatype abbreviatedIRI="xsd:anyURI"/>
</DataSomeValuesFrom>
<DataMinCardinality cardinality="0">
<DataProperty IRI="http://www.cs.teilar.gr/ontologies/lom.owl#location"/>
<Datatype abbreviatedIRI="xsd:anyURI"/>
</DataMinCardinality>
</ObjectIntersectionOf>
</EquivalentClasses>
<EquivalentClasses>
<Class IRI="#Temporal"/>
<ObjectIntersectionOf>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#date"/>
<Datatype abbreviatedIRI="xsd:dateTime"/>
</DataExactCardinality>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#vocabulary"/>
<DataOneOf>
<Literal datatypeIRI="&xsd;string">Creation</Literal>
<Literal datatypeIRI="&xsd;string">Expiry</Literal>
<Literal datatypeIRI="&xsd;string">Purge</Literal>
<Literal datatypeIRI="&xsd;string">Update</Literal>
</DataOneOf>
</DataExactCardinality>
</ObjectIntersectionOf>
</EquivalentClasses>
<SubClassOf>
<Class IRI="#Accessibility"/>
<Class IRI="#LIPElement"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Activity"/>
<Class IRI="#LIPElement"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Activity"/>
<ObjectIntersectionOf>
<ObjectMaxCardinality cardinality="1">
<ObjectProperty IRI="#hasComponent"/>
<Class IRI="#Competency"/>
</ObjectMaxCardinality>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#status"/>
<DataOneOf>
<Literal datatypeIRI="&xsd;string">abandoned</Literal>
<Literal datatypeIRI="&xsd;string">completed</Literal>
<Literal datatypeIRI="&xsd;string">suspended</Literal>
</DataOneOf>
</DataExactCardinality>
</ObjectIntersectionOf>
</SubClassOf>
<SubClassOf>
<Class IRI="#Address"/>
<ObjectIntersectionOf>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#addresstype"/>
<DataOneOf>
<Literal datatypeIRI="&xsd;string">Home</Literal>
<Literal datatypeIRI="&xsd;string">Work</Literal>
</DataOneOf>
</DataExactCardinality>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#city"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataExactCardinality>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#country"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataExactCardinality>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#pobox"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataExactCardinality>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#region"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataExactCardinality>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#streetnumber"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataExactCardinality>
</ObjectIntersectionOf>
</SubClassOf>
<SubClassOf>
<Class IRI="#Affiliation"/>
<Class IRI="#LIPElement"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Competency"/>
<Class IRI="#LIPElement"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#ContactInfo"/>
<ObjectIntersectionOf>
<DataSomeValuesFrom>
<DataProperty IRI="#email"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataSomeValuesFrom>
<DataSomeValuesFrom>
<DataProperty IRI="#telephone"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataSomeValuesFrom>
<DataSomeValuesFrom>
<DataProperty IRI="#web"/>
<Datatype abbreviatedIRI="xsd:anyURI"/>
</DataSomeValuesFrom>
</ObjectIntersectionOf>
</SubClassOf>
<SubClassOf>
<Class IRI="#Demographics"/>
<ObjectIntersectionOf>
<DataSomeValuesFrom>
<DataProperty IRI="#date"/>
<Datatype abbreviatedIRI="xsd:date"/>
</DataSomeValuesFrom>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#gender"/>
<DataOneOf>
<Literal datatypeIRI="&xsd;string">Female</Literal>
<Literal datatypeIRI="&xsd;string">Male</Literal>
</DataOneOf>
</DataExactCardinality>
</ObjectIntersectionOf>
</SubClassOf>
<SubClassOf>
<Class IRI="#Goal"/>
<Class IRI="#LIPElement"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Identification"/>
<Class IRI="#LIPElement"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#LIP"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#contentype"/>
<Class IRI="#LIPContentType"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#LIPElement"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#contentype"/>
<Class IRI="#LIPContentType"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#OrganizationName"/>
<Class IRI="#Name"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#PersonName"/>
<Class IRI="#Name"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Privacy"/>
<Class IRI="#LIPContentType"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Qcl"/>
<Class IRI="#LIPElement"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Referential"/>
<Class IRI="#LIPContentType"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Temporal"/>
<Class IRI="#LIPContentType"/>
</SubClassOf>
<DisjointClasses>
<Class IRI="http://www.cs.teilar.gr/ontologies/KConcept.owl#EducationalObjective"/>
<Class IRI="#Address"/>
<Class IRI="#ContactInfo"/>
<Class IRI="#Demographics"/>
<Class IRI="#LIP"/>
<Class IRI="#Name"/>
<Class IRI="http://www.cs.teilar.gr/ontologies/LearningStyle.owl#LearningStyle"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#Accessibility"/>
<Class IRI="#Activity"/>
<Class IRI="#Affiliation"/>
<Class IRI="#Competency"/>
<Class IRI="#Goal"/>
<Class IRI="#Identification"/>
<Class IRI="#Qcl"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#Address"/>
<Class IRI="#ContactInfo"/>
<Class IRI="#Demographics"/>
<Class IRI="#LIPContentType"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#Address"/>
<Class IRI="#ContactInfo"/>
<Class IRI="#Demographics"/>
<Class IRI="#LIPElement"/>
<Class IRI="#Name"/>
<Class IRI="http://www.cs.teilar.gr/ontologies/LearningStyle.owl#LearningStyle"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#LIP"/>
<Class IRI="#LIPContentType"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#LIP"/>
<Class IRI="#LIPElement"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#LIPContentType"/>
<Class IRI="#LIPElement"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#LIPContentType"/>
<Class IRI="#Name"/>
<Class IRI="http://www.cs.teilar.gr/ontologies/LearningStyle.owl#LearningStyle"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#Name"/>
<Class IRI="http://www.cs.teilar.gr/ontologies/LearningStyle.owl#LearningStyle"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#OrganizationName"/>
<Class IRI="#PersonName"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#Privacy"/>
<Class IRI="#Referential"/>
<Class IRI="#Temporal"/>
</DisjointClasses>
<SubObjectPropertyOf>
<ObjectProperty IRI="#addressInfo"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<InverseObjectProperties>
<ObjectProperty IRI="#isComponentOf"/>
<ObjectProperty IRI="#hasComponent"/>
</InverseObjectProperties>
<InverseObjectProperties>
<ObjectProperty IRI="#hasLIPElement"/>
<ObjectProperty IRI="#isLIPElementOf"/>
</InverseObjectProperties>
<ObjectPropertyDomain>
<ObjectProperty IRI="#hasLIPElement"/>
<Class IRI="#LIP"/>
</ObjectPropertyDomain>
<ObjectPropertyRange>
<ObjectProperty IRI="#contentype"/>
<Class IRI="#LIPContentType"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#hasLIPElement"/>
<Class IRI="#LIPElement"/>
</ObjectPropertyRange>
<SubDataPropertyOf>
<DataProperty IRI="#addresstype"/>
<DataProperty IRI="#addressInfo"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#city"/>
<DataProperty IRI="#addressInfo"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#country"/>
<DataProperty IRI="#addressInfo"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#date"/>
<DataProperty IRI="#demographics"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#email"/>
<DataProperty IRI="#contactinfo"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#firstname"/>
<DataProperty IRI="#personName"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#gender"/>
<DataProperty IRI="#demographics"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#lastname"/>
<DataProperty IRI="#personName"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#middlename"/>
<DataProperty IRI="#personName"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#organizationName"/>
<DataProperty IRI="#name"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#personName"/>
<DataProperty IRI="#name"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#pobox"/>
<DataProperty IRI="#addressInfo"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#preferredname"/>
<DataProperty IRI="#personName"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#region"/>
<DataProperty IRI="#addressInfo"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#street"/>
<DataProperty IRI="#addressInfo"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#streetnumber"/>
<DataProperty IRI="#addressInfo"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#telephone"/>
<DataProperty IRI="#contactinfo"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="#web"/>
<DataProperty IRI="#contactinfo"/>
</SubDataPropertyOf>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Accessibility</IRI>
<Literal datatypeIRI="&xsd;string">General accessibility to the learner information as defined through language capabilities, disabilities, eligibilities and learning preferences including cognitive preferences (e.g. issues of learning style), IMS LIP Information Model Final Specification Version 1.0 / 9th March, 2001 10 IMS physical preferences (e.g. a preference for large print), and technological preferences (e.g. a preference for a particular computer platform)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Activity</IRI>
<Literal datatypeIRI="&xsd;string">Any learning-related activity in any state of completion. Could be self-reported. Includes formal and informal education, training, work experience, and military or civic service;
(hasComponent max 1 Competency) //acquired by the activity
and (entity some anyURI) //the learning object user interacted with
and (status exactly 1 {"abandoned" , "completed" , "suspended"})</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Competency</IRI>
<Literal datatypeIRI="&xsd;string">Skills, knowledge, and abilities acquired in the cognitive, affective, and/or psychomotor domains.
The competency learner information consists of the descriptions of the skills the learner has acquired. These skills may be associated with some formal or informal training or work history (described in the ‘activity’) and formal awards (described in the ‘qcl’). A different ‘competency’ structure will be used for each competency through an external reference mechanism. The adopted competency definition follows the work of the IMS Competency Definition working-group.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Goal</IRI>
<Literal datatypeIRI="&xsd;string">Learning, career and other objectives and aspirations;</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Identification</IRI>
<Literal datatypeIRI="&xsd;string">The identification learner information contains all of the data for a specific individual or organisation. This includes data such as: name, address, contact information, agent and demographics.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#LIP</IRI>
<Literal datatypeIRI="&xsd;string">IMS Learner Information Package</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Privacy</IRI>
<Literal datatypeIRI="&xsd;string">Data that is to be used to describe the access to and to ensure the integrity of the learner information.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Qcl</IRI>
<Literal datatypeIRI="&xsd;string">Qualifications, certifications and licenses granted by recognized authorities;
The qcl learner information consists of the qualifications, certifications and licenses awarded to the learner i.e. the formally recognised products of their learning and work history. This includes information on the awarding body and may also include electronic copies of the actual documents. A different ‘qcl’ structure will be used for each qualification, etc.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Referential</IRI>
<Literal datatypeIRI="&xsd;string">Reference information that is used to uniquely identify the learner information package and the data structures within it.
It consists of an issueing source and (optionally) a location (URI) the LIP file or LIPElement in question.
</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Temporal</IRI>
<Literal datatypeIRI="&xsd;string">Data describing time-based information about the data structure e.g. time of creation, date of expiry, etc.
If the expire date is undefined then the information is assumed to have an infinite period of validity. Several different temporal definitions may be defined for a structure e.g. time of creation, and expiry.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#preferredname</IRI>
<Literal datatypeIRI="&xsd;string">e.g. nikname</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<AbbreviatedIRI>xsd:ID</AbbreviatedIRI>
<Literal datatypeIRI="&xsd;string">The purpose of the xsd:ID datatype is to define unique identifiers that are global to a document and emulate the ID attribute type available in the XML DTDs.
Unlike their DTD counterparts, W3C XML Schema ID datatypes can be applied to not only attributes but also simple element content.
For both attributes and simple element content, the lexical domain of these datatypes is the lexical domain of XML nonqualified names (xsd:NCName).
Identifiers defined using this datatype are global to a document and provide a way to uniquely identify their containing element, whatever its type and name is.
The constraint added by this datatype, beyond the xsd:NCName datatype from which it is derived, is that the values of all the attributes and elements that have an ID datatype in a document must be unique.
Note that the behavior of this datatype depends on whether the RELAX NG implementation supports RELAX NG DTD compatibility datatype library, in which case, the uniqueness of the identifiers will be checked. This datatype can be used both for elements and for defining multiple type assignment to attributes defined as ID, depending on their location in the schema.</Literal>
</AnnotationAssertion>
</Ontology>
<!-- Generated by the OWL API (version 3.1.0.20069) http://owlapi.sourceforge.net -->