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

plutchik:disgust
  ns0:next plutchik:remorse ;
  a skos:Concept ;
  skos:prefLabel "disgust"@en .

plutchik:sadness
  ns0:prev plutchik:remorse ;
  a skos:Concept ;
  skos:prefLabel "sadness"@en .

plutchik:remorse
  a skos:Concept ;
  skos:inScheme plutchik: ;
  skos:prefLabel "remorse"@en ;
  skos:topConceptOf plutchik: ;
  ns0:next plutchik:sadness ;
  ns0:prev plutchik:disgust .

