@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#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .

frbr:supplement a owl:ObjectProperty ;
    rdfs:label "has supplement"@en ;
    vann:example """
        :relation-dataset-article a datacite:QualifiedRelation ;
                datacite:hasRelationCharacterization frbr:supplement .
        """ ;
    vaem:rationale """
This is used in combination with [OWL2 punning](http://www.w3.org/TR/2009/WD-owl2-new-features-20090611/#F12:_Punning) to characterise the type of a relation ("IsSupplementedBy") as an instance of `datacite:QualifiedRelation` via the property `datacite:hasRelationCharacterization`.
        """@en ;
    rdfs:comment """
An expression work/expression having another one as supplement.
        """@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( frbr:Expression frbr:Work ) ] ;
    rdfs:isDefinedBy frbr: ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( frbr:Expression frbr:Work ) ] ;
    rdfs:subPropertyOf frbr:relatedEndeavour ;
    owl:inverseOf frbr:supplementOf ;
    vs:term_status reg:statusStable ;
    skos:note """
The supplement relationship type involves works/expressions that are intended to be used in conjunction with another work/expression. 
Some of these, such as indices, concordances, teachers' guides, glosses, and instruction manuals for electronic resources will be so closely associated with the content of the related work/expression that they are useless without the other work/expression.
        """@en .

