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

fabio:ReportDocument a owl:Class ;
    rdfs:label "report document"@en ;
    vann:example """
        :my-report-document a fabio:ReportDocument ;
                fabio:hasSequenceIdentifier "3" .
        """,
        """
        :my-resource 
                datacite:hasGeneralResourceType fabio:ReportDocument .
        """ ;
    vaem:rationale """
This is used as a controlled term to specify a given general resource type ("Report").

This is also used in combination with `fabio:hasSequenceIdentifier` to specify the sequence identifier/number type.
        """@en ;
    rdfs:comment "The realization of a report, usually in printed form."@en ;
    rdfs:isDefinedBy fabio: ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:onProperty frbr:realizationOf ;
            owl:someValuesFrom fabio:Report ],
        fabio:Expression ;
    vs:term_status reg:statusStable .

