-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathontology.json
More file actions
1173 lines (1173 loc) · 43.5 KB
/
ontology.json
File metadata and controls
1173 lines (1173 loc) · 43.5 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
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[ {
"@id" : "_:genid1",
"http://xmlns.com/foaf/0.1/mbox" : [ {
"@value" : "j.perezmar@posgrado.uimp.es"
} ],
"http://xmlns.com/foaf/0.1/name" : [ {
"@value" : "Jesús Pérez"
} ]
}, {
"@id" : "_:genid2",
"http://www.w3.org/2002/07/owl#cardinality" : [ {
"@type" : "http://www.w3.org/2001/XMLSchema#int",
"@value" : "2"
} ]
}, {
"@id" : "http://org.semanticweb.owlapi/error#Error2",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ]
}, {
"@id" : "http://purl.org/dc/terms/created",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "http://purl.org/dc/terms/creator",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "http://purl.org/dc/terms/license",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "http://purl.org/dc/terms/title",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup",
"@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ],
"http://purl.org/dc/terms/created" : [ {
"@type" : "http://www.w3.org/2001/XMLSchema#date",
"@value" : "2019-04-03"
} ],
"http://purl.org/dc/terms/creator" : [ {
"@id" : "_:genid2147483664"
} ],
"http://purl.org/dc/terms/license" : [ {
"@id" : "https://creativecommons.org/licenses/by/4.0/"
} ],
"http://purl.org/dc/terms/title" : [ {
"@language" : "es",
"@value" : "Ontología para la Educación Superior"
} ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Ontología que contiene los elementos más importantes del esquema de conocimiento referente al entorno de la educación superior"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Ontología para la Educación Superior"
} ],
"http://www.w3.org/2002/07/owl#versionInfo" : [ {
"@value" : "0.1"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#1_2_ciclo",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "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."
}, {
"@language" : "es",
"@value" : "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."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "1_2_ciclo"
}, {
"@language" : "en",
"@value" : "1_2_cycle"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Titulo"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Alumno",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "Agent enrolled in several subjects, who seeks to obtain the fixed competences of a particular degree."
}, {
"@language" : "es",
"@value" : "Agente inscrito en varias asignaturas, que busca obtener las competencias fijadas de un título en concreto"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Alumno"
}, {
"@language" : "en",
"@value" : "Student"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://xmlns.com/foaf/0.1/Person"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Asignatura",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "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."
}, {
"@language" : "es",
"@value" : "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."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Asignatura"
}, {
"@language" : "en",
"@value" : "Subject"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://xmlns.com/foaf/0.1/Group"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Competencia",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Habilidades y/o conocimientos que el título debe reflejar. Se imparten en una o varias asignaturas."
}, {
"@language" : "en",
"@value" : "Skills and/or knowledge that the title should attest. They are taught in one or several subjects."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Competencia"
}, {
"@language" : "en",
"@value" : "Competency"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://www.w3.org/2002/07/owl#Thing"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Coordinador",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Profesor que además tiene la obligación de asegurar el correcto funcionamiento de un determinado curso."
}, {
"@language" : "en",
"@value" : "Teacher who also has to ensure the proper functioning of a particular course."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Coordinador"
}, {
"@language" : "en",
"@value" : "Coordinator"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Profesor"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Curso",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "First temporal division of first and second cycle degrees. Corresponds to one year."
}, {
"@language" : "es",
"@value" : "Primera división temporal de los títulos de primer y segundo ciclo. Corresponde a un año."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Course"
}, {
"@language" : "es",
"@value" : "Curso"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://www.w3.org/2002/07/owl#Thing"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Director",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Profesor que además tiene la obligación de asegurar el correcto funcionamiento de la escuela."
}, {
"@language" : "en",
"@value" : "Teacher who also has to ensure the proper functioning of a school."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Director"
}, {
"@language" : "es",
"@value" : "Director"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Profesor"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Doctorado",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "Third cycle degree that has a special structure respect to the 1st and 2nd cycle, so it composes a different subclass."
}, {
"@language" : "es",
"@value" : "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"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Doctorado"
}, {
"@language" : "en",
"@value" : "Doctoral degree"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Titulo"
} ],
"http://www.w3.org/2002/07/owl#disjointWith" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#1_2_ciclo"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Escuela",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A place where a number of specific degrees are taught."
}, {
"@language" : "es",
"@value" : "Lugar donde se imparten una serie de títulos determinados."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Escuela"
}, {
"@language" : "en",
"@value" : "School"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://www.w3.org/ns/org#Organization"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Evaluacion",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A method or set of methods that ensures that the student has achieved the proposed competencies."
}, {
"@language" : "es",
"@value" : "Método o conjunto de métodos que permite asegurar que el alumno ha conseguido las competencias propuestas"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Evaluacion"
}, {
"@language" : "en",
"@value" : "Evaluation"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://www.w3.org/2002/07/owl#Thing"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Grado",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "First cycle degree, corresponds to the lowest educational step within higher education."
}, {
"@language" : "es",
"@value" : "Título de primer ciclo, corresponde a la formación más baja dentro de la educación superior."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Degree"
}, {
"@language" : "es",
"@value" : "Grado"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#1_2_ciclo"
} ],
"http://www.w3.org/2002/07/owl#disjointWith" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Master"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Master",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "Second cycle degree, with a duration shorter than that a Degree."
}, {
"@language" : "es",
"@value" : "Título de segundo ciclo, con duración inferior a la del Grado."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Bachelor's degree"
}, {
"@language" : "es",
"@value" : "Máster"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#1_2_ciclo"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Material",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "Any resource that is provided to the student to develop a series of fixed competences."
}, {
"@language" : "es",
"@value" : "Todo recurso que se le proporciona al alumno para que desarrolle una serie de competencias fijadas."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Didactic material"
}, {
"@language" : "es",
"@value" : "Material didáctico"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://www.w3.org/2002/07/owl#Thing"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Profesor",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "Agent in charge of providing educational material and evaluating students in one or more subjects."
}, {
"@language" : "es",
"@value" : "Agente encargado de proporcionar material educativo y evaluar a los alumnos de una o varias asignaturas."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Profesor"
}, {
"@language" : "en",
"@value" : "Teacher"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://xmlns.com/foaf/0.1/Person"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Semestre",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "Second temporal division of first and second cycle degrees. Each course corresponds to two semesters."
}, {
"@language" : "es",
"@value" : "Segunda división temporal de los títulos de primer y segundo ciclo. A cada curso le corresponde dos semestres."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Semester"
}, {
"@language" : "es",
"@value" : "Semestre"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://org.semanticweb.owlapi/error#Error2"
}, {
"@id" : "http://www.w3.org/2002/07/owl#Thing"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Tarea_investigacion",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Actividades a realizar a lo largo de un doctorado que están relacionadas con la tesis."
}, {
"@language" : "en",
"@value" : "Task to be carried out during a doctorate that are related to the thesis."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Research task"
}, {
"@language" : "es",
"@value" : "Tarea de investigacion"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://www.w3.org/2002/07/owl#Thing"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Tesis",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "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."
}, {
"@language" : "en",
"@value" : "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."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Tesis"
}, {
"@language" : "en",
"@value" : "Thesis"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://www.w3.org/2002/07/owl#Thing"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Titulo",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "Academic itinerary where a series of concepts are taught. If the evaluation of these concepts is positive, the student obtains the certificate of degree."
}, {
"@language" : "es",
"@value" : "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."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Certificate"
}, {
"@language" : "es",
"@value" : "Título"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://www.w3.org/2002/07/owl#Thing"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#Universidad",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Institución donde se imparten cada uno de los títulos de educación superior."
}, {
"@language" : "en",
"@value" : "Institution where each of the higher education degrees are taught."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Universidad"
}, {
"@language" : "en",
"@value" : "University"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "http://www.w3.org/ns/org#Organization"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#asignaturaEstudiadaPor",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona una asignatura con sus alumnos."
}, {
"@language" : "en",
"@value" : "Relates a subject to its students."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Asignatura"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Asignatura estudiada por"
}, {
"@language" : "en",
"@value" : "Subject learned by"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Alumno"
} ],
"http://www.w3.org/2002/07/owl#inverseOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#estudiaAsignatura"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#asignaturaImpartidaPor",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona una asignatura con un profesor."
}, {
"@language" : "en",
"@value" : "Relates a subject with a teacher."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Asignatura"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Asignatura impartida por"
}, {
"@language" : "en",
"@value" : "Subject teached by"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Profesor"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#competenciaEnAsignatura",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona una asignatura con una competencia."
}, {
"@language" : "en",
"@value" : "Relates a subject with a competence."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Competencia"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Competence in subject"
}, {
"@language" : "es",
"@value" : "Competencia en asignatura"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Asignatura"
} ],
"http://www.w3.org/2002/07/owl#inverseOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#tieneCompetencia"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#coordinaCurso",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona un coordinador con el curso que dirige."
}, {
"@language" : "en",
"@value" : "Relates a coordinator with their corresponding course."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Coordinador"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Coordina curso"
}, {
"@language" : "en",
"@value" : "Coordinates course"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Curso"
} ],
"http://www.w3.org/2002/07/owl#inverseOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#cursoCoordinado"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#cursoCoordinado",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona un curso con un coordinador."
}, {
"@language" : "en",
"@value" : "Relates a course with a coordinator."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Curso"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Coordinated course"
}, {
"@language" : "es",
"@value" : "Curso coordinado"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Coordinador"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#dirigeEscuela",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona un director con la escuela en la que ocupa dicho cargo."
}, {
"@language" : "en",
"@value" : "Relates a director with its school."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Director"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Dirige escuela"
}, {
"@language" : "en",
"@value" : "Heads up school"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Escuela"
} ],
"http://www.w3.org/2002/07/owl#inverseOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#escuelaDirigida"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#escuelaDirigida",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona una escuela con su director."
}, {
"@language" : "en",
"@value" : "Relates a school with its director."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Escuela"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Directed school"
}, {
"@language" : "es",
"@value" : "Escuela dirigida"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Director"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#estudiaAsignatura",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona un alumno con una de las asignaturas en las que está inscrito."
}, {
"@language" : "en",
"@value" : "Relates a student with a subject in which is enrolled."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Alumno"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Estudia asignatura"
}, {
"@language" : "en",
"@value" : "Learns subject"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Asignatura"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#evaluacionEnAsignatura",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona una asignatura con una instancia de método de evaluación."
}, {
"@language" : "en",
"@value" : "Relates a subject with an instance of evaluation method."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Evaluacion"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Evaluation method in subject"
}, {
"@language" : "es",
"@value" : "Sistema de evaluación en asignatura"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Asignatura"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#imparteAsignatura",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona un profesor con una asignatura en la que imparte clase."
}, {
"@language" : "en",
"@value" : "Relates a teacher with a subject in which teaches."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Profesor"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Imparte asignatura"
}, {
"@language" : "en",
"@value" : "Teaches subject"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Asignatura"
} ],
"http://www.w3.org/2002/07/owl#inverseOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#asignaturaImpartidaPor"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#impartidoEn",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona una escuela con un título."
}, {
"@language" : "en",
"@value" : "Relates a school with a certificate."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Titulo"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Impartido en"
}, {
"@language" : "en",
"@value" : "Teached in"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Escuela"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#materialEnAsignatura",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona una asignatura con una instancia de material didáctico."
}, {
"@language" : "en",
"@value" : "Relates a subject with an instance of didactic material."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Material"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Material en asignatura"
}, {
"@language" : "en",
"@value" : "Material in subject"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Asignatura"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#num_creditos",
"@type" : [ "http://www.w3.org/2002/07/owl#DatatypeProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Indica el número de créditos que tiene una asignatura."
}, {
"@language" : "en",
"@value" : "Number of credits that a subject has."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Asignatura"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Number of credits"
}, {
"@language" : "es",
"@value" : "Numero de créditos"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "http://www.w3.org/2001/XMLSchema#double"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#perteneceACurso",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona un curso con un semestre específico."
}, {
"@language" : "en",
"@value" : "Relates course with a specific semester."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Semestre"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Belongs to course"
}, {
"@language" : "es",
"@value" : "Pertenece a curso"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Curso"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#perteneceADoctorado",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona un programa de doctorado con su tesis."
}, {
"@language" : "en",
"@value" : "Relates a doctorate program with its thesis."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Tesis"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Belongs to doctorate"
}, {
"@language" : "es",
"@value" : "Pertenece a doctorado"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Doctorado"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#perteneceASemestre",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona un semestre con uns asignatura."
}, {
"@language" : "en",
"@value" : "Relates a semester with a subject."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Asignatura"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Belongs to semester"
}, {
"@language" : "es",
"@value" : "Pertenece a semestre"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Semestre"
} ],
"http://www.w3.org/2002/07/owl#inverseOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#tieneAsignatura"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#perteneceATitulo",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona un título con un curso."
}, {
"@language" : "en",
"@value" : "Relates a course with a certificate."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Curso"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Belongs to certificate"
}, {
"@language" : "es",
"@value" : "Pertenece a título"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Titulo"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#perteneceAUniversidad",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona una Universidad con una escuela determinada."
}, {
"@language" : "en",
"@value" : "Relates a University with a certain school."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Escuela"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Belongs to University"
}, {
"@language" : "es",
"@value" : "PerteneceAUniversidad"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Universidad"
} ],
"http://www.w3.org/2002/07/owl#inverseOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#tieneEscuela"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#tareaEnDoctorado",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona un programa de doctorado con una instancia de tarea de investigación."
}, {
"@language" : "en",
"@value" : "Relates a doctorate program with an instance of research task."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Tarea_investigacion"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "es",
"@value" : "Tarea en doctorado"
}, {
"@language" : "en",
"@value" : "Task in doctorate"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Doctorado"
} ],
"http://www.w3.org/2002/07/owl#inverseOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#tieneTareaInvestigacion"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#tieneAsignatura",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona una asignatura con un semestre que la contiene."
}, {
"@language" : "en",
"@value" : "Relates a subject with its semester."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Semestre"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Has subject"
}, {
"@language" : "es",
"@value" : "Tiene asignatura"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Asignatura"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#tieneCompetencia",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona una competencia determinada con una asignatura."
}, {
"@language" : "en",
"@value" : "Relates a competence with a subject."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Asignatura"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Has competence"
}, {
"@language" : "es",
"@value" : "Tiene competencia"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Competencia"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#tieneCurso",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona cada curso con el título al que pertenece."
}, {
"@language" : "en",
"@value" : "Relates a course with their corresponding certificate."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Titulo"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Has course"
}, {
"@language" : "es",
"@value" : "Tiene curso"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Curso"
} ],
"http://www.w3.org/2002/07/owl#inverseOf" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#perteneceATitulo"
} ]
}, {
"@id" : "https://github.com/Xachap/EdSup/edsup#tieneEscuela",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "es",
"@value" : "Relaciona una escuela con la Universidad a la que pertenece."
}, {
"@language" : "en",
"@value" : "Relates a school with the University that it belongs."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Universidad"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Has school"
}, {
"@language" : "es",
"@value" : "Tiene escuela"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "https://github.com/Xachap/EdSup/edsup#Escuela"