@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 ti: <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .

ti:TimeInterval a owl:Class ;
    rdfs:label "time interval"@en ;
    vann:example """
    :my-person
        pro:holdsRoleInTime :my-person-role .

    :my-person-role a pro:RoleInTime ;
        pro:withRole pro:archivist .
    """ ;
    rdfs:comment "Two (starting and ending) points in time that define a particular period of time."@en ;
    rdfs:isDefinedBy ti: ;
    vs:term_status reg:statusStable .

