core:complement leaf node


URI

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

Label

has complement

Description

An expression work/expression having another one as complement.

This property describes works that are intended to be combined with or inserted into the related work. In other words, they are intended to be integrated in some way with the other work, but were not part of the original conception of that prior work. 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:complement 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:complement a owl:ObjectProperty ;
    rdfs:label "has complement"@en ;
    rdfs:comment """An expression work/expression having another one as complement.

This property describes works that are intended to be combined with or inserted into the related work. In other words, they are intended to be integrated in some way with the other work, but were not part of the original conception of that prior work. 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:complementOf .