File Information
Raw JSON
Name
{{ file['annotations']['file/base']['record']['name'] }}
Extension
{{ file['annotations']['file/base']['record']['extension'] or 'None' }}
Size
{{ file_size['human'] }}
Media Type
{{ file['annotations']['file/base']['record']['media_type'] }}
Date Modified (Local)
{{ local_filesystem_info['date_modified']['human'] }}
Date Created (Local)
{{ local_filesystem_info['date_created']['human'] }}
Content Hashes
SHA-256
{{ file['hash'] }}
BLAKE3
{% if file['similarity_hash'] %}
{{ file['validation_hash'] }}
TLSH
{% endif %}
{% if file.get('quick_hash') %}
{{ file['similarity_hash'] }}
Quick Hash
{% endif %}
{{ file['quick_hash'] }}
Annotations
{% for key, annotation in file['annotations'].items() %}
{% if annotation and key != 'file/base' %}
{% endif %}
{% endfor %}
{{ key }}
{{ render_annotation_fields(annotation['record']) }}
Tags
{% for tag in file['tags'] %}
{{ tag['name'] }}: {{ tag['value'] }}
{% endfor %}
{{ raw_data_json }}