@prefix relations: <https://w3id.org/zpid/vocabs/relations/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

relations:
  skos:prefLabel "Resource Relations"@en, "Ressourcenbeziehungen"@de ;
  a skos:ConceptScheme .

relations:isReviewOf
  owl:inverseOf relations:hasReview ;
  skos:closeMatch <http://rdaregistry.info/Elements/u/P60288> ;
  skos:editorialNote "May need this for PsychArchives?"@en ;
  skos:broader relations:isEvaluationOf ;
  skos:scopeNote "Relates a work to another work that is a brief, usually subjective, evaluation of it, usually made by a layperson and offering some kind of personal opinion on the content."@en ;
  skos:inScheme relations: ;
  skos:prefLabel "ist Buch- oder Medien-Rezension von"@de, "is book/media review of"@en ;
  a rdf:Property, skos:Concept .

relations:isEvaluationOf
  skos:prefLabel "is evaluation of"@en, "ist Evaluierung von"@de ;
  a rdf:Property, skos:Concept ;
  skos:narrower relations:isReviewOf .

relations:hasReview
  skos:notation "Rel 008" ;
  skos:prefLabel "has book or media review"@en, "hat Buch- oder Medienrezension"@de ;
  a rdf:Property, skos:Concept ;
  owl:inverseOf relations:isReviewOf .

