@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:hasOtherPrintFormat
  owl:SymmetricProperty true ;
  rdfs:domain <http://id.loc.gov/ontologies/bibframe/Instance> ;
  rdfs:range <http://id.loc.gov/ontologies/bibframe/Instance> ;
  skos:broader relations:hasOtherPhysicalFormat ;
  skos:scopeNote "Relates a hardcover book to its paperback version or vice versa."@en ;
  skos:inScheme relations: ;
  skos:prefLabel "has other print format"@en, "hat andere Druckform"@de ;
  a owl:SymmetricProperty, rdf:Property, skos:Concept .

relations:hasOtherPhysicalFormat
  skos:prefLabel "has other physical format"@en, "hat andere physische Form"@de ;
  a owl:SymmetricProperty, rdf:Property, skos:Concept ;
  skos:narrower relations:hasOtherPrintFormat .

