@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:hasDataSource
  skos:prefLabel "has data source"@en, "hat Datenquelle"@de ;
  a rdf:Property, skos:Concept .

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

relations:isDataSourceFor
  owl:inverseOf relations:hasDataSource ;
  rdfs:domain <http://id.loc.gov/ontologies/bibframe/Work> ;
  rdfs:range <http://id.loc.gov/ontologies/bibframe/Work> ;
  skos:broader relations:isReferencedBy ;
  skos:narrower relations:hasReplication, relations:hasReanalysis ;
  skos:scopeNote "Relates a work to a work that is based on data resulting from it in some way, such as reanalyzing it or trying to replicate its results."@en ;
  skos:inScheme relations: ;
  skos:prefLabel "is data source for"@en, "ist Datenquelle für"@de ;
  a rdf:Property, skos:Concept .

relations:hasReplication
  skos:prefLabel "has replication"@en, "hat Replikation"@de ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:isDataSourceFor .

relations:hasReanalysis
  skos:prefLabel "has reanalysis"@en, "hat Reanalyse"@de ;
  a rdf:Property, skos:Concept ;
  skos:broader relations:isDataSourceFor .

relations:isReferencedBy
  skos:prefLabel "is referenced by"@en, "wird referenziert von"@de ;
  a rdf:Property, skos:Concept ;
  skos:narrower relations:isDataSourceFor .

