{% set omitted = row['omitted_fields'] | from_json or [] %} {% set pruned = row['pruned_fields'] | from_json or [] %}
Request body
{% if row['body_excerpt'] %} {% if row['req_bytes'] and row['req_bytes'] > body_excerpt_max %}

Showing first {{ body_excerpt_max | bytes }} of {{ row['req_bytes'] | bytes }}. Full body not stored (integrity hash recorded).

{% endif %}
{{ row['body_excerpt'] | format_body(content_type) | redact_marks }}
{% elif 'body_excerpt' in omitted %}

Not stored: capture.yaml has bodies: false. Size ({{ row['req_bytes'] | bytes }}) and SHA-256 were recorded.

{% elif 'body_excerpt' in pruned %}

Cleared by retention on {{ row['pruned_at'] }}. Digest recorded; the chain still verifies.

{% else %}
(empty)
{% endif %}