http://purl.org/vocab/frbr/core#transformation
An work/expression transformed in another one.
This property describes works that are intended to be a trasformation another original work that is sufficient in degree to warrant their being considered as new works, rather than simply different expressions of the same work. If there exists a relation of this kind among two different expressions, then they always refer to different works.
DOMAIN | PROPERTY | RANGE |
---|---|---|
Blank node (see implementation) , Blank node (see implementation) | core:transformation | 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:transformation a owl:ObjectProperty ;
rdfs:label "has transformation"@en ;
rdfs:comment """An work/expression transformed in another one.
This property describes works that are intended to be a trasformation another original work that is sufficient in degree to warrant their being considered as new works, rather than simply different expressions of the same work. If there exists a relation of this kind among two different expressions, then they always refer to different works."""@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( core:Expression core:Work ) ] ;
rdfs:range [ a owl:Class ;
owl:unionOf ( core:Expression core:Work ) ] ;
rdfs:subPropertyOf core:relatedEndeavour ;
owl:inverseOf core:transformationOf .