-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvocab.ttl
More file actions
123 lines (105 loc) · 4.64 KB
/
vocab.ttl
File metadata and controls
123 lines (105 loc) · 4.64 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
@prefix rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs:<http://www.w3.org/2000/01/rdf-schema#>.
@prefix vocab:<https://vucis.github.io/vocab.ttl#>.
@prefix xsd:<http://www.w3.org/2001/XMLSchema>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix dc: <http://purl.org/dc/elements/1.1/>.
vocab:Person a rdfs:Class;
rdfs:label "person"@en,
"persoon"@nl;
rdfs:comment "A human being regarded as an individual."@en,
"Een individueel menselijk wezen, vaak gezien als een drager van rechten en plichten."@nl;
rdfs:subClassOf foaf:Person.
vocab:name a rdf:Property;
rdfs:label "name"@en,
"naam"@nl;
rdfs:comment "A word or set of words by which a person or thing is known, addressed, or referred to."@en,
"Woord waarmee je zegt hoe iets of iemand heet."@nl;
rdfs:domain vocab:Person;
rdfs:range rdfs:Literal;
rdfs:subPropertyOf foaf:name.
vocab:knows a rdf:Property;
rdfs:label "knows"@en,
"kent"@nl;
rdfs:comment "To have a familiarity with someone; to know who someone is. Such familiarity can range from close friendship to having only met someone once."@en,
"Bekend zijn met een persoon, vaak omdat je diegene hebt ontmoet of persoonlijk contact hebt gehad."@nl;
rdfs:domain vocab:Person;
rdfs:range vocab:Person;
rdfs:subPropertyOf foaf:knows.
vocab:gender a rdf:Property;
rdfs:label "gender"@en,
"gender"@nl;
rdfs:comment "The male sex or the female sex, especially when considered with reference to social and cultural differences rather than biological ones, or one of a range of other identities that do not correspond to established ideas of male and female."@en,
"De kenmerken, eigenschappen, talenten en verwachtingen die we toekennen aan vrouwen en mannen. Je wordt geboren met een (on)bepaald geslacht, maar gender krijg je mee vanuit de samenleving waarin je geboren bent."@nl;
rdfs:domain vocab:Person;
rdfs:range rdfs:Literal;
rdfs:subPropertyOf foaf:gender.
vocab:studentOf a rdf:Property;
rdfs:label "student of"@en,
"student van"@nl;
rdfs:comment "Person who has taught this person."@en,
"Opleiding gekregen van."@nl;
rdfs:domain vocab:Person;
rdfs:range vocab:Person.
vocab:likes a rdf:Property;
rdfs:label "likes"@en,
"leuk vinden"@nl;
rdfs:comment "To enjoy or approve of something or someone."@en,
"Waardering, plezier of genegenheid voor iets of iemand hebben."@nl;
rdfs:domain vocab:Person;
rdfs:range rdfs:Literal;
rdfs:subPropertyOf foaf:topic_interest.
vocab:Student a rdfs:Class ;
rdfs:subClassOf vocab:Person ;
rdfs:label "Student"@en ;
rdfs:comment "A person who is a student (e.g., at a university)."@en.
vocab:Course a rdfs:Class ;
rdfs:label "Course"@en ;
rdfs:comment "An educational course offered by a university or institution."@en .
vocab:CourseParticipant a rdfs:Class ;
rdfs:subClassOf vocab:Student ;
rdfs:label "Course participant"@en ;
rdfs:comment "A student participating in a specific course."@en .
vocab:participantOf a rdf:Property ;
rdfs:label "participant of"@en ;
rdfs:comment "Relates a student to a course they participate in."@en ;
rdfs:domain vocab:CourseParticipant ;
rdfs:range vocab:Course .
vocab:courseName a rdf:Property ;
rdfs:label "course name"@en ;
rdfs:comment "The name of a course."@en ;
rdfs:domain vocab:Course ;
rdfs:range xsd:string .
vocab:Image a rdfs:Class;
rdfs:label "image"@en;
rdfs:comment "A visible impression obtained by a camera, telescope, microscope, or other device, or displayed on a computer or video screen."@en;
rdfs:subClassOf foaf:Image.
vocab:title a rdf:Property;
rdfs:label "title"@en;
rdfs:comment "The name of a book, composition, or other artistic work."@en;
rdfs:domain vocab:Image;
rdfs:range rdfs:Literal.
vocab:author a rdf:Property;
rdfs:label "author"@en;
rdfs:comment "The creator of a book, composition, or other artistic work."@en;
rdfs:domain vocab:Image;
rdfs:range rdfs:Literal;
rdfs:subPropertyOf foaf:maker.
vocab:depicts a rdf:Property;
rdfs:label "depicts"@en;
rdfs:comment "Represent by a drawing, painting, or other art form."@en;
rdfs:domain vocab:Image;
rdfs:range vocab:Person;
rdfs:subPropertyOf foaf:depicts.
vocab:location a rdf:Property;
rdfs:label "location"@en;
rdfs:comment "A particular place or position where an image was taken."@en;
rdfs:domain vocab:Image;
rdfs:range rdfs:Literal;
rdfs:subPropertyOf foaf:based_near.
vocab:description a rdf:Property;
rdfs:label "description"@en;
rdfs:comment "A statement or account giving the characteristics of someone or something : a descriptive statement or account"@en;
rdfs:domain vocab:Image;
rdfs:range rdfs:Literal;
rdfs:subPropertyOf dc:description.