core:successor leaf node


URI

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

Label

has successor

Description

An expression work/expression having another one as successor.

The successor type of relationship involves a kind of linear progression of content from one work/expression to the other. In some cases, the content of the successor may be closely connected to the content of the preceding work, which would result in a work that is referential. In others, such as with loosely connected parts of a trilogy, the successor will be autonomous. Serial publications that result from the merger or split of their predecessors and stand on their own without requiring reference to the predecessor are also examples of autonomous works that fall within the successor relationship type. If there exists a relation of this kind among two different expressions, then they always refer to different works.

Inherits from

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) , Blank node (see implementation) core:successor 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:successor a owl:ObjectProperty ;
    rdfs:label "has successor"@en ;
    rdfs:comment """An expression work/expression having another one as successor.

The successor type of relationship involves a kind of linear progression of content from one work/expression to the other. In some cases, the content of the successor may be closely connected to the content of the preceding work, which would result in a work that is referential. In others, such as with loosely connected parts of a trilogy, the successor will be autonomous. Serial publications that result from the merger or split of their predecessors and stand on their own without requiring reference to the predecessor are also examples of autonomous works that fall within the successor relationship type. 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:successorOf .