{% extends "docs/docs_base.html" %} {% block doc_title %}Crash Reporting Dictionary / {{ dataset }} / {{ field_name }}{% endblock %} {% block main_content %}

Crash Reporting Data Dictionary / {{ dataset }} {% for breadcrumb in field_path_breadcrumbs %} {% if breadcrumb[1] == "[]" %} / [] {% else %} / {{ breadcrumb[1] }} {% endif %} {% endfor %}

{{ field_name }}

{% if "array" in type %} {% elif "object" in type %} {% endif %} {% if dataset == "processed" %} {% if search_field %} {% else %} {% endif %} {% if source_annotation %} {% endif %} {% endif %} {% if dataset == "annotation" %} {% endif %}
dataset {{ dataset }}
description {{ description | safe }}
type {{ type }}
array contents {% if "object" not in field_data.get("items", {}).get("type", "") %} {{ field_data.get("items", {}).get("type") }} {% else %}
    {% for arrayfield in field_data["items"].get("properties", []) %}
  • {{ arrayfield }}
  • {% endfor %}
{% endif %}
object contents
super search field {{ search_field }} ({{ search_field_query_type }})
example data from last 7 days {% if example_data %} {% for item in example_data %}
{{ item|string|truncate(100, killwords=True, end="...") }}
{% endfor %} {% elif "protected" in permissions %} This field is not public. No examples will be shown. {% else %} No examples available. Either this field is new and has no data or this field is rarely emitted and has no data this week or this field is not configured to allow it to be used for aggregations in Elasticsearch. {% endif %}
super search field This field is not indexed.
source annotation {{ source_annotation }}
data reviews
    {% for thing in data_reviews %} {% if thing.startswith("http") %}
  • {{ thing }}
  • {% else %}
  • {{ thing }}
  • {% endif %} {% endfor %}
related processed field {% if processed_field %} {{ processed_field }} {% endif %}
products that emitted this field in last 7 days {% if products_for_field %} {{ products_for_field|join(', ') }} {% else %} None. {% endif %}
permissions

{{ permissions|join(', ') }}

{% if "protected" in permissions %}

This field is protected data. See Protected Data Access for details.

{% endif %}

Do you see errors in this documentation? Please tell us by filing a bug or {% if dataset == "annotation" %} fix the field data in the raw crash schema . {% elif dataset == "processed" %} fix the field data in the processed crash schema . {% endif %}

{% endblock %}