> For the complete documentation index, see [llms.txt](https://incident-tracker.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://incident-tracker.gitbook.io/docs/admin-guide/application-information/api-settings/incident-search-model-reference.md).

# Incident Search Model (Reference)

This page documents all available request body fields for the \`POST /api/incident/search\` endpoint.  Each property listed below represents a searchable attribute

```json
{
  "id_start": 12000,
  "id_end": 12500,

  "culture": "en-us",

  "reported_by_name": "Jane Smith",
  "reported_by_id": 4321,

  "date_of_report_start": "01/01/2026",
  "date_of_report_end": "01/31/2026",
  "date_of_incident_start": "12/15/2025",
  "date_of_incident_end": "12/31/2025",

  "location_name": "HQ",
  "sublocation_name": "Building A",
  "room_name": "101",

  "status_name": "Open",
  "status_id": 2,

  "priority_name": "High",
  "priority_id": 3,

  "assigned_to_name": "John Doe",
  "assigned_to_id": 9876,

  "duration_total": 2.5,
  "duration_operator": 4,

  "attached_file_count": 1,
  "attached_file_count_operator": 4,

  "report_sponsor_name": "Pat Lee",
  "report_sponsor_id": 55,

  "category_name": "Safety",
  "subcategory_name": "Near Miss",

  "person_name": "Alex Johnson",
  "witness_name": "Morgan Reed",

  "form_name": "Incident Intake",
  "form_id": 10,

  "note_author_name": "Jane Smith",
  "day_of_incident": "Tuesday"
}
```
