http://purl.org/vocab/frbr/core#reproduction
A manifestation/item reproduced in another one.
A reproduction indicates the relationship as it would be drawn from the first manifestation/item in the relationship to the second manifestation/item in the relationship.
DOMAIN | PROPERTY | RANGE |
---|---|---|
Blank node (see implementation) , Blank node (see implementation) | core:reproduction | owl:Thing (inferred) |
@prefix core: <http://purl.org/vocab/frbr/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
core:reproduction a owl:ObjectProperty ;
rdfs:label "has reproduction"@en ;
rdfs:comment """A manifestation/item reproduced in another one.
A reproduction indicates the relationship as it would be drawn from the first manifestation/item in the relationship to the second manifestation/item in the relationship."""@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( core:Item core:Manifestation ) ] ;
rdfs:range [ a owl:Class ;
owl:unionOf ( core:Item core:Manifestation ) ] ;
rdfs:subPropertyOf core:relatedEndeavour ;
owl:inverseOf core:reproductionOf .