# Reports & FTO Categories

<figure><img src="/files/62ryYnDkzEdrrLWWFTIv" alt=""><figcaption><p>shared/config_reports.lua</p></figcaption></figure>

***

**🗂️ Report Categories**

Used to classify incident reports inside the MDT.

```lua
Config.ReportsCategories = {
    ['police'] = {
        { label = "Traffic", type = "traffic" },
        { label = "Assault", type = "assault" },
        { label = "Robbery", type = "robbery" },
        { label = "Murder", type = "murder" },
    },
    ['ems'] = {
        { label = "Traffic", type = "traffic" },
        { label = "Assault", type = "assault" },
        { label = "Robbery", type = "robbery" },
        { label = "Murder", type = "murder" },
    }
}
```

Each entry includes:

* `label`: What appears in the MDT UI.
* `type`: Used internally to categorize the report.

***

**📋 FTO Evaluation Categories**

Used in FTO (Field Training Officer) reports for performance evaluations.

```lua
Config.FTOReportsCategories = {
    ['police'] = {
        { name = "Appearance", rating = 3, comments = "" },
        { name = "Knowledge", rating = 3, comments = "" },
        { name = "Communication", rating = 3, comments = "" },
        { name = "Officer Safety", rating = 3, comments = "" },
        { name = "Control of Conflict", rating = 3, comments = "" },
        { name = "Decision Making", rating = 3, comments = "" },
        { name = "Report Writing", rating = 3, comments = "" },
    },
    ['ems'] = {
        { name = "Appearance", rating = 3, comments = "" },
        { name = "Knowledge", rating = 3, comments = "" },
        { name = "Communication", rating = 3, comments = "" },
        { name = "Officer Safety", rating = 3, comments = "" },
        { name = "Control of Conflict", rating = 3, comments = "" },
        { name = "Decision Making", rating = 3, comments = "" },
        { name = "Report Writing", rating = 3, comments = "" },
    }
}
```

Each category can be rated and commented on during training assessments.

***


---

# 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://kartik-scripts.gitbook.io/docs/scripts/kartik-mdt/configuration/reports-and-fto-categories.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.
