@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#> .

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

relations:hasPartOfSeries
  rdfs:domain <http://id.loc.gov/ontologies/bibframe/Instance> ;
  rdfs:range <http://id.loc.gov/ontologies/bibframe/Instance> ;
  skos:broader relations:hasPart ;
  skos:scopeNote "Relates a book/monographic series to a thing published in the series, such as a book or thesis or report."@en ;
  skos:inScheme relations: ;
  skos:prefLabel "has part of series"@en, "hat Teil der Reihe"@de ;
  a rdf:Property, skos:Concept .

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

