@prefix plutchik: <http://data.odeuropa.eu/vocabulary/plutchik/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ns0: <http://dbpedia.org/property/> .

plutchik:
  skos:hasTopConcept plutchik:love ;
  a skos:ConceptScheme ;
  rdfs:label "Plutchik’s Wheel of Emotions"@en .

plutchik:trust
  ns0:next plutchik:love ;
  a skos:Concept ;
  skos:prefLabel "trust"@en .

plutchik:joy
  ns0:prev plutchik:love ;
  a skos:Concept ;
  skos:prefLabel "joy"@en .

plutchik:love
  a skos:Concept ;
  skos:inScheme plutchik: ;
  skos:prefLabel "love"@en ;
  skos:topConceptOf plutchik: ;
  ns0:next plutchik:joy ;
  ns0:prev plutchik:trust .

