:isManifestationOf leaf node


URI

http://purl.org/spar/fabio/isManifestationOf

Label

is manifestation of

Description

A property linking a particular manifestation to the work it is manifesting. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.

Inherits from

Usage

DOMAINPROPERTYRANGE
frbr:Manifestation :isManifestationOf frbr:Work

Implementation

@prefix : <http://purl.org/spar/fabio/> .
@prefix frbr: <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#> .

:isManifestationOf a owl:ObjectProperty ;
    rdfs:label "is manifestation of"@en ;
    rdfs:comment "A property linking a particular manifestation to the work it is manifesting.  This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model."@en ;
    rdfs:domain frbr:Manifestation ;
    rdfs:range frbr:Work ;
    rdfs:subPropertyOf frbr:relatedEndeavour ;
    owl:inverseOf :hasManifestation ;
    owl:propertyChainAxiom ( frbr:embodimentOf frbr:realizationOf ) .