@prefix frbr: <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#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .

frbr:exemplarOf a owl:ObjectProperty ;
    rdfs:label "is exemplar of"@en ;
    vann:example """
        :my-item a fabio:Item ;
            frbr:exemplarOf :my-manifestation .
    """ ;
    rdfs:comment "The manifestation that is exemplified by an item."@en ;
    rdfs:domain frbr:Item ;
    rdfs:isDefinedBy frbr: ;
    rdfs:range frbr:Manifestation ;
    owl:inverseOf frbr:exemplar ;
    vs:term_status reg:statusStable .

