Decision Detail

Request ID: {{ decision.request_id }}
Timestamp: {{ decision.timestamp }}
Agent ID: {{ decision.agent_id }}
Duration: {{ decision.duration_ms }}ms
{% if decision.sources_queried %}
Sources Queried: {{ decision.sources_queried | join(", ") }}
{% endif %} {% if decision.sources_denied %}
Sources Denied: {{ decision.sources_denied | join(", ") }}
{% endif %}

Rule Trace

{% if decision.rule_trace %}
    {% for rule in decision.rule_trace %}
  • {{ rule }}
  • {% endfor %}
{% else %}

No rules fired

{% endif %}
{% if decision.routing_decisions %}

Routing Decisions

{{ decision.routing_decisions | tojson(indent=2) }}
{% endif %} {% if decision.scope_constraints %}

Scope Constraints

{{ decision.scope_constraints | tojson(indent=2) }}
{% endif %} {% if decision.denial_records %}

Denial Records

{{ decision.denial_records | tojson(indent=2) }}
{% endif %} {% if decision.facts_asserted_summary %}

Facts Asserted

{{ decision.facts_asserted_summary | tojson(indent=2) }}
{% endif %}