> For the complete documentation index, see [llms.txt](https://cortex-docs.paloaltonetworks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cortex-docs.paloaltonetworks.com/cortex-xsiam-developer-guide/cortex-xsiam-development-guide/integrations-and-scripts/advanced-topics/transform-language-dt.md).

# Transform Language (DT)

Cortex XSIAM Transform Language (commonly referred to as DT) is used for various context related functions in Cortex XSIAM. DT is a query language for JSON objects, similar to JSONQuery.

**Context Example**

The following sample context data shows the various ways DT can access, aggregate, and mutate data.

```programlisting
{
    "URL": {
        "Data": "google.com"
    },
    "IP": {
        "Hostname": "google-public-dns-a.google.com",
        "RecordedFuture": {
            "FirstSeen": "2010-04-27T12:46:51.000Z",
            "Criticality": "None",
            "LastSeen": "2019-02-06T11:13:38.139Z"
        },
        "Address": "8.8.8.8",
        "Geo": {
            "Country": "United States",
            "Location": "37.751, -97.822"
        },
        "ASN": 15169
    },
    "DBotScore": [{
        "Vendor": "urlscan.io",
        "Indicator": "google.com",
        "Score": 0,
        "Type": "url"
    }, {
        "Vendor": "ipinfo",
        "Indicator": "8.8.8.8",
        "Score": 0,
        "Type": "ip"
    }, {
        "Vendor": "Recorded Future",
        "Indicator": "8.8.8.8",
        "Score": 0,
        "Type": "ip"
    }, {
        "Vendor": "VirusTotal",
        "Indicator": "8.8.8.8",
        "Score": 1,
        "Type": "ip"
    }],
    "URLScan": {
        "URL": "google.com",
        "Country": ["IE"],
        "Certificates": [{
            "SubjectName": "<span>www.google</span>.com",
            "ValidFrom": "2018-12-19 08:16:00",
            "ValidTo": "2019-03-13 08:16:00",
            "Issuer": "Google Internet Authority G3"
        }, {
            "SubjectName": "*.google.com",
            "ValidFrom": "2018-12-19 08:17:39",
            "ValidTo": "2019-03-13 08:17:00",
            "Issuer": "Google Internet Authority G3"
        }, {
            "SubjectName": "<span>www.google</span>.de",
            "ValidFrom": "2018-12-19 08:16:00",
            "ValidTo": "2019-03-13 08:16:00",
            "Issuer": "Google Internet Authority G3"
        }, {
            "SubjectName": "*.g.doubleclick.net",
            "ValidFrom": "2018-12-19 08:17:00",
            "ValidTo": "2019-03-13 08:17:00",
            "Issuer": "Google Internet Authority G3"
        }, {
            "SubjectName": "*.apis.google.com",
            "ValidFrom": "2018-12-19 08:16:00",
            "ValidTo": "2019-03-13 08:16:00",
            "Issuer": "Google Internet Authority G3"
        }],
        "ASN": "AS15169"
    },
    "MaxMind": {
        "Address": "8.8.8.8",
        "ISP": "Google",
        "UserType": "business",
        "Organization": "Google LLC",
        "ISO_Code": "US",
        "Geo": {
            "Location": "37.751, -97.822",
            "Country": "United States",
            "Continent": "North America",
            "Accuracy": 1000
        },
        "ASN": 15169,
        "RegisteredCountry": "United States"
    }
}
```

**Nested Values**

DT can access keys from nested dictionaries as well as dictionaries.

Using the above context data sample, you can access the following key values:

* The "Continent" key value, located in the "Geo" dictionary, which is located in the "MaxMind" dictionary.
* The "Hostname" key value, located in the "IP" dictionary.
* The "FirstSeen" key value, located in the "RecordedFuture" dictionary, which is located in the "IP" dictionary.

Access the key values using the following DT statements:

| Example                          | Result                         |
| -------------------------------- | ------------------------------ |
| `${MaxMind.Geo.Continent}`       | North America                  |
| `${IP.Hostname}`                 | google-public-dns-a.google.com |
| `${IP.RecordedFuture.FirstSeen}` | 2010-04-27T12:46:51.000Z       |

**Dealing with arrays**

Access array values as you access any other dictionary (or JSON) key in dot notation, with an index.

{% hint style="info" %}

### Note

Indices start with 0, not 1.
{% endhint %}

Using the above context data sample:

Under "URLScan", there is an array called "Certificates". If you want to access the "SubjectName" value of the first entry, use the following DT statement.

| Example                                     | Result                                                                                                                                               |
| ------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| `${URLScan.Certificates.SubjectName}`       | \["[www.google.com](http://www.google.com)", "\*.google.com", "[www.google.de](http://www.google.de)", "\*.g.doubleclick.net", "\*.apis.google.com"] |
| `${URLScan.Certificates.[0].SubjectName}`   | [www.google.com](http://www.google.com)                                                                                                              |
| `${URLScan.Certificates.[0:2].SubjectName}` | \["[www.google.com](http://www.google.com)", "\*.google.com", "[www.google.de](http://www.google.de)"]                                               |

If you want to retrieve a range of results, you can use **`[0:9]`** where "0" is the beginning of the array and "9" is the 9th position in the array.

**Selectors**

DT also allows for conditions within the statement itself and uses JavaScript to select the context items. This is a way to bind results together by embedding a selection into the DT string.

Notice that `val` is used quite often in the DT string. This is a JavaScript method that exposes the value at the given context path.

The following are a few examples of selector methods:

| Example                                                                                           | Result                                                                               | Description                                                                                                                                                                                                            |
| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `${DBotScore.Vendor(val == 'urlscan.io')}`                                                        | `urlscan.io`                                                                         | Returns only vendors that exactly match the urlscan.io description.                                                                                                                                                    |
| `${URLScan.Certificates.SubjectName( val.indexOf('www') == 0)}`                                   | `[<span>www.google</span>.com, <span>www.google</span>.de]`                          | Returns any SubjectName that starts with "www".                                                                                                                                                                        |
| `${URLScan.Certificates.SubjectName( val.indexOf('doubleclick') >= 0)}`                           | `*.g.doubleclick.net`                                                                | Returns any SubjectName that contains doubleclick.                                                                                                                                                                     |
| `${URLScan.Country( val.toUpperCase().indexOf('IE') >= 0)}`                                       | `IE`                                                                                 | Returns any country that contains IE or ie or any mixed case.                                                                                                                                                          |
| `${URLScan.Certificates(val.SubjectName.indexOf('de') == val.length-2).ValidTo}`                  | `2019-03-13 08:16:00`                                                                | Returns all ValidTo for certificates that have SubjectName ending with de. Notice that we tested a relative path to “SubjectName” (“de”) and returned a different path (“ValidTo”).                                    |
| `${URLScan.Certificates(val.ValidFrom == val1---URLScan.Certificates.[0].ValidFrom).SubjectName}` | `["<span>www.google</span>.com", "<span>www.google</span>.de", "*.apis.google.com"]` | Returns all SubjectNames for certificates that have the same ValidTo time as the first certificate in the array. Note that the bind value (val1) does not start with ‘.’ and will DT the context from the top context. |

Selectors help avoid duplicate entries and can be used to add context to existing entries.

An example of how this can be used in your code:

```programlisting
ec = {
    "Data": "www.demisto.com",
    "Malicious": {
        "Vendor": "Palo Alto Networks",
        "Description": "This indicator found to be malicious by Palo Alto Networks"
    }
}


demisto.results({
 Type: entryTypes.note,
 Contents: 'related',
 ContentsFormat: formats.json,
 HumanReadable: 'md',
 EntryContext: {'URL(val.Data && val.Data == obj.Data)': ec 
})
```

The code snippet `'URL(val.Data &amp;&amp; val.Data == obj.Data)'` will look for entries in the context whose name found under "Data" are the same. If it finds a match, it will update the existing context, If it does not, it will create a new entry in the context because it views the entry as "unique" to the existing values.

**Mutators**

Since DT is JavaScript based, it can also mutate a result if your integration needs a different result format. A classic use case for this is joining a server address obtained from another integration to an endpoint found by your integration to create a URL which may be used by your integration at a later time.

Following are a few examples:

| Example                                                                                                                         | Result                                                    | Description                                                                                                    |
| ------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
| `${URLScan.Certificates(val.SubjectName.indexOf("doubleclick") > -1).ValidFrom=foo(val);function foo(aa) { return aa + "Z"; }}` | `2018-12-19 08:17:00Z`                                    | Returns the timestamp where the SubjectName contains the word "doubleclick". Then it appends "Z" to the value. |
| `${MaxMind.Organization=val.toLowerCase()}`                                                                                     | `google llc`                                              | Returns all the organizations but in lower case.                                                               |
| `${DBotScore.Vendor(val.indexOf('Recorded')>=0)=val.toLowerCase()}`                                                             | `"Recorded Future"`                                       | Returns all the vendors containing “Recorded” but in lower case.                                               |
| `${DBotScore.type=val.ip +': ' + val.Vendor}`                                                                                   | `["ip: ipinfo", "ip: Recorded Future", "ip: VirusTotal"]` | Returns the concatenated ip and vendor for all DBotScores.                                                     |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://cortex-docs.paloaltonetworks.com/cortex-xsiam-developer-guide/cortex-xsiam-development-guide/integrations-and-scripts/advanced-topics/transform-language-dt.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
