{% extends "docs/docs_base.html" %} {% macro table_content(fields, columns_number, dataset) %} {% for row in fields | batch(columns_number, "") %} {% for field in row %} {% if field == "" %} {% else %} {% endif %} {% endfor %} {% endfor %}
{{ field }}
{%- endmacro %} {% block doc_title %}Crash Reporting Data Dictionary{% endblock %} {% block doc_content %}

Crash Reporting Data Dictionary

Crash Reporting Data Dictionary

Crash annotations and raw crash fields

{{ table_content(annotation_fields, 4, 'annotation') }}

Processed crash fields

{{ table_content(processed_fields, 4, 'processed') }}
{% endblock %}