@base <http://www.clearbyte.org/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix schema: <https://schema.org/> .
@prefix wd: <http://www.wikidata.org/entity/> .

<Picasso> a <Artist> ;
	rdfs:label "Picasso" ;
    foaf:firstName "Pablo" ;
    foaf:surname "Picasso";
	rdfs:seeAlso wd:Q5593 ;
    <creatorOf> <guernica>, <maJolie>, <crossedArms> ;
    <homeAddress> _:node1 .
    _:node1  <street> "31 Art Gallery" ;
             <city> "Madrid" ;
             <country> "Spain" .

<VanGogh> a <Artist> ;
	rdfs:label "VanGogh" ;
    foaf:firstName "Vincent" ;
    foaf:surname "van Gogh";
	rdfs:seeAlso wd:Q5582 ;
    <creatorOf> <starryNight>, <sunflowers>, <potatoEaters>, <sundayEindhoven>, <minersInTheSnow> .
    
<Larsson> a <Artist> ;
	rdfs:label "Larsson" ;
    foaf:firstName "Carl" ;
    foaf:surname "Larsson".

<Guernica> a <Painting> ;
    rdfs:label "Guernica";
	rdfs:seeAlso wd:Q175036 ;
	<createBy> <Picasso> ;
    <paintingTechnique> <oil> .

<MaJolie> a <Painting> ;
    rdfs:label "MaJolie" ;
	rdfs:seeAlso wd:Q129433 ;
	<createBy> <Picasso> ;
    <paintingTechnique> <oil> .

<CrossedArms> a <Painting> ;
	rdfs:label "CrossedArms" ;
    rdfs:comment "Man with crossed arms"@en ;
	<createBy> <Picasso> ;
    <paintingTechnique> <watercolor> .

<SundayEindhoven> a <Painting> ;
	rdfs:label "SundayEindhoven" ;
    rdfs:comment "A Sunday in Eindhoven"@en ;
	<createdBy> <VanGogh> ;
    <paintingTechnique> <watercolor> .

<StarryNight> a <Painting> ;            
    rdfs:label "StarryNight" ;
	<createdBy> <VanGogh> ;
    <paintingTechnique> <oil> .

<Sunflowers> a <Painting> ;            
    rdfs:label "Sunflowers" ;
	<createdBy> <VanGogh> ;
    <paintingTechnique> <oil> .

<PotatoEaters> a <Painting> ;
	rdfs:label "PotatoEaters" ;           
    rdfs:comment "The Potato Eaters"@en ;
	rdfs:seeAlso wd:Q24022716 ;
	<createdBy> <VanGogh> ;
    <paintingTechnique> <oil> .

<MinersInTheSnow> a <Painting> ;
	rdfs:label "MinersInTheSnow" ;
    rdfs:comment "Miners in the Snow: Winter"@en ;
	<createdBy> <VanGogh> ;
    <paintingTechnique> <watercolor> .

# Class definition

<Artist> a rdfs:Class ;
	rdfs:label "Artist" ;
	rdfs:comment "Creator of art artifacts"@en ;
	rdfs:seeAlso wd:Q483501 ;
	rdfs:seeAlso foaf:Person .

<Painting> a rdfs:Class ;
	rdfs:label "Painting";
	rdfs:comment "Art artifact on canvas"@en ;
	rdfs:seeAlso wd:Q3305213 ;
	rdfs:seeAlso schema:Painting .

#Property definition

<paintingTechnique> a rdfs:Property ;
	rdfs:label "PaintingTechnique" ;
	rdfs:domain <Painting> ;
	rdfs:range <Painting> .

<oil> a rdfs:Property ;
	rdfs:label "OilPainting" ;	
	rdfs:range <Painting> ;
	rdfs:seeAlso wd:Q174705 ;
    rdfs:subPropertyOf <paintingTechnique> .

<acrylic> a rdfs:Property ;
	rdfs:label "AcrylicPainting" ;
	rdfs:range <Painting> ;
	rdfs:seeAlso wd:Q61268321 ;
    rdfs:subPropertyOf <paintingTechnique> .

<watercolor> a rdfs:Property ;
	rdfs:label "WatercolorPainting" ;
	rdfs:range <Painting> ;
	rdfs:seeAlso wd:Q50030 ;
    rdfs:subPropertyOf <paintingTechnique> .

<creatorOf> a rdfs:Property ;
	rdfs:domain <Artist> ;
	rdfs:range <Painting> .

<createdBy> a rdfs:Propery ;
	rdfs:domain <Painting> ;
	rdfs:range <Artist> .



