http://purl.org/vocab/frbr/core#imitation
An work/expression imitated in another one.
This property describes works that are intended to be an imitation 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:imitation | 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:imitation a owl:ObjectProperty ;
rdfs:label "has imitation"@en ;
rdfs:comment """An work/expression imitated in another one.
This property describes works that are intended to be an imitation 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:imitationOf .