@prefix ci: <https://ontology.inferal.com/modules/company-intelligence/> .
@prefix conf: <https://ontology.inferal.com/modules/confidence/> .
@prefix ex: <https://example.com/insurance-market/query/delegated-authority/> .
@prefix insm: <https://ontology.inferal.com/modules/insurance-market/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ex:source a ci:Source .
ex:instrument a ci:Source .
ex:jurisdiction a ci:Jurisdiction ; rdfs:label "Example jurisdiction" .
ex:confidence a conf:ConfidenceAssessment .
ex:authority a insm:DelegatedAuthority ;
    insm:authorityGrantor ex:carrier ;
    insm:authorityGrantee ex:mga ;
    insm:authorityInstrument ex:instrument ;
    insm:authorizedAction insm:QuoteAction, insm:BindAction ;
    insm:authorizedRole insm:ManagingGeneralAgentRole ;
    insm:authorityScope "Bind the stated commercial product up to the contractual limit." ;
    insm:jurisdiction ex:jurisdiction ;
    ci:validFrom "2026-01-01"^^xsd:date ;
    ci:validThrough "2026-12-31"^^xsd:date ;
    ci:confidenceAssessment ex:confidence ;
    ci:source ex:source .
