core:Expression leaf node


URI

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

Label

expression

Description

The intellectual or artistic realization of a work in the form of alpha-numeric, musical, or choreographic notation, sound, image, object, movement, etc., or any combination of such forms.

An expression is the specific intellectual or artistic form that a work takes each time it is "realized." Expression encompasses, for example, the specific words, sentences, paragraphs, etc. that result from the realization of a work in the form of a text, or the particular sounds, phrasing, etc. resulting from the realization of a musical work.

Usage

Instances of core:Expression can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class core:Expression
core:abridgement owl:ObjectProperty An expression abridged in another one. In the abridged expression some content of the previous expression is removed, 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). core:Expression
core:arrangement owl:ObjectProperty 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). core:Expression
core:embodiment owl:ObjectProperty An expression embodied in a manifestation. core:Manifestation
core:realizer owl:ObjectProperty An expression linked to its realizer. owl:Thing
core:revision owl:ObjectProperty An expression revised in another one. A revision has the intent to alter or update the content of the prior expression, but without changing the content so much that it becomes a new work. core:Expression
core:translation owl:ObjectProperty An expression translated in another one. It allows to refer to a literal translation, in which the intent is to render the intellectual content of the previous expression as accurately as possible. core:Expression
From class owl:Thing
core:abridgementOf owl:ObjectProperty It identifies the entire expression of an abridged one. owl:Thing
core:adaptionOf owl:ObjectProperty It identifies the work/expression of an adapted one. owl:Thing
core:alternateOf owl:ObjectProperty It identifies the manifestation of an alternative one. owl:Thing
core:arrangementOf owl:ObjectProperty It identifies the original expression of an arranged one. owl:Thing
core:complementOf owl:ObjectProperty It identifies the work/expression of that is a complement of another one. owl:Thing
core:creatorOf owl:ObjectProperty The creator of a particular work. owl:Thing
core:embodimentOf owl:ObjectProperty A manifestation that embodies an expression. owl:Thing
core:exemplarOf owl:FunctionalProperty An item that exemplifies a manifestation. owl:Thing
core:imitationOf owl:ObjectProperty It identifies the work/expression of an imitated one. owl:Thing
core:ownerOf owl:ObjectProperty The owner of a particular item. owl:Thing
core:part owl:ObjectProperty A part of an endeavour. owl:Thing
core:partOf owl:ObjectProperty An endeavour incorporating another endeavour. owl:Thing
core:producerOf owl:ObjectProperty The producer of a particular manifestation. owl:Thing
core:realizationOf owl:FunctionalProperty An expression that realizes a work. owl:Thing
core:realizerOf owl:ObjectProperty The realizer of a particular expression. owl:Thing
core:reconfigurationOf owl:ObjectProperty It identifies the manifestation of a reconfigured one. owl:Thing
core:reproductionOf owl:ObjectProperty It identifies the manifestation/item of a reproduced one. owl:Thing
core:responsibleEntityOf owl:ObjectProperty An entity that is resposible for a particular endeavour. owl:Thing
core:revisionOf owl:ObjectProperty It identifies the previous expression of a revised one. owl:Thing
core:subjectOf owl:ObjectProperty A subject a work talks abbout. owl:Thing
core:successorOf owl:ObjectProperty It identifies the previous work/expression of a succeeded one. owl:Thing
core:summarizationOf owl:ObjectProperty It identifies the original work/expression of a summarized one. owl:Thing
core:supplementOf owl:ObjectProperty It identifies the work/expression of a particular supplement of it. owl:Thing
core:transformationOf owl:ObjectProperty It identifies the original work/expression of a trasformed one. owl:Thing
core:translationOf owl:ObjectProperty It identifies the original expression of a translated one. owl:Thing
dc:creator owl:AnnotationProperty owl:Thing
dc:date owl:AnnotationProperty owl:Thing
dc:description owl:AnnotationProperty owl:Thing
dc:rights owl:AnnotationProperty owl:Thing
dc:title owl:AnnotationProperty owl:Thing
owl:topObjectProperty owl:ObjectProperty owl:Thing
rdfs:comment owl:AnnotationProperty owl:Thing
rdfs:isDefinedBy owl:AnnotationProperty owl:Thing
rdfs:label owl:AnnotationProperty owl:Thing
skos:note owl:AnnotationProperty owl:Thing

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:Expression a owl:Class ;
    rdfs:label "expression"@en ;
    rdfs:comment """The intellectual or artistic realization of a work in the form of alpha-numeric, musical, or choreographic notation, sound, image, object, movement, etc., or any combination of such forms.

An expression is the specific intellectual or artistic form that a work takes each time it is "realized." Expression encompasses, for example, the specific words, sentences, paragraphs, etc. that result from the realization of a work in the form of a text, or the particular sounds, phrasing, etc. resulting from the realization of a musical work."""@en ;
    owl:disjointWith core:Item,
        core:Manifestation,
        core:Work ;
    owl:equivalentClass [ a owl:Class ;
            owl:intersectionOf ( core:Endeavour [ a owl:Restriction ;
                        owl:onProperty core:embodiment ;
                        owl:someValuesFrom core:Manifestation ] [ a owl:Restriction ;
                        owl:onProperty core:realizationOf ;
                        owl:someValuesFrom core:Work ] ) ],
        [ a owl:Class ;
            owl:intersectionOf ( core:Endeavour [ a owl:Restriction ;
                        owl:allValuesFrom core:Expression ;
                        owl:onProperty core:part ] [ a owl:Restriction ;
                        owl:allValuesFrom core:Expression ;
                        owl:onProperty core:partOf ] ) ] .