This page (revision-27) was last changed on 21-Aug-2019 13:54 by Jochen Reutelshöfer

This page was created on 21-Aug-2019 11:05 by unknown

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Version Date Modified Size Author Changes ... Change note
27 21-Aug-2019 13:54 1 KB Jochen Reutelshöfer to previous
26 21-Aug-2019 13:47 1 KB Jochen Reutelshöfer to previous | to last
25 21-Aug-2019 13:47 1 KB Jochen Reutelshöfer to previous | to last
24 21-Aug-2019 13:46 1 KB Jochen Reutelshöfer to previous | to last
23 21-Aug-2019 13:46 1 KB Jochen Reutelshöfer to previous | to last
22 21-Aug-2019 11:25 1 KB Jochen Reutelshöfer to previous | to last
21 21-Aug-2019 11:24 1 KB Jochen Reutelshöfer to previous | to last
Incoming links Outgoing links
Sandbox4 ...nobody

Difference between version and

At line 12 changed one line
rdf:type owl:AsymmetricProperty .
rdf:type rdf:Property .
At line 14 changed 5 lines
si:grandfather
rdf:type
rdf:Property ;
rdfs:subPropertyOf
si:grandparent;
%
! grandfather relation is derived via property chain
%%turtle
si:grandfather a rdf:Property ;
At line 26 added 13 lines
%
! family name (Literal) is derived via property chain
%%turtle
si:familyName a owl:ObjectProperty .
si:referencedFamilyName rdfs:subPropertyOf si:familyName ;
owl:propertyChainAxiom
( si:parent si:familyName ) .
At line 27 changed one line
si:Abe a owl:Thing .
si:Abe a owl:Thing ;
si:familyName "Simpson descripiton blababkldbd" .
At line 51 added 2 lines
si:Lisa a owl:Thing ;
si:parent si:Homer.
At line 55 added 43 lines
!! Queries
! Bart
%%Sparql
SELECT * WHERE {
si:Bart ?p ?o .
}
%
! All Grandparent relations
%%Sparql
SELECT * WHERE {
?grandchild si:grandfather ?gp .
}
%
! All Family Names
%%Sparql
SELECT * WHERE {
?s si:familyName ?name .
}
%
! All referenced family names
%%Sparql
SELECT * WHERE {
?s si:referencedFamilyName ?name .
}
%