@prefix fabio: <http://purl.org/spar/fabio/> .
@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:Chapter a owl:Class ;
    rdfs:label "chapter"@en ;
    vann:example """
        :my-resource
                datacite:hasGeneralResourceType fabio:Chapter .
        """,
        """
        :my-resource a fabio:Chapter ;
                fabio:hasSequenceIdentifier "3" .
        """ ;
    vaem:rationale """
This is used as a controlled term to specify a given general resource type ("Chapter").

This is also used in combination with `fabio:hasSequenceIdentifier` to specify the sequence identifier/number type.
        """@en ;
    rdfs:comment "A defined document section, forming part of or intended for inclusion within a larger document, usually with its own title or chapter number. Different chapters within a document such as a book or a report may each be independently authored, or may all be authored by a single individual or group of authors."@en ;
    rdfs:isDefinedBy fabio: ;
    rdfs:subClassOf fabio:Expression ;
    vs:term_status reg:statusStable .

