@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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

relations:references
  skos:prefLabel "references"@en, "nimmt Bezug auf"@de ;
  a rdf:Property, skos:Concept .

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

relations:isReferencedBy
  owl:inverseOf relations:references ;
  rdfs:domain <http://id.loc.gov/ontologies/bibframe/Work> ;
  rdfs:range <http://id.loc.gov/ontologies/bibframe/Work> ;
  skos:broader relations:isRelatedTo ;
  skos:narrower relations:isDataSourceFor, relations:isSubjectOfWork ;
  skos:scopeNote "Relates a work to a work that makes extensive reference to it but is not a direct transformation/derivative of it: a study that reused data from another work, a review of a work, a comment or reply, a journal article that cites a book."@en ;
  skos:inScheme relations: ;
  skos:prefLabel "is referenced by"@en, "wird referenziert von"@de ;
  a rdf:Property, skos:Concept .

relations:isDataSourceFor
  skos:prefLabel "is data source for"@en, "ist Datenquelle für"@de ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:isReferencedBy .

relations:isSubjectOfWork
  skos:prefLabel "is subject of work"@en, "ist Thema des Werks"@de ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:isReferencedBy .

relations:isRelatedTo
  skos:notation "Rel 010" ;
  skos:prefLabel "steht in Beziehung zu"@de, "is related to"@en ;
  a owl:SymmetricProperty, rdf:Property, skos:Concept ;
  skos:narrower relations:isReferencedBy .

