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

relations:isSummaryOf
  skos:prefLabel "is summary of"@en, "ist Zusammenfassung von"@de ;
  a rdf:Property, skos:Concept .

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

relations:hasSummary
  owl:inverseOf relations:isSummaryOf ;
  skos:broader relations:hasDescription ;
  skos:narrower relations:hasAbstract, relations:hasPlainLanguageSummary ;
  skos:scopeNote "Relates a work to another work that summarizes it, usually in an objective way, without offering an explicit opinion, viewpoint, evaluation or review."@en ;
  skos:inScheme relations: ;
  skos:prefLabel "has summary"@en, "hat Zusammenfassung"@de ;
  a rdf:Property, skos:Concept .

relations:hasDescription
  skos:prefLabel "has description"@en, "hat Beschreibung"@de ;
  a rdf:Property, skos:Concept ;
  skos:narrower relations:hasSummary .

relations:hasAbstract
  skos:prefLabel "has abstract"@en, "hat Abstract"@de ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:hasSummary .

relations:hasPlainLanguageSummary
  skos:notation "Rel 009" ;
  skos:prefLabel "has plain language summary"@en, "hat laienverständliche Zusammenfassung"@de ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:hasSummary .

