jcramalho

Untitled

Feb 11th, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  2. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  3. @prefix h: <http://www.di.uminho.pt/~jcr/prc2019#> .
  4.  
  5. h:Curso a rdfs:Class .
  6.  
  7. h:Estudante
  8. a rdfs:Class ;
  9. rdfs:subClassOf h:Pessoa .
  10.  
  11. h:Parceiro
  12. a rdf:Property ;
  13. rdfs:domain h:Estudante ;
  14. rdfs:range h:Estudante .
  15.  
  16. h:Pessoa
  17. a rdfs:Class .
  18.  
  19. h:Professor
  20. a rdfs:Class ;
  21. rdfs:subClassOf h:Pessoa .
  22.  
  23. h:designacao
  24. a rdf:Property ;
  25. rdfs:domain h:Curso ;
  26. rdfs:range <http://www.w3.org/2001/XMLSchema#string> .
  27.  
  28. h:e-lecionado
  29. a rdf:Property ;
  30. rdfs:domain h:Curso ;
  31. rdfs:range h:Professor .
  32.  
  33. h:horario
  34. a rdf:Property ;
  35. rdfs:domain h:Curso .
  36.  
  37. h:idade
  38. a rdf:Property ;
  39. rdfs:domain h:Pessoa ;
  40. rdfs:range <http://www.w3.org/2001/XMLSchema#integer> .
  41.  
  42. h:linguaEstranjeira
  43. a rdf:Property ;
  44. rdfs:domain h:Pessoa .
  45.  
  46. h:local
  47. a rdf:Property ;
  48. rdfs:domain h:Pessoa> .
  49.  
  50. h:nome
  51. a rdf:Property ;
  52. rdfs:domain h:Pessoa ;
  53. rdfs:range <http://www.w3.org/2001/XMLSchema#string> .
  54.  
  55. h:temEstudante
  56. a rdf:Property ;
  57. rdfs:domain h:Curso ;
  58. rdfs:range h:Estudante .
  59.  
  60. <http://www.w3.org/2001/XMLSchema#integer>
  61. a rdfs:Datatype .
  62.  
  63. <http://www.w3.org/2001/XMLSchema#string>
  64. a rdfs:Datatype .
  65.  
  66. # ------------------------------------------------------------
  67.  
  68. h:Eduardo a h:Estudante;
  69. h:idade "21" .
  70.  
  71. h:curso_Alemão a h:Curso;
  72. h:horario "Sexta-feira" .
Advertisement
Add Comment
Please, Sign In to add comment