-
Notifications
You must be signed in to change notification settings - Fork 0
/
edsup
519 lines (467 loc) · 34.7 KB
/
edsup
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
<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/">
<owl:Ontology rdf:about="https://github.com/Xachap/EdSup/edsup">
<owl:versionInfo>0.1</owl:versionInfo>
<rdfs:label xml:lang="es">Ontología para la Educación Superior</rdfs:label>
<rdfs:comment xml:lang="es">Ontología que contiene los elementos más importantes del esquema de conocimiento referente al entorno de la educación superior</rdfs:comment>
<dc:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-03</dc:created>
<dc:title xml:lang="es">Ontología para la Educación Superior</dc:title>
<dc:creator>
<rdf:Description>
<foaf:mbox>j.perezmar@posgrado.uimp.es</foaf:mbox>
<foaf:name>Jesús Pérez</foaf:name>
</rdf:Description>
</dc:creator>
<dc:license rdf:resource="https://creativecommons.org/licenses/by/4.0/"/>
</owl:Ontology>
<owl:DatatypeProperty rdf:about="https://github.com/Xachap/EdSup/edsup#num_creditos">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:label xml:lang="en">Number of credits</rdfs:label>
<rdfs:label xml:lang="es">Numero de créditos</rdfs:label>
<rdfs:comment xml:lang="en">Number of credits that a subject has.</rdfs:comment>
<rdfs:comment xml:lang="es">Indica el número de créditos que tiene una asignatura.</rdfs:comment>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#coordinaCurso">
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#cursoCoordinado">
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#coordinaCurso"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Coordinador"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Curso"/>
<rdfs:label xml:lang="en">Coordinated course</rdfs:label>
<rdfs:label xml:lang="es">Curso coordinado</rdfs:label>
<rdfs:comment xml:lang="en">Relates a course with a coordinator.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona un curso con un coordinador.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Coordinador"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Curso"/>
<rdfs:label xml:lang="en">Coordinates course</rdfs:label>
<rdfs:label xml:lang="es">Coordina curso</rdfs:label>
<rdfs:comment xml:lang="en">Relates a coordinator with their corresponding course.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona un coordinador con el curso que dirige.</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Coordinador">
<rdfs:label xml:lang="es">Coordinador</rdfs:label>
<rdfs:label xml:lang="en">Coordinator</rdfs:label>
<rdfs:subClassOf rdf:resource="https://github.com/Xachap/EdSup/edsup#Profesor"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Curso"/>
<rdfs:comment xml:lang="en">Teacher who also has to ensure the proper functioning of a particular course.</rdfs:comment>
<rdfs:comment xml:lang="es">Profesor que además tiene la obligación de asegurar el correcto funcionamiento de un determinado curso.</rdfs:comment>
</owl:Class>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#dirigeEscuela">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Director"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Escuela"/>
<owl:equivalentProperty rdf:resource="http://www.w3.org/ns/org#headOf"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#escuelaDirigida">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Director"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Escuela"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#dirigeEscuela"/>
<rdfs:label xml:lang="en">Directed school</rdfs:label>
<rdfs:label xml:lang="es">Escuela dirigida</rdfs:label>
<rdfs:comment xml:lang="en">Relates a school with its director.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una escuela con su director.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<rdfs:label xml:lang="en">Heads up school</rdfs:label>
<rdfs:label xml:lang="es">Dirige escuela</rdfs:label>
<rdfs:comment xml:lang="en">Relates a director with its school.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona un director con la escuela en la que ocupa dicho cargo.</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Director">
<rdfs:label xml:lang="es">Director</rdfs:label>
<rdfs:label xml:lang="en">Director</rdfs:label>
<rdfs:subClassOf rdf:resource="https://github.com/Xachap/EdSup/edsup#Profesor"/>
<owl:hasValue rdf:resource="https://github.com/Xachap/EdSup/edsup#Escuela"/>
<rdfs:comment xml:lang="en">Teacher who also has to ensure the proper functioning of a school.</rdfs:comment>
<rdfs:comment xml:lang="es">Profesor que además tiene la obligación de asegurar el correcto funcionamiento de la escuela.</rdfs:comment>
</owl:Class>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#estudiaAsignatura">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Alumno"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#asignaturaEstudiadaPor">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Alumno"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#estudiaAsignatura"/>
<rdfs:label xml:lang="en">Subject learned by</rdfs:label>
<rdfs:label xml:lang="es">Asignatura estudiada por</rdfs:label>
<rdfs:comment xml:lang="en">Relates a subject to its students.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una asignatura con sus alumnos.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<owl:equivalentProperty rdf:resource="http://xmlns.com/foaf/0.1/member"/>
<rdfs:label xml:lang="en">Learns subject</rdfs:label>
<rdfs:label xml:lang="es">Estudia asignatura</rdfs:label>
<rdfs:comment xml:lang="en">Relates a student with a subject in which is enrolled.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona un alumno con una de las asignaturas en las que está inscrito.</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Alumno">
<rdfs:label xml:lang="es">Alumno</rdfs:label>
<rdfs:label xml:lang="en">Student</rdfs:label>
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:comment xml:lang="en">Agent enrolled in several subjects, who seeks to obtain the fixed competences of a particular degree.</rdfs:comment>
<rdfs:comment xml:lang="es">Agente inscrito en varias asignaturas, que busca obtener las competencias fijadas de un título en concreto</rdfs:comment>
</owl:Class>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#imparteAsignatura">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Profesor"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#asignaturaImpartidaPor">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Profesor"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#imparteAsignatura"/>
<rdfs:label xml:lang="en">Subject teached by</rdfs:label>
<rdfs:label xml:lang="es">Asignatura impartida por</rdfs:label>
<rdfs:comment xml:lang="en">Relates a subject with a teacher.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una asignatura con un profesor.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<owl:equivalentProperty rdf:resource="http://xmlns.com/foaf/0.1/member"/>
<rdfs:label xml:lang="en">Teaches subject</rdfs:label>
<rdfs:label xml:lang="es">Imparte asignatura</rdfs:label>
<rdfs:comment xml:lang="en">Relates a teacher with a subject in which teaches.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona un profesor con una asignatura en la que imparte clase.</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#tieneAsignatura">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Semestre"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#perteneceASemestre">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Semestre"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#tieneAsignatura"/>
<rdfs:label xml:lang="en">Belongs to semester</rdfs:label>
<rdfs:label xml:lang="es">Pertenece a semestre</rdfs:label>
<rdfs:comment xml:lang="en">Relates a semester with a subject.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona un semestre con uns asignatura.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<rdfs:label xml:lang="en">Has subject</rdfs:label>
<rdfs:label xml:lang="es">Tiene asignatura</rdfs:label>
<rdfs:comment xml:lang="en">Relates a subject with its semester.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una asignatura con un semestre que la contiene.</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#tieneCompetencia">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Competencia"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#competenciaEnAsignatura">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Competencia"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#tieneCompetencia"/>
<rdfs:label xml:lang="es">Competencia en asignatura</rdfs:label>
<rdfs:label xml:lang="en">Competence in subject</rdfs:label>
<rdfs:comment xml:lang="en">Relates a subject with a competence.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una asignatura con una competencia.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<rdfs:label xml:lang="es">Tiene competencia</rdfs:label>
<rdfs:label xml:lang="en">Has competence</rdfs:label>
<rdfs:comment xml:lang="en">Relates a competence with a subject.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una competencia determinada con una asignatura.</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Competencia">
<rdfs:label xml:lang="es">Competencia</rdfs:label>
<rdfs:label xml:lang="en">Competency</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:comment xml:lang="en">Skills and/or knowledge that the title should attest. They are taught in one or several subjects.</rdfs:comment>
<rdfs:comment xml:lang="es">Habilidades y/o conocimientos que el título debe reflejar. Se imparten en una o varias asignaturas.</rdfs:comment>
</owl:Class>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#tieneCurso">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Curso"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Titulo"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#perteneceATitulo">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Curso"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Titulo"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#tieneCurso"/>
<rdfs:label xml:lang="en">Belongs to certificate</rdfs:label>
<rdfs:label xml:lang="es">Pertenece a título</rdfs:label>
<rdfs:comment xml:lang="en">Relates a course with a certificate.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona un título con un curso.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<rdfs:label xml:lang="en">Has course</rdfs:label>
<rdfs:label xml:lang="es">Tiene curso</rdfs:label>
<rdfs:comment xml:lang="en">Relates a course with their corresponding certificate.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona cada curso con el título al que pertenece.</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#tieneEscuela">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Escuela"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Universidad"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#perteneceAUniversidad">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Escuela"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Universidad"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#tieneEscuela"/>
<rdfs:label xml:lang="en">Belongs to University</rdfs:label>
<rdfs:label xml:lang="es">PerteneceAUniversidad</rdfs:label>
<rdfs:comment xml:lang="en">Relates a University with a certain school.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una Universidad con una escuela determinada.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<owl:equivalentProperty rdf:resource="http://www.w3.org/ns/org#subOrganizationOf"/>
<rdfs:label xml:lang="en">Has school</rdfs:label>
<rdfs:label xml:lang="es">Tiene escuela</rdfs:label>
<rdfs:comment xml:lang="en">Relates a school with the University that it belongs.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una escuela con la Universidad a la que pertenece.</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Universidad">
<rdfs:label xml:lang="es">Universidad</rdfs:label>
<rdfs:label xml:lang="en">University</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#Organization"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Escuela"/>
<rdfs:comment xml:lang="en">Institution where each of the higher education degrees are taught.</rdfs:comment>
<rdfs:comment xml:lang="es">Institución donde se imparten cada uno de los títulos de educación superior.</rdfs:comment>
</owl:Class>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#tieneMaterial">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Material"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#materialEnAsignatura">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Material"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#tieneMaterial"/>
<rdfs:label xml:lang="en">Material in subject</rdfs:label>
<rdfs:label xml:lang="es">Material en asignatura</rdfs:label>
<rdfs:comment xml:lang="en">Relates a subject with an instance of didactic material.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una asignatura con una instancia de material didáctico.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<rdfs:label xml:lang="en">Has material</rdfs:label>
<rdfs:label xml:lang="es">Tiene material</rdfs:label>
<rdfs:comment xml:lang="en">Relates an instance of didactic material with a certain subject.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una instancia de material didáctico con la asignatura en la que se usa.</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Material">
<rdfs:label xml:lang="es">Material didáctico</rdfs:label>
<rdfs:label xml:lang="en">Didactic material</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:comment xml:lang="en">Any resource that is provided to the student to develop a series of fixed competences.</rdfs:comment>
<rdfs:comment xml:lang="es">Todo recurso que se le proporciona al alumno para que desarrolle una serie de competencias fijadas.</rdfs:comment>
</owl:Class>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#tieneSemestre">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Semestre"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Curso"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#perteneceACurso">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Semestre"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Curso"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#tieneSemestre"/>
<rdfs:label xml:lang="en">Belongs to course</rdfs:label>
<rdfs:label xml:lang="es">Pertenece a curso</rdfs:label>
<rdfs:comment xml:lang="en">Relates course with a specific semester.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona un curso con un semestre específico.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<rdfs:label xml:lang="en">Has semester</rdfs:label>
<rdfs:label xml:lang="es">Tiene semestre</rdfs:label>
<rdfs:comment xml:lang="en">Relates a specific semester with a certain course.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona un semestre con el curso al que pertenece.</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#tieneSistemaEvaluacion">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Evaluacion"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#evaluacionEnAsignatura">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Evaluacion"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#tieneSistemaEvaluacion"/>
<rdfs:label xml:lang="en">Evaluation method in subject</rdfs:label>
<rdfs:label xml:lang="es">Sistema de evaluación en asignatura</rdfs:label>
<rdfs:comment xml:lang="en">Relates a subject with an instance of evaluation method.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una asignatura con una instancia de método de evaluación.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<rdfs:label xml:lang="en">Has evaluation method</rdfs:label>
<rdfs:label xml:lang="es">Tiene sistema de evaluación</rdfs:label>
<rdfs:comment xml:lang="en">Relates an instance of evaluation method with the subject in which it is used.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una instancia de método de evaluación con la asignatura en la que se utiliza.</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Evaluacion">
<rdfs:label xml:lang="es">Evaluacion</rdfs:label>
<rdfs:label xml:lang="en">Evaluation</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:comment xml:lang="en">A method or set of methods that ensures that the student has achieved the proposed competencies.</rdfs:comment>
<rdfs:comment xml:lang="es">Método o conjunto de métodos que permite asegurar que el alumno ha conseguido las competencias propuestas</rdfs:comment>
</owl:Class>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#tieneTareaInvestigacion">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Doctorado"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Tarea_investigacion"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#tareaEnDoctorado">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Doctorado"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Tarea_investigacion"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#tieneTareaInvestigacion"/>
<rdfs:label xml:lang="en">Task in doctorate</rdfs:label>
<rdfs:label xml:lang="es">Tarea en doctorado</rdfs:label>
<rdfs:comment xml:lang="en">Relates a doctorate program with an instance of research task.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona un programa de doctorado con una instancia de tarea de investigación.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<rdfs:label xml:lang="en">Has research task</rdfs:label>
<rdfs:label xml:lang="es">Tiene tarea de investigación</rdfs:label>
<rdfs:comment xml:lang="en">Relates an instance of research task with the doctorate program in which is being performed.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una instancia de tarea de investigación con el doctorado en el que se desarrolla.</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Tarea_investigacion">
<rdfs:label xml:lang="es">Tarea de investigacion</rdfs:label>
<rdfs:label xml:lang="en">Research task</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:comment xml:lang="en">Task to be carried out during a doctorate that are related to the thesis.</rdfs:comment>
<rdfs:comment xml:lang="es">Actividades a realizar a lo largo de un doctorado que están relacionadas con la tesis.</rdfs:comment>
</owl:Class>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#tieneTesis">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Doctorado"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Tesis"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#perteneceADoctorado">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Doctorado"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Tesis"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#tieneTesis"/>
<rdfs:label xml:lang="en">Belongs to doctorate</rdfs:label>
<rdfs:label xml:lang="es">Pertenece a doctorado</rdfs:label>
<rdfs:comment xml:lang="en">Relates a doctorate program with its thesis.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona un programa de doctorado con su tesis.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<rdfs:label xml:lang="en">Has Thesis</rdfs:label>
<rdfs:label xml:lang="es">Tiene Tesis</rdfs:label>
<rdfs:comment xml:lang="en">Relates a thesis with a doctorate program.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una tesis con un programa de doctorado al que pertenece.</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Tesis">
<rdfs:label xml:lang="es">Tesis</rdfs:label>
<rdfs:label xml:lang="en">Thesis</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:comment xml:lang="en">Work carried out during a doctorate, in which a research is carried out on a specific subject in order to draw conclusions and useful results.</rdfs:comment>
<rdfs:comment xml:lang="es">Trabajo que se realiza a lo largo de un doctorado, en el que se investiga sobre un tema en concreto para sacar conclusiones y resultados de utilidad.</rdfs:comment>
</owl:Class>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#tieneTitulo">
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Escuela"/>
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Titulo"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:about="https://github.com/Xachap/EdSup/edsup#impartidoEn">
<rdfs:range rdf:resource="https://github.com/Xachap/EdSup/edsup#Escuela"/>
<rdfs:domain rdf:resource="https://github.com/Xachap/EdSup/edsup#Titulo"/>
<owl:inverseOf rdf:resource="https://github.com/Xachap/EdSup/edsup#tieneTitulo"/>
<rdfs:label xml:lang="en">Teached in</rdfs:label>
<rdfs:label xml:lang="es">Impartido en</rdfs:label>
<rdfs:comment xml:lang="en">Relates a school with a certificate.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona una escuela con un título.</rdfs:comment>
</owl:ObjectProperty>
</owl:inverseOf>
<rdfs:label xml:lang="en">Has degree</rdfs:label>
<rdfs:label xml:lang="es">Tiene Título</rdfs:label>
<rdfs:comment xml:lang="en">Relates a degree with a school in which is carried out.</rdfs:comment>
<rdfs:comment xml:lang="es">Relaciona un título con la escuela en la que se imparte.</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#1_2_ciclo">
<rdfs:label xml:lang="es">1_2_ciclo</rdfs:label>
<rdfs:label xml:lang="en">1_2_cycle</rdfs:label>
<rdfs:subClassOf rdf:resource="https://github.com/Xachap/EdSup/edsup#Titulo"/>
<owl:disjointWith rdf:resource="https://github.com/Xachap/EdSup/edsup#Doctorado"/>
<rdfs:comment xml:lang="en">Bachelor's and Master's degrees (subclass). They have in common their structure, since both are composed of a series of subjects encapsulated in courses and semesters.</rdfs:comment>
<rdfs:comment xml:lang="es">Títulos de grado y máster (subclase). Tienen en común su estructura, ya que ambos se componen de una serie de asignaturas encapsuladas en cursos y semestres.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Asignatura">
<rdfs:label xml:lang="es">Asignatura</rdfs:label>
<rdfs:label xml:lang="en">Subject</rdfs:label>
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Group"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Competencia"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Material"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Evaluacion"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Alumno"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Profesor"/>
<owl:hasValue rdf:resource="https://github.com/Xachap/EdSup/edsup#num_creditos"/>
<owl:hasValue rdf:resource="https://github.com/Xachap/EdSup/edsup#Semestre"/>
<rdfs:comment xml:lang="en">Part of a semester, where a set of knowledge, that come specified in the competences, is teached. They use two different type of resources: didactic material and evaluation methods. Their duration is fixed by the number of credits.</rdfs:comment>
<rdfs:comment xml:lang="es">Parte de un semestre, donde se imparten una serie de conocimientos que vienen especificados en las competencias. Usan dos recursos bien diferenciados que son el material educativo y los sistemas de evaluación. Su duración viene fijada por el número de créditos.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Curso">
<rdfs:label xml:lang="es">Curso</rdfs:label>
<rdfs:label xml:lang="en">Course</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Coordinador"/>
<owl:hasValue rdf:resource="https://github.com/Xachap/EdSup/edsup#Titulo"/>
<rdfs:comment xml:lang="en">First temporal division of first and second cycle degrees. Corresponds to one year.</rdfs:comment>
<rdfs:comment xml:lang="es">Primera división temporal de los títulos de primer y segundo ciclo. Corresponde a un año.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Doctorado">
<rdfs:label xml:lang="es">Doctorado</rdfs:label>
<rdfs:label xml:lang="en">Doctoral degree</rdfs:label>
<rdfs:subClassOf rdf:resource="https://github.com/Xachap/EdSup/edsup#Titulo"/>
<owl:disjointWith rdf:resource="https://github.com/Xachap/EdSup/edsup#1_2_ciclo"/>
<rdfs:comment xml:lang="en">Third cycle degree that has a special structure respect to the 1st and 2nd cycle, so it composes a different subclass.</rdfs:comment>
<rdfs:comment xml:lang="es">Título de tercer ciclo que tiene una estructura especial respecto a los de 1º y 2º ciclo, por lo que compone otra subclase diferente</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Escuela">
<rdfs:label xml:lang="es">Escuela</rdfs:label>
<rdfs:label xml:lang="en">School</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#Organization"/>
<owl:hasValue rdf:resource="https://github.com/Xachap/EdSup/edsup#Universidad"/>
<owl:hasValue rdf:resource="https://github.com/Xachap/EdSup/edsup#Director"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Titulo"/>
<rdfs:comment xml:lang="en">A place where a number of specific degrees are taught.</rdfs:comment>
<rdfs:comment xml:lang="es">Lugar donde se imparten una serie de títulos determinados.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Grado">
<rdfs:label xml:lang="es">Grado</rdfs:label>
<rdfs:label xml:lang="en">Degree</rdfs:label>
<rdfs:subClassOf rdf:resource="https://github.com/Xachap/EdSup/edsup#1_2_ciclo"/>
<owl:disjointWith>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Master">
<rdfs:label xml:lang="es">Máster</rdfs:label>
<rdfs:label xml:lang="en">Bachelor's degree</rdfs:label>
<rdfs:subClassOf rdf:resource="https://github.com/Xachap/EdSup/edsup#1_2_ciclo"/>
<owl:disjointWith rdf:resource="https://github.com/Xachap/EdSup/edsup#Grado"/>
<rdfs:comment xml:lang="en">Second cycle degree, with a duration shorter than that a Degree.</rdfs:comment>
<rdfs:comment xml:lang="es">Título de segundo ciclo, con duración inferior a la del Grado.</rdfs:comment>
</owl:Class>
</owl:disjointWith>
<rdfs:comment xml:lang="en">First cycle degree, corresponds to the lowest educational step within higher education.</rdfs:comment>
<rdfs:comment xml:lang="es">Título de primer ciclo, corresponde a la formación más baja dentro de la educación superior.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Profesor">
<rdfs:label xml:lang="es">Profesor</rdfs:label>
<rdfs:label xml:lang="en">Teacher</rdfs:label>
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<rdfs:comment xml:lang="en">Agent in charge of providing educational material and evaluating students in one or more subjects.</rdfs:comment>
<rdfs:comment xml:lang="es">Agente encargado de proporcionar material educativo y evaluar a los alumnos de una o varias asignaturas.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Semestre">
<rdfs:label xml:lang="es">Semestre</rdfs:label>
<rdfs:label xml:lang="en">Semester</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://github.com/Xachap/EdSup/edsup#Semestre"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Asignatura"/>
<owl:hasValue rdf:resource="https://github.com/Xachap/EdSup/edsup#Curso"/>
<rdfs:comment xml:lang="en">Second temporal division of first and second cycle degrees. Each course corresponds to two semesters.</rdfs:comment>
<rdfs:comment xml:lang="es">Segunda división temporal de los títulos de primer y segundo ciclo. A cada curso le corresponde dos semestres.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="https://github.com/Xachap/EdSup/edsup#Titulo">
<rdfs:label xml:lang="es">Título</rdfs:label>
<rdfs:label xml:lang="en">Certificate</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Curso"/>
<owl:someValuesFrom rdf:resource="https://github.com/Xachap/EdSup/edsup#Escuela"/>
<rdfs:comment xml:lang="en">Academic itinerary where a series of concepts are taught. If the evaluation of these concepts is positive, the student obtains the certificate of degree.</rdfs:comment>
<rdfs:comment xml:lang="es">Itinerario académico donde se imparten una serie de conceptos. Si la evaluación de estos conceptos es positiva, el alumno obtiene el certificado de título.</rdfs:comment>
</owl:Class>
</rdf:RDF>