@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:awe ;
  a skos:ConceptScheme ;
  rdfs:label "Plutchik’s Wheel of Emotions"@en .

plutchik:surprise
  ns0:next plutchik:awe ;
  a skos:Concept ;
  skos:prefLabel "surprise"@en .

plutchik:fear
  ns0:prev plutchik:awe ;
  a skos:Concept ;
  skos:prefLabel "fear"@en .

plutchik:awe
  a skos:Concept ;
  skos:inScheme plutchik: ;
  skos:prefLabel "awe"@en ;
  skos:topConceptOf plutchik: ;
  ns0:next plutchik:fear ;
  ns0:prev plutchik:surprise .

