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

relations:isPartOfSeries
  skos:prefLabel "ist Teil der Reihe"@de, "is part of series"@en ;
  a rdf:Property, skos:Concept .

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

relations:isArticleInJournal
  rdfs:domain <http://id.loc.gov/ontologies/bibframe/Instance> ;
  rdfs:range <http://id.loc.gov/ontologies/bibframe/Instance> ;
  rdfs:subPropertyOf <http://id.loc.gov/ontologies/bibframe/hasSeries>, relations:isPartOfSeries ;
  skos:broader relations:isPartOfJournal ;
  skos:scopeNote "Relates an Instance that is a journal article (issuance type) to the journal (the continuing publication) it is published in/a component part of."@en ;
  skos:inScheme relations: ;
  skos:prefLabel "is article in journal"@en, "ist Artikel in Zeitschrift"@de ;
  a rdf:Property, skos:Concept .

relations:isPartOfJournal
  skos:prefLabel "ist Teil der Zeitschrift"@de, "is part of journal"@en ;
  a rdf:Property, skos:Concept ;
  skos:narrower relations:isArticleInJournal .

