@prefix decision: <https://ontology.inferal.com/modules/decision/> .
@prefix ex: <https://example.com/decision/query/> .

# Minimal motivation and alternative resources for a conforming deliberation.
ex:goal a decision:Goal .
ex:issue a decision:Issue .
ex:option a decision:Option .

# These three links answer why the activity occurred and what it considered.
ex:deliberation
    a decision:Deliberation ;
    decision:addressesIssue ex:issue ;
    decision:pursuesGoal ex:goal ;
    decision:considersOption ex:option .

# The decision is the commitment produced by the deliberation, not its record.
ex:decision
    a decision:Decision ;
    decision:resultedFromDeliberation ex:deliberation ;
    decision:selectedOption ex:option .

# The record documents the commitment while retaining separate identity.
ex:record
    a decision:DecisionRecord ;
    decision:recordsDecision ex:decision .

# Implementation is a later activity and must be asserted separately from selection.
ex:action
    a decision:ResultingAction ;
    decision:implementsDecision ex:decision ;
    decision:producedConsequence ex:observed .

# The observation is present because the action explicitly produced it in this trace.
ex:observed a decision:ObservedConsequence .
