core:arrangement leaf node


URI

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

Label

has arrangement

Description

An expression arranged in another one.

In the arranged expression some content of the previous expression is changed in some way, but the result does not alter the content to the extent that it becomes a new work. The expressions resulting from such modification are generally autonomous in nature (i.e., they do not normally require reference to the prior expression in order to be used or understood).

Inherits from

Usage

DOMAINPROPERTYRANGE
core:Expression core:arrangement core:Expression

Implementation

@prefix core: <http://purl.org/vocab/frbr/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

core:arrangement a owl:ObjectProperty ;
    rdfs:label "has arrangement"@en ;
    rdfs:comment """An expression arranged in another one.

In the arranged expression some content of the previous expression is changed in some way, but the result does not alter the content to the extent that it becomes a new work. The expressions resulting from such modification are generally autonomous in nature (i.e., they do not normally require reference to the prior expression in order to be used or understood)."""@en ;
    rdfs:domain core:Expression ;
    rdfs:range core:Expression ;
    rdfs:subPropertyOf core:relatedEndeavour ;
    owl:inverseOf core:arrangementOf .