@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#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

relations:isAugmentedBy
  skos:prefLabel "is augmented by"@en, "wird erweitert durch"@de ;
  a rdf:Property, skos:Concept .

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

relations:augments
  owl:inverseOf relations:isAugmentedBy ;
  dc:created "2024-12-16"^^xsd:date ;
  skos:broader relations:accompanies ;
  skos:narrower relations:isPreregistrationFor, relations:isCorrectionTo, relations:isSupplementTo ;
  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 "augments"@en, "erweitert"@de ;
  a rdf:Property, skos:Concept .

relations:isPreregistrationFor
  skos:prefLabel "is preregistration for"@en, "ist Präregistrierung für"@de ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:augments .

relations:isCorrectionTo
  skos:prefLabel "is correction to"@en, "ist Korrektur zu"@de ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:augments .

relations:isSupplementTo
  skos:prefLabel "is supplement to"@en, "ist Supplement zu"@de ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:augments .

relations:accompanies
  skos:prefLabel "accompanies"@en, "begleitet"@de ;
  a rdf:Property, skos:Concept ;
  skos:narrower relations:augments .

