@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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

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

relations:isReplyToComment
  owl:inverseOf relations:hasCommentReply ;
  rdfs:domain <http://id.loc.gov/ontologies/bibframe/Work> ;
  rdfs:range <http://id.loc.gov/ontologies/bibframe/Work> ;
  rdfs:subPropertyOf relations:isCommentOn ;
  skos:broader relations:isCommentOn ;
  skos:altLabel "is reply to comment"@en ;
  skos:notation "Rel 002" ;
  skos:inScheme relations: ;
  skos:prefLabel "is comment reply"@en, "ist Antwort auf Kommentar"@de ;
  a rdf:Property, skos:Concept .

relations:hasReplyToComment owl:inverseOf relations:isReplyToComment .
relations:isCommentOn
  skos:notation "Rel 001" ;
  skos:prefLabel "is comment on"@en, "ist Kommentar zu"@de ;
  a rdf:Property, skos:Concept ;
  skos:narrower relations:isReplyToComment .

relations:PSYNDEXrelRelations
  skos:prefLabel "Beziehungen zwischen Publikationen"@de, "Relations between publications"@en ;
  a skos:Collection ;
  skos:member relations:isReplyToComment .

