@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:realization a owl:ObjectProperty ;
    rdfs:label "has realization"@en ;
    vann:example """
        :my-research-paper a fabio:ResearchPaper ;
            frbr:realization :my-journal-article .
    """ ;
    rdfs:comment "The expression that is a realization of a work."@en ;
    rdfs:domain frbr:Work ;
    rdfs:isDefinedBy frbr: ;
    rdfs:range frbr:Expression ;
    vs:term_status reg:statusStable .

