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 added one line
At line 12 changed one line
rdf:type rdf:Property .
rdf:type owl:AsymmetricProperty ;
rdfs:subPropertyOf si:relatedWith .
At line 14 changed 10 lines
%
! grandfather relation is derived via property chain
%%turtle
si:grandfather a rdf:Property ;
si:grandfather
rdf:type
rdf:Property ;
rdfs:subPropertyOf
si:grandparent;
At line 26 removed 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 removed one line
At line 45 changed 8 lines
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.
si:Abe a owl:Thing .
si:Homer si:father si:Abe
si:Bart si:parent si:Homer.
At line 33 added one line
%%package propChainTest
At line 56 removed one line
!! Queries
At line 59 removed 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 added 2 lines