jcramalho

Untitled

May 20th, 2019
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.39 KB | None | 0 0
  1. @prefix : <http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#> .
  2. @prefix owl: <http://www.w3.org/2002/07/owl#> .
  3. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  4. @prefix xml: <http://www.w3.org/XML/1998/namespace> .
  5. @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
  6. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  7. @base <http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage> .
  8.  
  9. <http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage> rdf:type owl:Ontology ;
  10. rdfs:comment "Um ontologia sobre a minha família" .
  11.  
  12. #################################################################
  13. # Object Properties
  14. #################################################################
  15.  
  16. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#eAntepassadoDe
  17. :eAntepassadoDe rdf:type owl:ObjectProperty ;
  18. rdfs:subPropertyOf :temRelacaoSangue ;
  19. owl:inverseOf :temAntepassado .
  20.  
  21.  
  22. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#eAvoFDe
  23. :eAvoFDe rdf:type owl:ObjectProperty ;
  24. rdfs:subPropertyOf :eProgenitorGrau2De ;
  25. owl:inverseOf :temAvoF .
  26.  
  27.  
  28. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#eAvoMDe
  29. :eAvoMDe rdf:type owl:ObjectProperty ;
  30. rdfs:subPropertyOf :eProgenitorGrau2De ;
  31. owl:inverseOf :temAvoM .
  32.  
  33.  
  34. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#eMaeDe
  35. :eMaeDe rdf:type owl:ObjectProperty ;
  36. rdfs:subPropertyOf :eProgenitorDe ;
  37. owl:inverseOf :temMae .
  38.  
  39.  
  40. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#ePaiDe
  41. :ePaiDe rdf:type owl:ObjectProperty ;
  42. rdfs:subPropertyOf :eProgenitorDe ;
  43. owl:inverseOf :temPai .
  44.  
  45.  
  46. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#eProgenitorDe
  47. :eProgenitorDe rdf:type owl:ObjectProperty ;
  48. rdfs:subPropertyOf :eAntepassadoDe ;
  49. owl:inverseOf :temProgenitor .
  50.  
  51.  
  52. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#eProgenitorGrau2De
  53. :eProgenitorGrau2De rdf:type owl:ObjectProperty ;
  54. rdfs:subPropertyOf :eAntepassadoDe ;
  55. owl:inverseOf :temProgenitorGrau2 .
  56.  
  57.  
  58. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temAntepassado
  59. :temAntepassado rdf:type owl:ObjectProperty ;
  60. rdfs:subPropertyOf :temRelacaoSangue ;
  61. rdf:type owl:TransitiveProperty .
  62.  
  63.  
  64. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temAvoF
  65. :temAvoF rdf:type owl:ObjectProperty ;
  66. rdfs:subPropertyOf :temProgenitorGrau2 ;
  67. rdfs:domain :Pessoa ;
  68. rdfs:range :Mulher ;
  69. owl:propertyChainAxiom ( :temProgenitor
  70. :temMae
  71. ) .
  72.  
  73.  
  74. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temAvoM
  75. :temAvoM rdf:type owl:ObjectProperty ;
  76. rdfs:subPropertyOf :temProgenitorGrau2 ;
  77. rdfs:domain :Pessoa ;
  78. rdfs:range :Homem ;
  79. owl:propertyChainAxiom ( :temProgenitor
  80. :temPai
  81. ) .
  82.  
  83.  
  84. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temMae
  85. :temMae rdf:type owl:ObjectProperty ;
  86. rdfs:subPropertyOf :temProgenitor ;
  87. rdfs:domain :Pessoa ;
  88. rdfs:range :Mulher .
  89.  
  90.  
  91. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temPai
  92. :temPai rdf:type owl:ObjectProperty ;
  93. rdfs:subPropertyOf :temProgenitor ;
  94. rdfs:domain :Pessoa ;
  95. rdfs:range :Homem .
  96.  
  97.  
  98. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temProgenitor
  99. :temProgenitor rdf:type owl:ObjectProperty ;
  100. rdfs:subPropertyOf :temAntepassado ;
  101. rdfs:domain :Pessoa ;
  102. rdfs:range :Pessoa .
  103.  
  104.  
  105. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temProgenitorGrau2
  106. :temProgenitorGrau2 rdf:type owl:ObjectProperty ;
  107. rdfs:subPropertyOf :temAntepassado ;
  108. rdfs:domain :Pessoa ;
  109. rdfs:range :Pessoa ;
  110. owl:propertyChainAxiom ( :temProgenitor
  111. :temProgenitor
  112. ) .
  113.  
  114.  
  115. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temRelacao
  116. :temRelacao rdf:type owl:ObjectProperty .
  117.  
  118.  
  119. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temRelacaoSangue
  120. :temRelacaoSangue rdf:type owl:ObjectProperty ;
  121. rdfs:subPropertyOf :temRelacao ;
  122. rdf:type owl:SymmetricProperty ;
  123. rdfs:domain :Pessoa ;
  124. rdfs:range :Pessoa .
  125.  
  126.  
  127. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temSexo
  128. :temSexo rdf:type owl:ObjectProperty ,
  129. owl:FunctionalProperty ;
  130. rdfs:domain :Pessoa ;
  131. rdfs:range :Sexo .
  132.  
  133.  
  134. #################################################################
  135. # Data properties
  136. #################################################################
  137.  
  138. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temAnoEvento
  139. :temAnoEvento rdf:type owl:DatatypeProperty ;
  140. rdfs:domain :Pessoa ;
  141. rdfs:range xsd:int .
  142.  
  143.  
  144. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temAnoNasc
  145. :temAnoNasc rdf:type owl:DatatypeProperty ;
  146. rdfs:subPropertyOf :temAnoEvento .
  147.  
  148.  
  149. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#temAnoObito
  150. :temAnoObito rdf:type owl:DatatypeProperty ;
  151. rdfs:subPropertyOf :temAnoEvento .
  152.  
  153.  
  154. #################################################################
  155. # Classes
  156. #################################################################
  157.  
  158. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Antepassado
  159. :Antepassado rdf:type owl:Class ;
  160. owl:equivalentClass [ owl:intersectionOf ( :Pessoa
  161. [ rdf:type owl:Restriction ;
  162. owl:onProperty :eAntepassadoDe ;
  163. owl:someValuesFrom :Pessoa
  164. ]
  165. ) ;
  166. rdf:type owl:Class
  167. ] .
  168.  
  169.  
  170. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#AntepassadoFem
  171. :AntepassadoFem rdf:type owl:Class ;
  172. owl:equivalentClass [ owl:intersectionOf ( :Antepassado
  173. :Mulher
  174. ) ;
  175. rdf:type owl:Class
  176. ] .
  177.  
  178.  
  179. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#AntepassadoMasc
  180. :AntepassadoMasc rdf:type owl:Class ;
  181. owl:equivalentClass [ owl:intersectionOf ( :Antepassado
  182. :Homem
  183. ) ;
  184. rdf:type owl:Class
  185. ] .
  186.  
  187.  
  188. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Descendente
  189. :Descendente rdf:type owl:Class ;
  190. owl:equivalentClass [ owl:intersectionOf ( :Pessoa
  191. [ rdf:type owl:Restriction ;
  192. owl:onProperty :temAntepassado ;
  193. owl:someValuesFrom :Pessoa
  194. ]
  195. ) ;
  196. rdf:type owl:Class
  197. ] .
  198.  
  199.  
  200. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#DescendenteHomem
  201. :DescendenteHomem rdf:type owl:Class ;
  202. owl:equivalentClass [ owl:intersectionOf ( :Descendente
  203. :Homem
  204. ) ;
  205. rdf:type owl:Class
  206. ] .
  207.  
  208.  
  209. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#DescendenteMulher
  210. :DescendenteMulher rdf:type owl:Class ;
  211. owl:equivalentClass [ owl:intersectionOf ( :Descendente
  212. :Mulher
  213. ) ;
  214. rdf:type owl:Class
  215. ] .
  216.  
  217.  
  218. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#DominioFamiliar
  219. :DominioFamiliar rdf:type owl:Class .
  220.  
  221.  
  222. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Feminino
  223. :Feminino rdf:type owl:Class ;
  224. rdfs:subClassOf :Sexo ;
  225. owl:disjointWith :Masculino .
  226.  
  227.  
  228. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Homem
  229. :Homem rdf:type owl:Class ;
  230. owl:equivalentClass [ owl:intersectionOf ( :Pessoa
  231. [ rdf:type owl:Restriction ;
  232. owl:onProperty :temSexo ;
  233. owl:someValuesFrom :Masculino
  234. ]
  235. ) ;
  236. rdf:type owl:Class
  237. ] .
  238.  
  239.  
  240. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Masculino
  241. :Masculino rdf:type owl:Class ;
  242. rdfs:subClassOf :Sexo .
  243.  
  244.  
  245. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Mulher
  246. :Mulher rdf:type owl:Class ;
  247. rdfs:subClassOf :Pessoa ,
  248. [ rdf:type owl:Restriction ;
  249. owl:onProperty :temSexo ;
  250. owl:someValuesFrom :Feminino
  251. ] .
  252.  
  253.  
  254. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Pessoa
  255. :Pessoa rdf:type owl:Class ;
  256. rdfs:subClassOf :DominioFamiliar ,
  257. [ rdf:type owl:Class ;
  258. owl:unionOf ( :Homem
  259. :Mulher
  260. )
  261. ] ,
  262. [ rdf:type owl:Restriction ;
  263. owl:onProperty :temMae ;
  264. owl:someValuesFrom :Mulher
  265. ] ,
  266. [ rdf:type owl:Restriction ;
  267. owl:onProperty :temPai ;
  268. owl:someValuesFrom :Homem
  269. ] ,
  270. [ rdf:type owl:Restriction ;
  271. owl:onProperty :temSexo ;
  272. owl:someValuesFrom :Sexo
  273. ] ;
  274. owl:disjointWith :Sexo .
  275.  
  276.  
  277. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Sexo
  278. :Sexo rdf:type owl:Class ;
  279. rdfs:subClassOf :DominioFamiliar ,
  280. [ rdf:type owl:Class ;
  281. owl:unionOf ( :Feminino
  282. :Masculino
  283. )
  284. ] .
  285.  
  286.  
  287. #################################################################
  288. # Individuals
  289. #################################################################
  290.  
  291. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Abilio_Silva_Ramalho
  292. :Abilio_Silva_Ramalho rdf:type owl:NamedIndividual ,
  293. :Pessoa ;
  294. :temMae :Custodia_Azevedo_1867 ;
  295. :temPai :Manuel_Silva_Ramalho_1866 .
  296.  
  297.  
  298. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Albina_Esteves_Araujo_1910
  299. :Albina_Esteves_Araujo_1910 rdf:type owl:NamedIndividual , :Pessoa ;
  300. :temMae :Maria_Araujo_1884 ;
  301. :temPai :Henrique_Luiz_Araujo_1867 .
  302.  
  303.  
  304. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Ana_Margarida_Ribeiro_Leite_1980
  305. :Ana_Margarida_Ribeiro_Leite_1980 rdf:type owl:NamedIndividual , :Pessoa ;
  306. :temMae :Maria_Margarida_Ribeiro_1954 ;
  307. :temPai :Rui_Alberto_Araujo_Leite_1948 .
  308.  
  309.  
  310. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Ana_Silva_Ramalho
  311. :Ana_Silva_Ramalho rdf:type owl:NamedIndividual , :Pessoa ;
  312. :temMae :Custodia_Azevedo_1867 ;
  313. :temPai :Manuel_Silva_Ramalho_1866 .
  314.  
  315.  
  316. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Antonio_Silva_Ramalho
  317. :Antonio_Silva_Ramalho rdf:type owl:NamedIndividual .
  318.  
  319.  
  320. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Antonio_Silva_Ramalho_1904
  321. :Antonio_Silva_Ramalho_1904 rdf:type owl:NamedIndividual , :Pessoa ;
  322. :temMae :Custodia_Azevedo_1867 ;
  323. :temPai :Manuel_Silva_Ramalho_1866 .
  324.  
  325.  
  326. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Arminda_Silva_Ramalho
  327. :Arminda_Silva_Ramalho rdf:type owl:NamedIndividual , :Pessoa ;
  328. :temMae :Custodia_Azevedo_1867 ;
  329. :temPai :Manuel_Silva_Ramalho_1866 .
  330.  
  331.  
  332. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Christina_Rosa_Silva_Santos_1879
  333. :Christina_Rosa_Silva_Santos_1879 rdf:type owl:NamedIndividual , :Pessoa .
  334.  
  335.  
  336. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Custodia_Azevedo_1867
  337. :Custodia_Azevedo_1867 rdf:type owl:NamedIndividual , :Pessoa ;
  338. :temMae :Maria_Goncalves_Azevedo ;
  339. :temPai :Jose_Francisco_Ramos_Mouco .
  340.  
  341.  
  342. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Emilia_Esteves_Araujo_1908
  343. :Emilia_Esteves_Araujo_1908 rdf:type owl:NamedIndividual , :Pessoa ;
  344. :temMae :Maria_Araujo_1884 ;
  345. :temPai :Henrique_Luiz_Araujo_1867 .
  346.  
  347.  
  348. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Ezequiel_Silva_Ramalho
  349. :Ezequiel_Silva_Ramalho rdf:type owl:NamedIndividual , :Pessoa ;
  350. :temMae :Custodia_Azevedo_1867 ;
  351. :temPai :Manuel_Silva_Ramalho_1866 .
  352.  
  353.  
  354. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Filomena_Esteves_Araujo_1927
  355. :Filomena_Esteves_Araujo_1927 rdf:type owl:NamedIndividual , :Pessoa ;
  356. :temMae :Maria_Araujo_1884 ;
  357. :temPai :Henrique_Luiz_Araujo_1867 .
  358.  
  359.  
  360. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Flora_Castilho_Couto_Leite
  361. :Flora_Castilho_Couto_Leite rdf:type owl:NamedIndividual , :Pessoa .
  362.  
  363.  
  364. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Florinda_Alves_Santos
  365. :Florinda_Alves_Santos rdf:type owl:NamedIndividual , :Pessoa ;
  366. :temMae :Christina_Rosa_Silva_Santos_1879 ;
  367. :temPai :Joze_Silva_Santos_1879 .
  368.  
  369.  
  370. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Generosa_Silva_Ramalho
  371. :Generosa_Silva_Ramalho rdf:type owl:NamedIndividual , :Pessoa ;
  372. :temMae :Custodia_Azevedo_1867 ;
  373. :temPai :Manuel_Silva_Ramalho_1866 .
  374.  
  375.  
  376. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Henrique_Luis_Esteves_Araujo_1924
  377. :Henrique_Luis_Esteves_Araujo_1924 rdf:type owl:NamedIndividual , :Pessoa ;
  378. :temMae :Maria_Araujo_1884 ;
  379. :temPai :Henrique_Luiz_Araujo_1867 .
  380.  
  381.  
  382. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Henrique_Luiz_Araujo_1867
  383. :Henrique_Luiz_Araujo_1867 rdf:type owl:NamedIndividual .
  384.  
  385.  
  386. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Henrique_Marcal_Araujo_Leite_1943
  387. :Henrique_Marcal_Araujo_Leite_1943 rdf:type owl:NamedIndividual , :Pessoa ;
  388. :temMae :Maria_Esteves_Araujo_1912 ;
  389. :temPai :Marcal_Aristides_Costa_Leite_1909 .
  390.  
  391.  
  392. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Henrique_Miguel_Cabrita_Araujo_Leite_1971
  393. :Henrique_Miguel_Cabrita_Araujo_Leite_1971 rdf:type owl:NamedIndividual , :Pessoa ;
  394. :temMae :Maria_Otilia_Araujo_Leite_1944 ;
  395. :temPai :Henrique_Marcal_Araujo_Leite_1943 .
  396.  
  397.  
  398. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Ilda_Santos_Ramalho_1949
  399. :Ilda_Santos_Ramalho_1949 rdf:type owl:NamedIndividual , :Pessoa ;
  400. :temMae :Maria_Alves_Santos_1906 ;
  401. :temPai :Antonio_Silva_Ramalho_1904 .
  402.  
  403.  
  404. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Isabel_Maria_Cabrita_Araujo_Leite_1971
  405. :Isabel_Maria_Cabrita_Araujo_Leite_1971 rdf:type owl:NamedIndividual , :Pessoa ;
  406. :temMae :Maria_Otilia_Araujo_Leite_1944 ;
  407. :temPai :Henrique_Marcal_Araujo_Leite_1943 .
  408.  
  409.  
  410. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Jose_Carlos_Leite_Ramalho_1967
  411. :Jose_Carlos_Leite_Ramalho_1967 rdf:type owl:NamedIndividual , :Pessoa ;
  412. :temMae :Maria_Flora_Araujo_Leite_1941 ;
  413. :temPai :Jose_Santos_Ramalho_1942 .
  414.  
  415.  
  416. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Jose_Emilio_Esteves_Araujo_1916
  417. :Jose_Emilio_Esteves_Araujo_1916 rdf:type owl:NamedIndividual , :Pessoa ;
  418. :temMae :Maria_Araujo_1884 ;
  419. :temPai :Henrique_Luiz_Araujo_1867 .
  420.  
  421.  
  422. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Jose_Francisco_Ramos_Mouco
  423. :Jose_Francisco_Ramos_Mouco rdf:type owl:NamedIndividual , :Pessoa .
  424.  
  425.  
  426. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Jose_Santos_Ramalho_1942
  427. :Jose_Santos_Ramalho_1942 rdf:type owl:NamedIndividual , :Pessoa ;
  428. :temMae :Maria_Alves_Santos_1906 ;
  429. :temPai :Antonio_Silva_Ramalho_1904 .
  430.  
  431.  
  432. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Joze_Silva_Santos_1879
  433. :Joze_Silva_Santos_1879 rdf:type owl:NamedIndividual , :Pessoa .
  434.  
  435.  
  436. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Luis_Esteves_Araujo_1918
  437. :Luis_Esteves_Araujo_1918 rdf:type owl:NamedIndividual , :Pessoa ;
  438. :temMae :Maria_Araujo_1884 ;
  439. :temPai :Henrique_Luiz_Araujo_1867 .
  440.  
  441.  
  442. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Manuel_Carlos_Santos_Ramalho
  443. :Manuel_Carlos_Santos_Ramalho rdf:type owl:NamedIndividual , :Pessoa ;
  444. :temMae :Maria_Alves_Santos_1906 ;
  445. :temPai :Antonio_Silva_Ramalho_1904 .
  446.  
  447.  
  448. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Manuel_Fernando_Santos_Ramalho
  449. :Manuel_Fernando_Santos_Ramalho rdf:type owl:NamedIndividual , :Pessoa ;
  450. :temMae :Maria_Alves_Santos_1906 ;
  451. :temPai :Antonio_Silva_Ramalho_1904 .
  452.  
  453.  
  454. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Manuel_Silva_Ramalho_1866
  455. :Manuel_Silva_Ramalho_1866 rdf:type owl:NamedIndividual , :Pessoa ;
  456. :temMae :Maria_Dias_Reis ;
  457. :temPai :Antonio_Silva_Ramalho .
  458.  
  459.  
  460. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Marcal_Aristides_Costa_Leite_1909
  461. :Marcal_Aristides_Costa_Leite_1909 rdf:type owl:NamedIndividual , :Pessoa ;
  462. :temMae :Flora_Castilho_Couto_Leite ;
  463. :temPai :Marcal_Costa_Leite .
  464.  
  465.  
  466. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Marcal_Costa_Leite
  467. :Marcal_Costa_Leite rdf:type owl:NamedIndividual , :Pessoa .
  468.  
  469.  
  470. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Maria_Alves_Santos_1906
  471. :Maria_Alves_Santos_1906 rdf:type owl:NamedIndividual , :Pessoa ;
  472. :temMae :Christina_Rosa_Silva_Santos_1879 ;
  473. :temPai :Joze_Silva_Santos_1879 .
  474.  
  475.  
  476. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Maria_Araujo_1884
  477. :Maria_Araujo_1884 rdf:type owl:NamedIndividual , :Pessoa .
  478.  
  479.  
  480. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Maria_Dias_Reis
  481. :Maria_Dias_Reis rdf:type owl:NamedIndividual , :Pessoa .
  482.  
  483.  
  484. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Maria_Esteves_Araujo_1912
  485. :Maria_Esteves_Araujo_1912 rdf:type owl:NamedIndividual , :Pessoa ;
  486. :temMae :Maria_Araujo_1884 ;
  487. :temPai :Henrique_Luiz_Araujo_1867 .
  488.  
  489.  
  490. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Maria_Flora_Araujo_Leite_1941
  491. :Maria_Flora_Araujo_Leite_1941 rdf:type owl:NamedIndividual , :Pessoa ;
  492. :temMae :Maria_Esteves_Araujo_1912 ;
  493. :temPai :Marcal_Aristides_Costa_Leite_1909 .
  494.  
  495.  
  496. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Maria_Flora_Santos_Ramalho
  497. :Maria_Flora_Santos_Ramalho rdf:type owl:NamedIndividual , :Pessoa ;
  498. :temMae :Maria_Alves_Santos_1906 ;
  499. :temPai :Antonio_Silva_Ramalho_1904 .
  500.  
  501.  
  502. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Maria_Goncalves_Azevedo
  503. :Maria_Goncalves_Azevedo rdf:type owl:NamedIndividual , :Pessoa .
  504.  
  505.  
  506. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Maria_Helena_Leite_Ramalho_1968
  507. :Maria_Helena_Leite_Ramalho_1968 rdf:type owl:NamedIndividual , :Pessoa ;
  508. :temMae :Maria_Flora_Araujo_Leite_1941 ;
  509. :temPai :Jose_Santos_Ramalho_1942 .
  510.  
  511.  
  512. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Maria_Margarida_Ribeiro_1954
  513. :Maria_Margarida_Ribeiro_1954 rdf:type owl:NamedIndividual , :Pessoa .
  514.  
  515.  
  516. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Maria_Otilia_Araujo_Leite_1944
  517. :Maria_Otilia_Araujo_Leite_1944 rdf:type owl:NamedIndividual , :Pessoa .
  518.  
  519.  
  520. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Rui_Alberto_Araujo_Leite_1948
  521. :Rui_Alberto_Araujo_Leite_1948 rdf:type owl:NamedIndividual , :Pessoa ;
  522. :temMae :Maria_Esteves_Araujo_1912 ;
  523. :temPai :Marcal_Aristides_Costa_Leite_1909 .
  524.  
  525.  
  526. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Sara_Esteves_Araujo_1914
  527. :Sara_Esteves_Araujo_1914 rdf:type owl:NamedIndividual , :Pessoa ;
  528. :temMae :Maria_Araujo_1884 ;
  529. :temPai :Henrique_Luiz_Araujo_1867 .
  530.  
  531.  
  532. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Teresa_Maria_Ribeiro_Leite_1985
  533. :Teresa_Maria_Ribeiro_Leite_1985 rdf:type owl:NamedIndividual , :Pessoa ;
  534. :temMae :Maria_Margarida_Ribeiro_1954 ;
  535. :temPai :Rui_Alberto_Araujo_Leite_1948 .
  536.  
  537.  
  538. ### http://jcr.di.uminho.pt/ontologias/2016/04/16/myHeritage#Virginia_Esteves_Araujo_1921
  539. :Virginia_Esteves_Araujo_1921 rdf:type owl:NamedIndividual , :Pessoa ;
  540. :temMae :Maria_Araujo_1884 ;
  541. :temPai :Henrique_Luiz_Araujo_1867 .
  542.  
  543.  
  544. ### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
Advertisement
Add Comment
Please, Sign In to add comment