Subjects (Decision Scopes)
This object is part of the following subjects:
| Subject EUID |
Kind |
Role |
Status |
Subject Key |
Name |
{% for subject in subjects_for_object %}
| {{ subject.euid }} |
{{ subject.kind }} |
{% if subject.role == 'anchor' %}
⚓ Anchor
{% elif subject.role == 'member' %}
📎 Member
{% else %}
{{ subject.role }}
{% endif %}
|
{{ subject.status }} |
{{ subject.subject_key }} |
{{ subject.name }} |
{% endfor %}
{% endif %}
{% if object.json_addl and 'action_groups' in object.json_addl %}
{% for group_key, group_value in object.json_addl['action_groups'].items() %}
{{ group_value.group_name }}
{% for action_key, action_value in group_value.actions.items() %}
{% endfor %}
{% endfor %}
{% endif %}
Audit Log
{% if audit_logs %}
| Column Name |
Old Value |
New Value |
Changed By |
Changed At |
Operation Type |
{% for log in audit_logs %}
| {{ log.column_name }} |
{% if log.column_name == 'json_addl' %}
{{ log.old_value }}
|
{{ log.new_value }} |
{% else %}
{{ log.old_value }} |
{{ log.new_value }} |
{% endif %}
{{ log.changed_by }} |
{{ log.changed_at }} |
{{ log.operation_type }} |
{% endfor %}
{% else %}
No audit log entries found.
{% endif %}