# Download cookie policy

{% hint style="success" %}
**Access Type**: Compliance Report - Viewer or Editor
{% endhint %}

A cookie policy explains how a website uses cookies and similar tracking technologies to collect and process user data. It describes the types of cookies used, their purposes, and how long they are stored. The policy also informs users how to manage their cookie preferences, which is often required by laws such as the GDPR.

In this article, we will cover how to download the cookie policy generated from a domain's compliance report.&#x20;

{% hint style="info" %}
The downloaded cookie policy will be a JSON file that includes all of the trackers found in the latest compliance report for the domain.&#x20;
{% endhint %}

Click **Compliance Report** on the right-hand panel and select the download icon inline with a domain on the subsequent page.

Click **Download cookie policy** from the drop-down menu.

<figure><img src="/files/iKz9SAlqebyv8xKjGfys" alt="" width="563"><figcaption></figcaption></figure>

A JSON file with the trackers found on the domain will be downloaded onto your local machine. Please refer to the table below for more information on the properties included for each tracker dropped by a vendor.&#x20;

<table><thead><tr><th width="211.48333740234375">Property</th><th width="118.066650390625">Data Type</th><th>Description</th></tr></thead><tbody><tr><td>Vendor Name</td><td>String</td><td>Name of the vendor that is dropping the tracker</td></tr><tr><td>Tracker Name</td><td>String</td><td>Name of the tracker</td></tr><tr><td>Tracker domain</td><td>String</td><td>Domain of the tracker</td></tr><tr><td>Tracker exemption</td><td>String</td><td>Indicates if the tracker is configured as consent-exempt in the tracker policy for the domain:<br><br><strong>Exempted</strong> | <strong>Not exempted</strong></td></tr><tr><td>Tracker exemption title</td><td>String</td><td>Exemption category configured for a tracker that is consent-exempt</td></tr><tr><td>Tracker exemption description</td><td>String</td><td>Description of the exemption category configured for a tracker that is consent-exempt</td></tr><tr><td>Life Time</td><td>String</td><td>Lifetime of the tracker before it expires<br><br><strong># months</strong> | <strong>session/unknown</strong></td></tr><tr><td>1st Party/ 3rd Party</td><td>String</td><td>Indicates whether the tracker is a 1st-party or 3rd-party tracker</td></tr><tr><td>Tracker Type</td><td>String</td><td>Indicates whether the track is a:<br><br><strong>cookie</strong> | <strong>pixel</strong> | <strong>web_storage</strong> | <strong>Indexed DB</strong></td></tr><tr><td>Tracker Purposes Ids</td><td>Array</td><td>Purpose IDs for purposes mapped to the tracker in the tracker policy for the domain</td></tr><tr><td>Tracker Purposes Names</td><td>Array</td><td>Purpose names for purposes mapped to the tracker in the tracker policy for the domain</td></tr></tbody></table>

```json
[
  {
    "Vendor Name": "Vendor Example 1",
    "Trackers": [
      {
        "Vendor Name": "Vendor Example 1",
        "Tracker Name": "_ls37_#",
        "Tracker domain": "writethedocs.app",
        "Tracker exemption": "Exempted",
        "Tracker exemption title": "Audience measurement",
        "Tracker exemption description": "trackers measuring the audience, in the specific case of the Article 5 of the guidelines about the cookies and other trackers",
        "Life Time": "13 months",
        "1st Party/ 3rd Party": "1st party",
        "Tracker Type": "cookie",
        "Tracker Purposes Ids": [],
        "Tracker Purposes Names": []
      }
    ]
  },
  {
    "Vendor Name": "Google Advertising Products",
    "Trackers": [
      {
        "Vendor Name": "Google Advertising Products",
        "Tracker Name": "rc::c",
        "Tracker domain": "google.com",
        "Tracker exemption": "Not exempted",
        "Tracker exemption title": "-",
        "Tracker exemption description": "-",
        "Life Time": "session / unknown",
        "1st Party/ 3rd Party": "3rd party",
        "Tracker Type": "web_storage",
        "Tracker Purposes Ids": [
          "select_personalized_ads",
          "cookies",
          "create_ads_profile"
        ],
        "Tracker Purposes Names": [
          "Use profiles to select personalised advertising",
          "Store and/or access information on a device",
          "Create profiles for personalised advertising"
        ]
      }
    ]
  }
]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.didomi.io/compliance-report/tracker-policy/download-cookie-policy.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
