> For the complete documentation index, see [llms.txt](https://docs.gridmate.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gridmate.io/troubleshooting/config-samples/field-path-stages.md).

# Field Path Stages

```coffeescript
[
   {
      "label": "New",
      "filter": {
         "Status": {
            "operator": "in",
            "value": "('New')"
         }
      }
   },
   {
      "label": "Working On",
      "filter": {
         "Status": {
            "operator": "in",
            "value": "('Escalated','Investigating')"
         }
      }
   },
   {
      "label": "On Hold",
      "filter": {
         "Status": {
            "operator": "in",
            "value": "('On Hold')"
         }
      }
   },
   {
      "label": "Closed",
      "filter": {
         "Status": {
            "operator": "in",
            "value": "('Closed')"
         }
      }
   }
]
```
