@prefix relations: <https://w3id.org/zpid/vocabs/relations/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@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:hasEquivalentPart
  rdfs:domain <http://id.loc.gov/ontologies/bibframe/Work> ;
  rdfs:range <http://id.loc.gov/ontologies/bibframe/Work> ;
  skos:broader relations:hasPart ;
  skos:narrower relations:hasArticlePartOfCompilationThesis ;
  skos:scopeNote "Relates a work to a part of it that was published in another form, such as one part of a cumulative thesis that was published on its own as a journal article."@en ;
  skos:inScheme relations: ;
  skos:prefLabel "has equivalent part published elsewhere"@en, "hat Teil, der auch anderweitig erschien"@de ;
  a rdf:Property, skos:Concept .

relations:hasPart
  skos:prefLabel "has part"@en, "hat Teil"@de ;
  a rdf:Property, skos:Concept ;
  skos:narrower relations:hasEquivalentPart .

relations:isEquivalentPartOf owl:inverseOf relations:hasEquivalentPart .
relations:hasArticlePartOfCompilationThesis
  skos:notation "Rel 003" ;
  skos:prefLabel "Dissertation enthält Abdruck von Artikel"@de, "thesis includes published article"@en ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:hasEquivalentPart .

