@prefix : <https://ontology.inferal.com/modules/localization/> .
@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/localization/owl>
    a owl:Ontology, pubacc:PublicationManagedOntology ;
    dcterms:accessRights pubacc:PublicAccess ;
    owl:imports : ;
    owl:imports ord:owl ;
    dcterms:title "Localization Ontology - OWL Addendum" ;
    dcterms:description "OWL class and property typing layered on the RDFS Localization Ontology." ;
    dcterms:license <https://creativecommons.org/licenses/by/4.0/> ;
    dcterms:source :, ord:owl ;
    vann:preferredNamespacePrefix "loc" ;
    vann:preferredNamespaceUri "https://ontology.inferal.com/modules/localization/" ;
    mod:status "draft" ;
    rdfs:label "Localization 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. loc:at is deliberately left as rdf:Property because it accepts both literal and resource values." ;
    owl:versionInfo "0.1.0" .

:Frame a owl:Class .
:Locus a owl:Class .
:Localization a owl:Class .

:orderedBy a owl:ObjectProperty .
:inFrame a owl:ObjectProperty .
:localizes a owl:ObjectProperty .
:defaultFrame a owl:ObjectProperty .
:frameOfDatatype a owl:ObjectProperty .
