---
title: "Case Processor"
slug: "case-processor"
updated: 2024-11-26T17:25:48Z
published: 2024-11-26T17:25:48Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://help.tritondigital.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Case Processor

The **Case Processor** is used to transform attributes into various casings (UPPERCASE, lowercase, Title Case).

| **Param name** | **Mandatory** | **Description** | **Possible Value** |
| --- | --- | --- | --- |
| key | Yes | Name of the attribute we will be modifying. | Not null. |
| case | Yes | Case we will transform to (UPPERCASE, lowercase, Title Case). | U, L, T. |

**Example XML:**

```xml
<CaseProcessor>
   <CaseItems>
     <CaseItem key="cue_title" case="T" />
   </CaseItems>
</CaseProcessor>
```
