@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix wd: <http://www.wikidata.org/entity/> .

@prefix : <http://www.clearbyte.org/> . #Relative IRI with empty prefix

:Picasso a foaf:Person ;
    foaf:firstName "Pablo" ;
    foaf:surname "Picasso";
    :creatorOf :guernica, :weepingWoman ;
    :homeAddress _:node1 .

    _:node1 :street "31 Art Gallery" ;
            :city "Madrid" ;
            :birthCity "Malaga" ;
            :country "Spain" .

:VanGogh a foaf:Person ;
    :creatorOf :lumberSale;
    :homeAddress _:node .

    _:node  :street "12 Rijsbergen";
            :city "Zundert";
            :country "Netherlands" .

:Guernica a :Painting ;
    rdfs:label "Guernica";
    :technique "oil on canvas".

:WeepingWoman a :Painting ;
    rdfs:label "The weeping woman";
    :technique "oil on canvas".

:LumberSale a :Painting;
    rdfs:label "Lumber Sale";
    :technique "watercolor" .

