core:adaption leaf node


URI

http://purl.org/vocab/frbr/core#adaption

Label

has adaption

Description

A work/expression adapted in another one.

This property describe the modification of an 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, they always refer to different works.

Inherits from

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) , Blank node (see implementation) core:adaption owl:Thing (inferred)

Implementation

@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:adaption a owl:ObjectProperty ;
    rdfs:label "has adaption"@en ;
    rdfs:comment """A work/expression adapted in another one.

This property describe the modification of an 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, 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:adaptionOf .