@prefix : <https://ontology.inferal.com/modules/company-intelligence/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

:
    a owl:Ontology, pubacc:PublicationManagedOntology ;
    dcterms:accessRights pubacc:PublicAccess ;
    owl:imports : ;
    rdfs:label "Company Intelligence OWL addendum" ;
    rdfs:comment "Reasoning-oriented additions for the Company Intelligence ontology. The addendum intentionally avoids strong equivalence to FIBO, ORG, Schema.org, GLEIF, XBRL, BODS, or QUDT terms." ;
    owl:versionInfo "0.1.0" .

:LegalEntity
    owl:disjointWith :Brand, :Product .

:Brand
    owl:disjointWith :Product .

:FinancialFact
    owl:disjointWith :MetricObservation .

:EntityIdentifier
    rdfs:subClassOf [
        a owl:Restriction ;
        owl:onProperty :identifierScheme ;
        owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
        owl:onClass :IdentifierScheme
    ] ;
    rdfs:subClassOf [
        a owl:Restriction ;
        owl:onProperty :identifiesEntity ;
        owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
        owl:onClass :EconomicEntity
    ] .
