aboutsummaryrefslogtreecommitdiff
path: root/examples/lubm/univ-bench.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/lubm/univ-bench.ttl')
-rw-r--r--examples/lubm/univ-bench.ttl997
1 files changed, 997 insertions, 0 deletions
diff --git a/examples/lubm/univ-bench.ttl b/examples/lubm/univ-bench.ttl
new file mode 100644
index 0000000..94241cc
--- /dev/null
+++ b/examples/lubm/univ-bench.ttl
@@ -0,0 +1,997 @@
1@prefix : <http://swat.cse.lehigh.edu/onto/univ-bench.owl#> .
2@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
3@prefix owl: <http://www.w3.org/2002/07/owl#> .
4@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
5@base <http://swat.cse.lehigh.edu/onto/univ-bench.owl> .
6
7<http://swat.cse.lehigh.edu/onto/univ-bench.owl> rdf:type owl:Ontology ;
8
9 rdfs:label "Univ-bench Ontology" ;
10
11 owl:versionInfo "univ-bench-ontology-owl, ver April 1, 2004" ;
12
13 rdfs:comment "An university ontology for benchmark tests" .
14
15
16#################################################################
17#
18# Object Properties
19#
20#################################################################
21
22
23### http://swat.cse.lehigh.edu/onto/univ-bench.owl#advisor
24
25:advisor rdf:type owl:ObjectProperty ;
26
27 rdfs:label "is being advised by" ;
28
29 rdfs:domain :Person ;
30
31 rdfs:range :Professor .
32
33
34
35### http://swat.cse.lehigh.edu/onto/univ-bench.owl#affiliateOf
36
37:affiliateOf rdf:type owl:ObjectProperty ;
38
39 rdfs:label "is affiliated with" ;
40
41 rdfs:domain :Organization ;
42
43 rdfs:range :Person .
44
45
46
47### http://swat.cse.lehigh.edu/onto/univ-bench.owl#affiliatedOrganizationOf
48
49:affiliatedOrganizationOf rdf:type owl:ObjectProperty ;
50
51 rdfs:label "is affiliated with" ;
52
53 rdfs:range :Organization ;
54
55 rdfs:domain :Organization .
56
57
58
59### http://swat.cse.lehigh.edu/onto/univ-bench.owl#degreeFrom
60
61:degreeFrom rdf:type owl:ObjectProperty ;
62
63 rdfs:label "has a degree from" ;
64
65 rdfs:domain :Person ;
66
67 rdfs:range :University ;
68
69 owl:inverseOf :hasAlumnus .
70
71
72
73### http://swat.cse.lehigh.edu/onto/univ-bench.owl#doctoralDegreeFrom
74
75:doctoralDegreeFrom rdf:type owl:ObjectProperty ;
76
77 rdfs:label "has a doctoral degree from" ;
78
79 rdfs:domain :Person ;
80
81 rdfs:range :University ;
82
83 rdfs:subPropertyOf :degreeFrom .
84
85
86
87### http://swat.cse.lehigh.edu/onto/univ-bench.owl#hasAlumnus
88
89:hasAlumnus rdf:type owl:ObjectProperty ;
90
91 rdfs:label "has as an alumnus" ;
92
93 rdfs:range :Person ;
94
95 rdfs:domain :University .
96
97
98
99### http://swat.cse.lehigh.edu/onto/univ-bench.owl#headOf
100
101:headOf rdf:type owl:ObjectProperty ;
102
103 rdfs:label "is the head of" ;
104
105 rdfs:subPropertyOf :worksFor .
106
107
108
109### http://swat.cse.lehigh.edu/onto/univ-bench.owl#listedCourse
110
111:listedCourse rdf:type owl:ObjectProperty ;
112
113 rdfs:label "lists as a course" ;
114
115 rdfs:range :Course ;
116
117 rdfs:domain :Schedule .
118
119
120
121### http://swat.cse.lehigh.edu/onto/univ-bench.owl#mastersDegreeFrom
122
123:mastersDegreeFrom rdf:type owl:ObjectProperty ;
124
125 rdfs:label "has a masters degree from" ;
126
127 rdfs:domain :Person ;
128
129 rdfs:range :University ;
130
131 rdfs:subPropertyOf :degreeFrom .
132
133
134
135### http://swat.cse.lehigh.edu/onto/univ-bench.owl#member
136
137:member rdf:type owl:ObjectProperty ;
138
139 rdfs:label "has as a member" ;
140
141 rdfs:domain :Organization ;
142
143 rdfs:range :Person .
144
145
146
147### http://swat.cse.lehigh.edu/onto/univ-bench.owl#memberOf
148
149:memberOf rdf:type owl:ObjectProperty ;
150
151 rdfs:label "member of" ;
152
153 owl:inverseOf :member .
154
155
156
157### http://swat.cse.lehigh.edu/onto/univ-bench.owl#orgPublication
158
159:orgPublication rdf:type owl:ObjectProperty ;
160
161 rdfs:label "publishes" ;
162
163 rdfs:domain :Organization ;
164
165 rdfs:range :Publication .
166
167
168
169### http://swat.cse.lehigh.edu/onto/univ-bench.owl#publicationAuthor
170
171:publicationAuthor rdf:type owl:ObjectProperty ;
172
173 rdfs:label "was written by" ;
174
175 rdfs:range :Person ;
176
177 rdfs:domain :Publication .
178
179
180
181### http://swat.cse.lehigh.edu/onto/univ-bench.owl#publicationDate
182
183:publicationDate rdf:type owl:ObjectProperty ;
184
185 rdfs:label "was written on" ;
186
187 rdfs:domain :Publication .
188
189
190
191### http://swat.cse.lehigh.edu/onto/univ-bench.owl#publicationResearch
192
193:publicationResearch rdf:type owl:ObjectProperty ;
194
195 rdfs:label "is about" ;
196
197 rdfs:domain :Publication ;
198
199 rdfs:range :Research .
200
201
202
203### http://swat.cse.lehigh.edu/onto/univ-bench.owl#researchProject
204
205:researchProject rdf:type owl:ObjectProperty ;
206
207 rdfs:label "has as a research project" ;
208
209 rdfs:range :Research ;
210
211 rdfs:domain :ResearchGroup .
212
213
214
215### http://swat.cse.lehigh.edu/onto/univ-bench.owl#softwareDocumentation
216
217:softwareDocumentation rdf:type owl:ObjectProperty ;
218
219 rdfs:label "is documented in" ;
220
221 rdfs:range :Publication ;
222
223 rdfs:domain :Software .
224
225
226
227### http://swat.cse.lehigh.edu/onto/univ-bench.owl#softwareVersion
228
229:softwareVersion rdf:type owl:ObjectProperty ;
230
231 rdfs:label "is version" ;
232
233 rdfs:domain :Software .
234
235
236
237### http://swat.cse.lehigh.edu/onto/univ-bench.owl#subOrganizationOf
238
239#:subOrganizationOf rdf:type owl:ObjectProperty ,
240# owl:TransitiveProperty ;
241
242:subOrganizationOf rdf:type owl:ObjectProperty ;
243
244 rdfs:label "is part of" ;
245
246 rdfs:range :Organization ;
247
248 rdfs:domain :Organization .
249
250
251
252### http://swat.cse.lehigh.edu/onto/univ-bench.owl#takesCourse
253
254:takesCourse rdf:type owl:ObjectProperty ;
255
256 rdfs:label "is taking" .
257
258
259
260### http://swat.cse.lehigh.edu/onto/univ-bench.owl#teacherOf
261
262:teacherOf rdf:type owl:ObjectProperty ;
263
264 rdfs:label "teaches" ;
265
266 rdfs:range :Course ;
267
268 rdfs:domain :Faculty .
269
270
271
272### http://swat.cse.lehigh.edu/onto/univ-bench.owl#teachingAssistantOf
273
274:teachingAssistantOf rdf:type owl:ObjectProperty ;
275
276 rdfs:label "is a teaching assistant for" ;
277
278 rdfs:range :Course ;
279
280 rdfs:domain :TeachingAssistant .
281
282
283
284### http://swat.cse.lehigh.edu/onto/univ-bench.owl#tenured
285
286:tenured rdf:type owl:ObjectProperty ;
287
288 rdfs:label "is tenured:" ;
289
290 rdfs:domain :Professor .
291
292
293
294### http://swat.cse.lehigh.edu/onto/univ-bench.owl#undergraduateDegreeFrom
295
296:undergraduateDegreeFrom rdf:type owl:ObjectProperty ;
297
298 rdfs:label "has an undergraduate degree from" ;
299
300 rdfs:domain :Person ;
301
302 rdfs:range :University ;
303
304 rdfs:subPropertyOf :degreeFrom .
305
306
307
308### http://swat.cse.lehigh.edu/onto/univ-bench.owl#worksFor
309
310:worksFor rdf:type owl:ObjectProperty ;
311
312 rdfs:label "Works For" ;
313
314 rdfs:subPropertyOf :memberOf .
315
316
317
318
319
320#################################################################
321#
322# Data properties
323#
324#################################################################
325
326
327#### http://swat.cse.lehigh.edu/onto/univ-bench.owl#age
328#
329#:age rdf:type owl:DatatypeProperty ;
330#
331# rdfs:label "is age" ;
332#
333# rdfs:domain :Person .
334#
335#
336#
337#### http://swat.cse.lehigh.edu/onto/univ-bench.owl#emailAddress
338#
339#:emailAddress rdf:type owl:DatatypeProperty ;
340#
341# rdfs:label "can be reached at" ;
342#
343# rdfs:domain :Person .
344#
345#
346#
347#### http://swat.cse.lehigh.edu/onto/univ-bench.owl#name
348#
349#:name rdf:type owl:DatatypeProperty ;
350#
351# rdfs:label "name" .
352#
353#
354#
355#### http://swat.cse.lehigh.edu/onto/univ-bench.owl#officeNumber
356#
357#:officeNumber rdf:type owl:DatatypeProperty ;
358#
359# rdfs:label "office room No." .
360#
361#
362#
363#### http://swat.cse.lehigh.edu/onto/univ-bench.owl#researchInterest
364#
365#:researchInterest rdf:type owl:DatatypeProperty ;
366#
367# rdfs:label "is researching" .
368#
369#
370#
371#### http://swat.cse.lehigh.edu/onto/univ-bench.owl#telephone
372#
373#:telephone rdf:type owl:DatatypeProperty ;
374#
375# rdfs:label "telephone number" ;
376#
377# rdfs:domain :Person .
378#
379#
380#
381#### http://swat.cse.lehigh.edu/onto/univ-bench.owl#title
382#
383#:title rdf:type owl:DatatypeProperty ;
384#
385# rdfs:label "title" ;
386#
387# rdfs:domain :Person .
388
389
390
391
392#################################################################
393#
394# Classes
395#
396#################################################################
397
398
399### http://swat.cse.lehigh.edu/onto/univ-bench.owl#AdministrativeStaff
400
401:AdministrativeStaff rdf:type owl:Class ;
402
403 rdfs:label "administrative staff worker" ;
404
405 rdfs:subClassOf :Employee .
406
407
408
409### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Article
410
411:Article rdf:type owl:Class ;
412
413 rdfs:label "article" ;
414
415 rdfs:subClassOf :Publication .
416
417
418
419### http://swat.cse.lehigh.edu/onto/univ-bench.owl#AssistantProfessor
420
421:AssistantProfessor rdf:type owl:Class ;
422
423 rdfs:label "assistant professor" ;
424
425 rdfs:subClassOf :Professor .
426
427
428
429### http://swat.cse.lehigh.edu/onto/univ-bench.owl#AssociateProfessor
430
431:AssociateProfessor rdf:type owl:Class ;
432
433 rdfs:label "associate professor" ;
434
435 rdfs:subClassOf :Professor .
436
437
438
439### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Book
440
441:Book rdf:type owl:Class ;
442
443 rdfs:label "book" ;
444
445 rdfs:subClassOf :Publication .
446
447
448
449### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Chair
450
451#:Chair rdf:type owl:Class ;
452#
453# rdfs:label "chair" ;
454#
455# owl:equivalentClass [ rdf:type owl:Class ;
456# owl:intersectionOf ( :Person
457# [ rdf:type owl:Restriction ;
458# owl:onProperty :headOf ;
459# owl:someValuesFrom :Department
460# ]
461# )
462# ] ;
463#
464# rdfs:subClassOf :Professor .
465
466:Chair rdf:type owl:Class ;
467
468 rdfs:label "chair" ;
469
470 rdfs:subClassOf :Person ;
471
472 rdfs:subClassOf :Professor ;
473
474 rdfs:subClassOf :HeadOfDept .
475
476:HeadOfDept owl:equivalentClass [ rdf:type owl:Restriction ;
477 owl:onProperty :headOf ;
478 owl:someValuesFrom :Department
479 ] .
480
481[ rdf:type owl:Class ;
482 owl:intersectionOf ( :Person :HeadOfDept)
483 ] rdfs:subClassOf :Chair .
484
485
486
487### http://swat.cse.lehigh.edu/onto/univ-bench.owl#ClericalStaff
488
489:ClericalStaff rdf:type owl:Class ;
490
491 rdfs:label "clerical staff worker" ;
492
493 rdfs:subClassOf :AdministrativeStaff .
494
495
496
497### http://swat.cse.lehigh.edu/onto/univ-bench.owl#College
498
499:College rdf:type owl:Class ;
500
501 rdfs:label "school" ;
502
503 rdfs:subClassOf :Organization .
504
505
506
507### http://swat.cse.lehigh.edu/onto/univ-bench.owl#ConferencePaper
508
509:ConferencePaper rdf:type owl:Class ;
510
511 rdfs:label "conference paper" ;
512
513 rdfs:subClassOf :Article .
514
515
516
517### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Course
518
519:Course rdf:type owl:Class ;
520
521 rdfs:label "teaching course" ;
522
523 rdfs:subClassOf :Work .
524
525
526
527### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Dean
528
529#:Dean rdf:type owl:Class ;
530#
531# rdfs:label "dean" ;
532#
533# owl:equivalentClass [ rdf:type owl:Class ;
534# owl:intersectionOf ( [ rdf:type owl:Restriction ;
535# owl:onProperty :headOf ;
536# owl:someValuesFrom :College
537# ]
538# )
539# ] ;
540#
541# rdfs:subClassOf :Professor .
542
543:Dean rdf:type owl:Class ;
544
545 rdfs:label "dean" ;
546
547 rdfs:subClassOf :Person ;
548
549 rdfs:subClassOf :Professor ;
550
551 rdfs:subClassOf :HeadOfCollege .
552
553:HeadOfCollege owl:equivalentClass [ rdf:type owl:Restriction ;
554 owl:onProperty :headOf ;
555 owl:someValuesFrom :College
556 ] .
557
558[ rdf:type owl:Class ;
559 owl:intersectionOf ( :Person :HeadOfCollege)
560 ] rdfs:subClassOf :Dean .
561
562
563
564### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Department
565
566:Department rdf:type owl:Class ;
567
568 rdfs:label "university department" ;
569
570 rdfs:subClassOf :Organization .
571
572
573
574### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Director
575
576#:Director rdf:type owl:Class ;
577#
578# rdfs:label "director" ;
579#
580# owl:equivalentClass [ rdf:type owl:Class ;
581# owl:intersectionOf ( :Person
582# [ rdf:type owl:Restriction ;
583# owl:onProperty :headOf ;
584# owl:someValuesFrom :Program
585# ]
586# )
587# ] .
588
589:Director rdf:type owl:Class ;
590
591 rdfs:label "director" ;
592
593 rdfs:subClassOf :Person ;
594
595 rdfs:subClassOf :HeadOfProgram .
596
597:HeadOfProgram owl:equivalentClass [ rdf:type owl:Restriction ;
598 owl:onProperty :headOf ;
599 owl:someValuesFrom :Program
600 ] .
601
602[ rdf:type owl:Class ;
603 owl:intersectionOf ( :Person :HeadOfProgram)
604 ] rdfs:subClassOf :Director .
605
606
607
608### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Employee
609
610#:Employee rdf:type owl:Class ;
611#
612# rdfs:label "Employee" ;
613#
614# owl:equivalentClass [ rdf:type owl:Class ;
615# owl:intersectionOf ( :Person
616# [ rdf:type owl:Restriction ;
617# owl:onProperty :worksFor ;
618# owl:someValuesFrom :Organization
619# ]
620# )
621# ] .
622
623:Employee rdf:type owl:Class ;
624
625 rdfs:label "employee" ;
626
627 rdfs:subClassOf :Person ;
628
629 rdfs:subClassOf :WorksForOrganization .
630
631:WorksForOrganization owl:equivalentClass [ rdf:type owl:Restriction ;
632 owl:onProperty :worksFor ;
633 owl:someValuesFrom :Organization
634 ] .
635
636[ rdf:type owl:Class ;
637 owl:intersectionOf ( :Person :WorksForOrganization)
638 ] rdfs:subClassOf :Employee .
639
640
641
642### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Faculty
643
644:Faculty rdf:type owl:Class ;
645
646 rdfs:label "faculty member" ;
647
648 rdfs:subClassOf :Employee .
649
650
651
652### http://swat.cse.lehigh.edu/onto/univ-bench.owl#FullProfessor
653
654:FullProfessor rdf:type owl:Class ;
655
656 rdfs:label "full professor" ;
657
658 rdfs:subClassOf :Professor .
659
660
661
662### http://swat.cse.lehigh.edu/onto/univ-bench.owl#GraduateCourse
663
664:GraduateCourse rdf:type owl:Class ;
665
666 rdfs:label "Graduate Level Courses" ;
667
668 rdfs:subClassOf :Course .
669
670
671
672### http://swat.cse.lehigh.edu/onto/univ-bench.owl#GraduateStudent
673
674#:GraduateStudent rdf:type owl:Class ;
675#
676# rdfs:label "graduate student" ;
677#
678# rdfs:subClassOf :Person ,
679# [ rdf:type owl:Restriction ;
680# owl:onProperty :takesCourse ;
681# owl:someValuesFrom :GraduateCourse
682# ] .
683
684:GraduateStudent rdf:type owl:Class ;
685
686 rdfs:label "graduate student" ;
687
688 rdfs:subClassOf :Person ;
689
690 rdfs:subClassOf [ rdf:type owl:Restriction ;
691 owl:onProperty :takesCourse ;
692 owl:someValuesFrom :GraduateCourse
693 ] .
694
695
696
697### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Institute
698
699:Institute rdf:type owl:Class ;
700
701 rdfs:label "institute" ;
702
703 rdfs:subClassOf :Organization .
704
705
706
707### http://swat.cse.lehigh.edu/onto/univ-bench.owl#JournalArticle
708
709:JournalArticle rdf:type owl:Class ;
710
711 rdfs:label "journal article" ;
712
713 rdfs:subClassOf :Article .
714
715
716
717### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Lecturer
718
719:Lecturer rdf:type owl:Class ;
720
721 rdfs:label "lecturer" ;
722
723 rdfs:subClassOf :Faculty .
724
725
726
727### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Manual
728
729:Manual rdf:type owl:Class ;
730
731 rdfs:label "manual" ;
732
733 rdfs:subClassOf :Publication .
734
735
736
737### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Organization
738
739:Organization rdf:type owl:Class ;
740
741 rdfs:label "organization" .
742
743
744
745### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Person
746
747:Person rdf:type owl:Class ;
748
749 rdfs:label "person" .
750
751
752
753### http://swat.cse.lehigh.edu/onto/univ-bench.owl#PostDoc
754
755:PostDoc rdf:type owl:Class ;
756
757 rdfs:label "post doctorate" ;
758
759 rdfs:subClassOf :Faculty .
760
761
762
763### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Professor
764
765:Professor rdf:type owl:Class ;
766
767 rdfs:label "professor" ;
768
769 rdfs:subClassOf :Faculty .
770
771
772
773### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Program
774
775:Program rdf:type owl:Class ;
776
777 rdfs:label "program" ;
778
779 rdfs:subClassOf :Organization .
780
781
782
783### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Publication
784
785:Publication rdf:type owl:Class ;
786
787 rdfs:label "publication" .
788
789
790
791### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Research
792
793:Research rdf:type owl:Class ;
794
795 rdfs:label "research work" ;
796
797 rdfs:subClassOf :Work .
798
799
800
801### http://swat.cse.lehigh.edu/onto/univ-bench.owl#ResearchAssistant
802
803#:ResearchAssistant rdf:type owl:Class ;
804#
805# rdfs:label "university research assistant" ;
806#
807# rdfs:subClassOf :Person ,
808# [ rdf:type owl:Restriction ;
809# owl:onProperty :worksFor ;
810# owl:someValuesFrom :ResearchGroup
811# ] .
812
813:ResearchAssistant rdf:type owl:Class ;
814
815 rdfs:label "university research assistant" ;
816
817 rdfs:subClassOf :Person ;
818
819 rdfs:subClassOf [ rdf:type owl:Restriction ;
820 owl:onProperty :worksFor ;
821 owl:someValuesFrom :ResearchGroup
822 ] .
823
824
825
826### http://swat.cse.lehigh.edu/onto/univ-bench.owl#ResearchGroup
827
828:ResearchGroup rdf:type owl:Class ;
829
830 rdfs:label "research group" ;
831
832 rdfs:subClassOf :Organization .
833
834
835
836### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Schedule
837
838:Schedule rdf:type owl:Class ;
839
840 rdfs:label "schedule" .
841
842
843
844### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Software
845
846:Software rdf:type owl:Class ;
847
848 rdfs:label "software program" ;
849
850 rdfs:subClassOf :Publication .
851
852
853
854### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Specification
855
856:Specification rdf:type owl:Class ;
857
858 rdfs:label "published specification" ;
859
860 rdfs:subClassOf :Publication .
861
862
863
864### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Student
865
866#:Student rdf:type owl:Class ;
867#
868# rdfs:label "student" ;
869#
870# owl:equivalentClass [ rdf:type owl:Class ;
871# owl:intersectionOf ( :Person
872# [ rdf:type owl:Restriction ;
873# owl:onProperty :takesCourse ;
874# owl:someValuesFrom :Course
875# ]
876# )
877# ] .
878
879:Student rdf:type owl:Class ;
880
881 rdfs:label "student" ;
882
883 rdfs:subClassOf :Person ;
884
885 rdfs:subClassOf :TakesCourse .
886
887:TakesCourse owl:equivalentClass [ rdf:type owl:Restriction ;
888 owl:onProperty :takesCourse ;
889 owl:someValuesFrom :Course
890 ] .
891
892[ rdf:type owl:Class ;
893 owl:intersectionOf ( :Person :TakesCourse)
894 ] rdfs:subClassOf :Student .
895
896
897
898### http://swat.cse.lehigh.edu/onto/univ-bench.owl#SystemsStaff
899
900:SystemsStaff rdf:type owl:Class ;
901
902 rdfs:label "systems staff worker" ;
903
904 rdfs:subClassOf :AdministrativeStaff .
905
906
907
908### http://swat.cse.lehigh.edu/onto/univ-bench.owl#TeachingAssistant
909
910#:TeachingAssistant rdf:type owl:Class ;
911#
912# rdfs:label "university teaching assistant" ;
913#
914# owl:equivalentClass [ rdf:type owl:Class ;
915# owl:intersectionOf ( :Person
916# [ rdf:type owl:Restriction ;
917# owl:onProperty :teachingAssistantOf ;
918# owl:someValuesFrom :Course
919# ]
920# )
921# ] .
922
923:TeachingAssistant rdf:type owl:Class ;
924
925 rdfs:label "university teaching assistant" ;
926
927 rdfs:subClassOf :Person ;
928
929 rdfs:subClassOf :TeachingAssistantOfCourse .
930
931:TeachingAssistantOfCourse owl:equivalentClass [ rdf:type owl:Restriction ;
932 owl:onProperty :teachingAssistantOf ;
933 owl:someValuesFrom :Course
934 ] .
935
936[ rdf:type owl:Class ;
937 owl:intersectionOf ( :Person :TeachingAssistantOfCourse)
938 ] rdfs:subClassOf :TeachingAssistant .
939
940
941
942### http://swat.cse.lehigh.edu/onto/univ-bench.owl#TechnicalReport
943
944:TechnicalReport rdf:type owl:Class ;
945
946 rdfs:label "technical report" ;
947
948 rdfs:subClassOf :Article .
949
950
951
952### http://swat.cse.lehigh.edu/onto/univ-bench.owl#UndergraduateStudent
953
954:UndergraduateStudent rdf:type owl:Class ;
955
956 rdfs:label "undergraduate student" ;
957
958 rdfs:subClassOf :Student .
959
960
961
962### http://swat.cse.lehigh.edu/onto/univ-bench.owl#University
963
964:University rdf:type owl:Class ;
965
966 rdfs:label "university" ;
967
968 rdfs:subClassOf :Organization .
969
970
971
972### http://swat.cse.lehigh.edu/onto/univ-bench.owl#UnofficialPublication
973
974:UnofficialPublication rdf:type owl:Class ;
975
976 rdfs:label "unnoficial publication" ;
977
978 rdfs:subClassOf :Publication .
979
980
981
982### http://swat.cse.lehigh.edu/onto/univ-bench.owl#VisitingProfessor
983
984:VisitingProfessor rdf:type owl:Class ;
985
986 rdfs:label "visiting professor" ;
987
988 rdfs:subClassOf :Professor .
989
990
991
992### http://swat.cse.lehigh.edu/onto/univ-bench.owl#Work
993
994:Work rdf:type owl:Class ;
995
996 rdfs:label "Work" .
997