@prefix : <https://ontology.inferal.com/modules/range/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix mod: <https://w3id.org/mod#> .
@prefix ord: <https://ontology.inferal.com/modules/ordering/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pubacc: <https://ontology.inferal.com/modules/publication-access/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .

<https://ontology.inferal.com/modules/range/owl>
    a owl:Ontology, pubacc:PublicationManagedOntology ;
    dcterms:accessRights pubacc:PublicAccess ;
    owl:imports : ;
    owl:imports ord:owl ;
    dcterms:title "Range Ontology - OWL Addendum" ;
    dcterms:description "OWL class and property typing layered on the RDFS Range Ontology." ;
    dcterms:license <https://creativecommons.org/licenses/by/4.0/> ;
    dcterms:source :, ord:owl ;
    vann:preferredNamespacePrefix "rng" ;
    vann:preferredNamespaceUri "https://ontology.inferal.com/modules/range/" ;
    mod:status "draft" ;
    rdfs:label "Range Ontology - OWL Addendum" ;
    rdfs:comment "This addendum imports the RDFS base vocabulary and upstream OWL addenda, then adds OWL typing for consumers that want OWL class and property declarations." ;
    owl:versionInfo "0.1.0" .

:Range a owl:Class .

:lowerBound a owl:ObjectProperty .
:upperBound a owl:ObjectProperty .
:lowerInclusive a owl:DatatypeProperty .
:upperInclusive a owl:DatatypeProperty .
:includesValue a owl:ObjectProperty .
