core:revision leaf node


URI

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

Label

has revision

Description

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.

Inherits from

Usage

DOMAINPROPERTYRANGE
core:Expression core:revision 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:revision a owl:ObjectProperty ;
    rdfs:label "has revision"@en ;
    rdfs:comment """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."""@en ;
    rdfs:domain core:Expression ;
    rdfs:range core:Expression ;
    rdfs:subPropertyOf core:relatedEndeavour ;
    owl:inverseOf core:revisionOf .