@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:hasElectronicVersion
  skos:prefLabel "has electronic version"@en, "hat elektronische Version"@de ;
  a rdf:Property, skos:Concept .

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

relations:hasPrintVersion
  owl:inverseOf relations:hasElectronicVersion ;
  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 an electronic article or book instance to its print version."@en ;
  skos:inScheme relations: ;
  skos:prefLabel "hat gedruckte Version"@de, "has print version"@en ;
  a 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:hasPrintVersion .

