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.

Page revision history

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

Page References

Incoming links Outgoing links
Sandbox4 ...nobody

Version management

Difference between version and

At line 1 removed one line
At line 13 changed 2 lines
rdf:type owl:AsymmetricProperty ;
rdfs:subPropertyOf si:relatedWith .
rdf:type rdf:Property .
At line 16 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 41 added one line
At line 28 changed 3 lines
si:Abe a owl:Thing .
si:Homer si:father si:Abe
si:Bart si:parent si:Homer.
si:Abe a owl:Thing ;
si:familyName "Simpson descripiton blababkldbd" .
si:Homer a owl:Thing ;
si:father si:Abe .
si:Bart a owl:Thing ;
si:parent si:Homer.
si:Lisa a owl:Thing ;
si:parent si:Homer.
At line 33 removed one line
%%package propChainTest
At line 56 added one line
!! Queries
At line 59 added 41 lines
! 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 .
}
%
%%package propChainTest
At line 42 removed 2 lines