@prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix test: . @prefix : <#> . <> a test:Test; owl:versionInfo "$Id: siblingfather-3.n3,v 1.1 2003/06/25 12:49:23 mdean Exp $"; rdfs:comment "use rules to express axioms not naturally entailed by OWL: an employee of a subsidiary is also an employee of its parent company". :employeeOf a owl:ObjectProperty. :subsidiaryOf a owl:TransitiveProperty. :bbn :subsidiaryOf :verizon. :mike :employeeOf :bbn. { ?employee :employeeOf ?subsidiary. ?subsidiary :subsidiaryOf ?parentCompany } => { ?employee :employeeOf ?parentCompany } . { :mike :employeeOf :verizon } => { <> test:successful "true" } .