## Turtle Start ##

@prefix : <#> . 
@prefix doc: <http://kingsley.idehen.net/public_home/kidehen/Public/Linked%20Data%20Documents/Tutorials/woman-in-ghana-wearing-hat-selling-fruit.> .
@prefix xhv: <http://www.w3.org/1999/xhtml/vocab#> .
@prefix schema: <http://schema.org/> .
@prefix dbpedia: <http://dbpedia.org/resource/> . 
@prefix kbpedia: <http://kbpedia.org/kko/rc/> . 
@prefix wdt: <http://www.wikidata.org/prop/direct/> .
@prefix mo: <http://purl.org/ontology/mo/> . 

:this a schema:WebPage ;
        xhv:alternate doc:ttl ;
        skos:related <https://twitter.com/kidehen/status/1193228591129071616> ;
        schema:description """Using RDF sentences to describe a Ghanaian woman wearing a 
                             straw (rather than red) hat selling fruit.""" ;
        schema:about [ 
                            a schema:ImageObject; 
                            owl:sameAs :thisImage ;
                            schema:url <https://c7.alamy.com/comp/A2DKT2/african-female-fruit-seller-with-large-hat-for-sun-protection-ghana-A2DKT2.jpg> ;
                            schema:mainEntityOfPage <https://www.alamy.com/african-female-fruit-seller-with-large-hat-for-sun-protection-ghana-image5994433.html> ;
                            foaf:depicts [ a :woman ; 
                                            :selling [ a :fruit]; 
                                            :wearing [ a :hat; 
                                                        :color :straw ]
                                        ]  ;
                            :place dbpedia:Ghana 
                        ] .

 ## Cross References 

 :woman owl:equivalentClass wdt:P21 . 
 :fruit owl:equivalentClass kbpedia:Fruit .      
 :selling owl:equivalentProperty mo:sell_item .         
          
## Turtle End ##