@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:
  skos:prefLabel "Resource Relations"@en, "Ressourcenbeziehungen"@de ;
  a skos:ConceptScheme .

relations:isAugmentedBy
  skos:broader relations:isAccompaniedBy ;
  skos:narrower relations:hasCorrection, relations:hasSupplement, relations:hasPreregistration ;
  skos:scopeNote "Relates a work to another work that adds to the content of a predominant resource, such as an errata/correction, addendum, appendix, illustrations, or supplement."@en ;
  skos:inScheme relations: ;
  skos:prefLabel "is augmented by"@en, "wird erweitert durch"@de ;
  a rdf:Property, skos:Concept .

relations:augments owl:inverseOf relations:isAugmentedBy .
relations:hasCorrection
  skos:prefLabel "has correction"@en, "hat Korrektur"@de ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:isAugmentedBy .

relations:hasSupplement
  skos:prefLabel "has supplement"@en, "hat Supplement"@de ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:isAugmentedBy .

relations:isAccompaniedBy
  skos:prefLabel "is accompanied by"@en, "wird begleitet von"@de ;
  a rdf:Property, skos:Concept ;
  skos:narrower relations:isAugmentedBy .

relations:hasPreregistration
  skos:prefLabel "has preregistration"@en, "hat Präregistrierung"@de ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:isAugmentedBy .

