PREFIX rdf: PREFIX owl: PREFIX schema: PREFIX foaf: INSERT DATA INTO { <#this> <#relatedTo> <#that> . <#relatedTo> a rdf:Property, owl:ObjectProperty ; rdfs:subPropertyOf foaf:knows ; rdfs:label “relatedTo” . foaf:knows owl:equivalentProperty schema:knows . <#this> a foaf:Person ; schema:name “Kingsley Idehen” . <#that> a foaf:Person ; schema:name “Hugh Williams” . }