-
Notifications
You must be signed in to change notification settings - Fork 20
/
university-manual-ssn.ttl
72 lines (51 loc) · 1.99 KB
/
university-manual-ssn.ttl
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
@prefix : <http://example.org/voc#> .
@prefix ex: <http://example.org/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
: a owl:Ontology .
#: owl:imports <http://xmlns.com/foaf/0.1/> .
# Classes
foaf:Person a owl:Class .
:FacultyMember rdfs:subClassOf foaf:Person .
:Teacher rdfs:subClassOf :FacultyMember .
:ExternalTeacher rdfs:subClassOf :Teacher .
:Researcher rdfs:subClassOf :FacultyMember .
:Student rdfs:subClassOf foaf:Person .
:UndergraduateStudent rdfs:subClassOf :Student .
:GraduateStudent rdfs:subClassOf :Student,
[ a owl:Restriction ;
owl:onProperty :isSupervisedBy ;
owl:someValuesFrom :Professor ] .
:PhDStudent rdfs:subClassOf :GraduateStudent, :Researcher .
:PostDoc rdfs:subClassOf :Researcher .
:Professor rdfs:subClassOf :Researcher, :Teacher .
:FullProfessor rdfs:subClassOf :Professor .
:AssociateProfessor rdfs:subClassOf :Professor .
:AssistantProfessor rdfs:subClassOf :Professor .
:Course a owl:Class ; owl:disjointWith foaf:Person .
:EducationalInstitution a owl:Class ; owl:disjointWith :Course, foaf:Person .
# Properties
foaf:firstName rdf:type owl:DatatypeProperty ;
rdfs:domain foaf:Person ;
rdfs:range rdfs:Literal .
foaf:lastName rdf:type owl:DatatypeProperty ;
rdfs:domain foaf:Person ;
rdfs:range rdfs:Literal .
:teaches a owl:ObjectProperty ;
rdfs:domain :Teacher ;
rdfs:range :Course .
:isTaughtBy owl:inverseOf :teaches .
:givesLecture rdfs:subPropertyOf :teaches .
:givesLab rdfs:subPropertyOf :teaches .
:attends a owl:ObjectProperty ;
rdfs:domain foaf:Person ;
rdfs:range :Course .
:title a owl:DatatypeProperty ;
rdfs:range xsd:string .
:isSupervisedBy a owl:ObjectProperty .
:isGivenAt a owl:ObjectProperty ;
rdfs:domain :Course ;
rdfs:range :EducationalInstitution .