# Context

Discover the variables you can use in queries.

In CQL, the term *context* refers to the data your queries can use to gain insight into the user's environment. This includes information like the user's geographic location or the page they are currently viewing.

The data available for your queries depends on the channel through which your users interact with your application. For example, websites have pages, while mobile applications have screens.

To access the information available in the context, you use [variables](#variables). For example, the [`page`](#navigation) variable gives you information about the current page, while the [`location`](#location) variable tells you the current geographic location.

The table below lists the currently available variables and what they provide:

| Variable    | Type                                        | Description                                 |
| ----------- | ------------------------------------------- | ------------------------------------------- |
| `now`       | [Date-time](data-types/date-time/date-time) | The current date and time.                  |
| `yesterday` | [Date](data-types/date-time/date)           | Yesterday's date.                           |
| `today`     | [Date](data-types/date-time/date)           | Today's date.                               |
| `tomorrow`  | [Date](data-types/date-time/date)           | Tomorrow's date.                            |
| `user`      | [User](data-types/user/user)                | The user currently using the application.   |
| `user`      | [User](data-types/user/user)                | The user currently using the application.   |
| `session`   | [Session](data-types/session/web-session)   | The user's current session or visit.        |
| `device`    | [Device](data-types/technology/device)      | The user's device.                          |
| `location`  | [Location](data-types/location/location)    | The user's geographic location.             |
| `cart`      | [Cart](data-types/shopping/cart)            | The contents of the user's shopping cart.   |
| `campaign`  | [Campaign](data-types/marketing/campaign)   | The last campaign the user interacted with. |
| `context`   | [Context](data-types/web/web-context)       | The evaluation's context.                   |
| `page`      | [Page](data-types/web/page)                 | The webpage currently viewed by the user.   |
| `browser`   | [Browser](data-types/technology/browser)    | The user's web browser.                     |

## Variables

The following sections present a categorized list of variables you can use in your queries, sometimes accompanied by informative icons.

These icons indicate the availability and usage restrictions of the information. For example, it may be available only to identified users or during web sessions.

Here is what each indicator means:

- **Integration required**: Information that is not automatically collected by our SDKs and must be sent by your application to be available for your queries.
- **Available for web sessions only**: Channel-specific information that is only available for web sessions, such as the current page or browser.
- **Available for identified users only**: As part of our commitment to privacy, we prevent access to [personally identifiable information](https://en.wikipedia.org/wiki/Personally_identifiable_information) of unidentified users to promote respect for the [right to erasure](https://en.wikipedia.org/wiki/Right_to_be_forgotten).

### Evaluation

Evaluation variables are specific values associated with each evaluation, including the date, time, and context in which the evaluation occurs.

For example, the [`context`](data-types/web/web-context) variable might provide information about an upgrade opportunity, such as the name of the feature and the number of members in the user's organization. These details can give you insight into the user's environment and help you decide the best offer to present.

This is a list of the evaluation variables you can use in your queries:

| Expression                         |                         | Example               |                                                                                           |
| ---------------------------------- | ----------------------- | --------------------- | ----------------------------------------------------------------------------------------- |
| `now`                              |                         | `2026-08-04T01:00:00` | ([Read more about this property.](data-types/date-time/date-time))                        |
| `yesterday`                        |                         | `2026-08-03`          | ([Read more about this property.](data-types/date-time/date))                             |
| `today`                            |                         | `2026-08-04`          | ([Read more about this property.](data-types/date-time/date))                             |
| `tomorrow`                         |                         | `2026-08-05`          | ([Read more about this property.](data-types/date-time/date))                             |
| `context`                          |                         | `["timeZone": ...]`   | ([Read more about this property.](data-types/web/web-context))                            |
| `context's timeZone`               |                         | `"America/Sao_Paulo"` | ([Read more about this property.](data-types/web/web-context#web-context-timezone-prop))  |
| `context's /*<custom-attribute>*/` | *Integration required.* | `"some value"`        | ([Read more about this property.](data-types/web/web-context#web-context-attribute-prop)) |

### User

User variables provide information about the person currently using the application, such as their name, email address, and age.

The following table lists the variables and properties you can use to access information about the user:

| Expression                              |                                                              | Example                     |                                                                                                   |
| --------------------------------------- | ------------------------------------------------------------ | --------------------------- | ------------------------------------------------------------------------------------------------- |
| `user`                                  |                                                              | `["name": "John Doe", ...]` | ([Read more about this property.](data-types/user/user))                                          |
| `user's id`                             | *Integration required. Available for identified users only.* | `"user-123"`                | ([Read more about this property.](data-types/user/user#user-id-prop))                             |
| `user's name`                           | *Integration required. Available for identified users only.* | `"John Doe"`                | ([Read more about this property.](data-types/user/user#user-name-prop))                           |
| `user's firstName`                      | *Integration required. Available for identified users only.* | `"John"`                    | ([Read more about this property.](data-types/user/user#user-firstname-prop))                      |
| `user's lastName`                       | *Integration required. Available for identified users only.* | `"Doe"`                     | ([Read more about this property.](data-types/user/user#user-lastname-prop))                       |
| `user's age`                            | *Integration required.*                                      | `30`                        | ([Read more about this property.](data-types/user/user#user-age-prop))                            |
| `user's birthDate`                      |                                                              | `2000-08-31`                | ([Read more about this property.](data-types/user/user#user-birthdate-prop))                      |
| `user's gender`                         | *Integration required. Available for identified users only.* | `"male"`                    | ([Read more about this property.](data-types/user/user#user-gender-prop))                         |
| `user's email`                          | *Integration required. Available for identified users only.* | `"john.doe@email.com"`      | ([Read more about this property.](data-types/user/user#user-email-prop))                          |
| `user's alternateEmail`                 | *Integration required. Available for identified users only.* | `"john.doe@work.com"`       | ([Read more about this property.](data-types/user/user#user-alternateemail-prop))                 |
| `user's phone`                          | *Integration required. Available for identified users only.* | `"+1 987 654 321"`          | ([Read more about this property.](data-types/user/user#user-phone-prop))                          |
| `user's alternatePhone`                 | *Integration required. Available for identified users only.* | `"+1 123 456 789"`          | ([Read more about this property.](data-types/user/user#user-alternatephone-prop))                 |
| `user's address`                        | *Integration required. Available for identified users only.* | `["street": ...]`           | ([Read more about this property.](data-types/user/user#user-address-prop))                        |
| `property street of user's address`     | *Integration required. Available for identified users only.* | `"Main St"`                 | ([Read more about this property.](data-types/location/address#address-street-prop))               |
| `property city of user's address`       | *Integration required. Available for identified users only.* | `"New York"`                | ([Read more about this property.](data-types/location/address#address-city-prop))                 |
| `property state of user's address`      | *Integration required. Available for identified users only.* | `"NY"`                      | ([Read more about this property.](data-types/location/address#address-state-prop))                |
| `property country of user's address`    | *Integration required. Available for identified users only.* | `"US"`                      | ([Read more about this property.](data-types/location/address#address-country-prop))              |
| `property postalCode of user's address` | *Integration required. Available for identified users only.* | `"10001"`                   | ([Read more about this property.](data-types/location/address#address-postalcode-prop))           |
| `user's avatar`                         | *Integration required. Available for identified users only.* | `https://ex.com/john.png`   | ([Read more about this property.](data-types/user/user#user-avatar-prop))                         |
| `user's company`                        | *Integration required. Available for identified users only.* | `"Croct Inc."`              | ([Read more about this property.](data-types/user/user#user-company-prop))                        |
| `user's companyUrl`                     | *Integration required. Available for identified users only.* | `https://croct.com`         | ([Read more about this property.](data-types/user/user#user-companyurl-prop))                     |
| `user's jobTitle`                       | *Integration required. Available for identified users only.* | `"Software Engineer"`       | ([Read more about this property.](data-types/user/user#user-jobtitle-prop))                       |
| `user's interests`                      | *Integration required.*                                      | `["react", ...]`            | ([Read more about this property.](data-types/user/user#user-interests-prop))                      |
| `user's activities`                     | *Integration required.*                                      | `["signed-up", ...]`        | ([Read more about this property.](data-types/user/user#user-activities-prop))                     |
| `user's stats`                          |                                                              | `["pageviews": 1, ...]`     | ([Read more about this property.](data-types/user/user#user-stats-prop))                          |
| `property sessions of user's stats`     |                                                              | `1`                         | ([Read more about this property.](data-types/user/user-statistics#user-statistics-sessions-prop)) |
| `property orders of user's stats`       |                                                              | `2`                         | ([Read more about this property.](data-types/user/user-statistics#user-statistics-orders-prop))   |
| `user's /*<custom-attribute>*/`         | *Integration required.*                                      | `"some value"`              | ([Read more about this property.](data-types/user/user#user-attribute-prop))                      |

### Session

Session variables provide information about the current visitor session, such as how long the user has been active or custom attributes that your application may have set.

The following table lists the variables and properties that you can use to access information about the current session:

| Expression                              |                                    | Example                  |                                                                                                                     |
| --------------------------------------- | ---------------------------------- | ------------------------ | ------------------------------------------------------------------------------------------------------------------- |
| `session`                               |                                    | `["start": ...]`         | ([Read more about this property.](data-types/session/web-session))                                                  |
| `session's start`                       |                                    | `2026-08-04T12:00:00`    | ([Read more about this property.](data-types/session/web-session#web-session-start-prop))                           |
| `session's end`                         |                                    | `2026-08-04T12:01:40`    | ([Read more about this property.](data-types/session/web-session#web-session-end-prop))                             |
| `session's duration`                    |                                    | `PT1M40S`                | ([Read more about this property.](data-types/session/web-session#web-session-duration-prop))                        |
| `session's landingPage`                 | *Available for web sessions only.* | `https://croct.com/demo` | ([Read more about this property.](data-types/session/web-session#web-session-landingpage-prop))                     |
| `session's referrer`                    | *Available for web sessions only.* | `https://google.com`     | ([Read more about this property.](data-types/session/web-session#web-session-referrer-prop))                        |
| `session's stats`                       |                                    | `["pageviews": 1, ...]`  | ([Read more about this property.](data-types/session/web-session#web-session-stats-prop))                           |
| `property pageviews of session's stats` | *Available for web sessions only.* | `1`                      | ([Read more about this property.](data-types/session/web-session-statistics#web-session-statistics-pageviews-prop)) |
| `property tabviews of session's stats`  | *Available for web sessions only.* | `2`                      | ([Read more about this property.](data-types/session/web-session-statistics#web-session-statistics-tabviews-prop))  |
| `property orders of session's stats`    |                                    | `3`                      | ([Read more about this property.](data-types/session/web-session-statistics#web-session-statistics-orders-prop))    |
| `session's /*<custom-attribute>*/`      | *Integration required.*            | `"some value"`           | ([Read more about this property.](data-types/session/web-session#web-session-attribute-prop))                       |

### Navigation

Navigation variables provide information about the journey that the user has taken through your application, such as the current page or screen that the user is viewing.

The following table lists the variables and properties that you can use to access information about the user's navigation:

| Expression                      |                                    | Example                            |                                                                            |
| ------------------------------- | ---------------------------------- | ---------------------------------- | -------------------------------------------------------------------------- |
| `page`                          | *Available for web sessions only.* | `["title": "Croct - Docs", ...]`   | ([Read more about this property.](data-types/web/page))                    |
| `page's title`                  | *Available for web sessions only.* | `"Croct - Docs"`                   | ([Read more about this property.](data-types/web/page#page-title-prop))    |
| `page's url`                    | *Available for web sessions only.* | `https://croct.io/docs?lang=en#js` | ([Read more about this property.](data-types/web/page#page-url-prop))      |
| `page's path`                   | *Available for web sessions only.* | `"/docs"`                          | ([Read more about this property.](data-types/web/page#page-path-prop))     |
| `page's query`                  | *Available for web sessions only.* | `["lang": "en"]`                   | ([Read more about this property.](data-types/web/page#page-query-prop))    |
| `property lang of page's query` | *Available for web sessions only.* | `"en"`                             | ([Read more about this property.](data-types/web/page#page-query-prop))    |
| `page's anchor`                 | *Available for web sessions only.* | `"js"`                             | ([Read more about this property.](data-types/web/page#page-anchor-prop))   |
| `page's referrer`               | *Available for web sessions only.* | `https://google.com`               | ([Read more about this property.](data-types/web/page#page-referrer-prop)) |

### Technology

Technology variables provide information about the technologies the user is using to access your application, such as their browser or device.

The following table lists the variables and properties that you can use to access information about the user's technology:

| Expression                        |                                    | Example                   |                                                                                            |
| --------------------------------- | ---------------------------------- | ------------------------- | ------------------------------------------------------------------------------------------ |
| `browser`                         | *Available for web sessions only.* | `["name": "Chrome", ...]` | ([Read more about this property.](data-types/technology/browser))                          |
| `browser's name`                  | *Available for web sessions only.* | `"Chrome"`                | ([Read more about this property.](data-types/technology/browser#browser-name-prop))        |
| `browser's version`               | *Available for web sessions only.* | `"80.0.2"`                | ([Read more about this property.](data-types/technology/browser#browser-version-prop))     |
| `browser's type`                  | *Available for web sessions only.* | `"web"`                   | ([Read more about this property.](data-types/technology/browser#browser-type-prop))        |
| `device`                          |                                    | `["name": "Mac", ...]`    | ([Read more about this property.](data-types/technology/device))                           |
| `device's name`                   |                                    | `"Mac"`                   | ([Read more about this property.](data-types/technology/device#device-name-prop))          |
| `device's vendor`                 |                                    | `"Apple"`                 | ([Read more about this property.](data-types/technology/device#device-vendor-prop))        |
| `device's os`                     |                                    | `["name": "macOS", ...]`  | ([Read more about this property.](data-types/technology/device#device-os-prop))            |
| `device's category`               |                                    | `"desktop"`               | ([Read more about this property.](data-types/technology/device#device-category-prop))      |
| `property name of device's os`    |                                    | `"macOS"`                 | ([Read more about this property.](data-types/technology/operating-system#os-name-prop))    |
| `property version of device's os` |                                    | `"10.15.1"`               | ([Read more about this property.](data-types/technology/operating-system#os-version-prop)) |

### Location

Location variables provide information about the geographic location from which the user is accessing your application, such as the user's country or city.

The following table lists the variables and properties that you can use to access information about the user's location:

| Expression                                     | Example                                        |                                                                                                      |
| ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------------------------------------------------------------- |
| `location`                                     | `["continent": "North America", ...]`          | ([Read more about this property.](data-types/location/location))                                     |
| `location's continent`                         | `["name": "North America", "code": "NA"]`      | ([Read more about this property.](data-types/location/location#location-continent-name-prop))        |
| `property name of location's continent`        | `"North America"`                              | ([Read more about this property.](data-types/location/location#location-continent-name-prop))        |
| `location's continentName`                     | `"North America"`                              | ([Read more about this property.](data-types/location/location#location-continentname-prop))         |
| `property code of location's continent`        | `"NA"`                                         | ([Read more about this property.](data-types/location/location#location-continent-code-prop))        |
| `location's continentCode`                     | `"NA"`                                         | ([Read more about this property.](data-types/location/location#location-continentcode-prop))         |
| `location's country`                           | `["name": "United States", "code": "US"]`      | ([Read more about this property.](data-types/location/location#location-country-prop))               |
| `property name of location's country`          | `"United States"`                              | ([Read more about this property.](data-types/location/location#location-country-name-prop))          |
| `location's countryName`                       | `"United States"`                              | ([Read more about this property.](data-types/location/location#location-countryname-prop))           |
| `property code of location's country`          | `"US"`                                         | ([Read more about this property.](data-types/location/location#location-country-code-prop))          |
| `location's countryCode`                       | `"US"`                                         | ([Read more about this property.](data-types/location/location#location-countrycode-prop))           |
| `location's region`                            | `["name": "California", "code": "CA"]`         | ([Read more about this property.](data-types/location/location#location-region-prop))                |
| `property name of location's region`           | `"California"`                                 | ([Read more about this property.](data-types/location/location#location-region-name-prop))           |
| `location's regionName`                        | `"California"`                                 | ([Read more about this property.](data-types/location/location#location-regionname-prop))            |
| `property code of location's region`           | `"CA"`                                         | ([Read more about this property.](data-types/location/location#location-region-code-prop))           |
| `location's regionCode`                        | `"CA"`                                         | ([Read more about this property.](data-types/location/location#location-regioncode-prop))            |
| `location's state`                             | `["name": "California", "code": "CA"]`         | ([Read more about this property.](data-types/location/location#location-state-prop))                 |
| `property name of location's state`            | `"California"`                                 | ([Read more about this property.](data-types/location/location#location-state-name-prop))            |
| `location's stateName`                         | `"California"`                                 | ([Read more about this property.](data-types/location/location#location-statename-prop))             |
| `property code of location's state`            | `"CA"`                                         | ([Read more about this property.](data-types/location/location#location-state-code-prop))            |
| `location's stateCode`                         | `"CA"`                                         | ([Read more about this property.](data-types/location/location#location-statecode-prop))             |
| `location's city`                              | `["city": "Mountain View"]`                    | ([Read more about this property.](data-types/location/location#location-city-prop))                  |
| `property name of location's city`             | `"Mountain View"`                              | ([Read more about this property.](data-types/location/location#location-city-name-prop))             |
| `location's cityName`                          | `"Mountain View"`                              | ([Read more about this property.](data-types/location/location#location-cityname-prop))              |
| `location's coordinates`                       | `["latitude": 36.7783, "longitude": 119.4179]` | ([Read more about this property.](data-types/location/location#location-coordinates-prop))           |
| `property latitude of location's coordinates`  | `36.7783`                                      | ([Read more about this property.](data-types/location/location#location-coordinates-latitude-prop))  |
| `location's latitude`                          | `36.7783`                                      | ([Read more about this property.](data-types/location/location#location-latitude-prop))              |
| `property longitude of location's coordinates` | `119.4179`                                     | ([Read more about this property.](data-types/location/location#location-coordinates-longitude-prop)) |
| `location's longitude`                         | `119.4179`                                     | ([Read more about this property.](data-types/location/location#location-longitude-prop))             |
| `location's currency`                          | `["name":"US Dollar", "code": "USD"]`          | ([Read more about this property.](data-types/location/location#location-currency-prop))              |
| `property code of location's currency`         | `"USD"`                                        | ([Read more about this property.](data-types/location/location#location-currency-code-prop))         |
| `location's currencyCode`                      | `"USD"`                                        | ([Read more about this property.](data-types/location/location#location-currencycode-prop))          |
| `property name of location's currency`         | `"US Dollar"`                                  | ([Read more about this property.](data-types/location/location#location-currency-name-prop))         |
| `location's currencyName`                      | `"US Dollar"`                                  | ([Read more about this property.](data-types/location/location#location-currencyname-prop))          |
| `location's timeZone`                          | `"America/Los_Angeles"`                        | ([Read more about this property.](data-types/location/location#location-timezone-prop))              |
| `location's languages`                         | `["en", "en-CA", "fr-CA"]`                     | ([Read more about this property.](data-types/location/location#location-languages-prop))             |
| `location's phoneCode`                         | `"+1"`                                         | ([Read more about this property.](data-types/location/location#location-phonecode-prop))             |
| `location's postalCode`                        | `"90210"`                                      | ([Read more about this property.](data-types/location/location#location-postalcode-prop))            |
| `location's population`                        | `100000`                                       | ([Read more about this property.](data-types/location/location#location-population-prop))            |
| `location's tags`                              | `["warm", "lake", "tourism"]`                  | ([Read more about this property.](data-types/location/location#location-tags-prop))                  |

### Marketing

Marketing variables provide information about the marketing campaigns that the user has engaged with, such as the name of the campaign or where the user came from.

The following table lists the variables and properties that you can use to access information about marketing campaigns:

| Expression           | Example                            |                                                                                         |
| -------------------- | ---------------------------------- | --------------------------------------------------------------------------------------- |
| `campaign`           | `["name": "personalization", ...]` | ([Read more about this property.](data-types/marketing/campaign))                       |
| `campaign's name`    | `"personalization"`                | ([Read more about this property.](data-types/marketing/campaign#campaign-name-prop))    |
| `campaign's source`  | `"google"`                         | ([Read more about this property.](data-types/marketing/campaign#campaign-source-prop))  |
| `campaign's medium`  | `"paid"`                           | ([Read more about this property.](data-types/marketing/campaign#campaign-medium-prop))  |
| `campaign's content` | `"main-banner"`                    | ([Read more about this property.](data-types/marketing/campaign#campaign-content-prop)) |
| `campaign's term`    | `"personalized landing page"`      | ([Read more about this property.](data-types/marketing/campaign#campaign-term-prop))    |

### Shopping

Shopping variables provide information about the buying behavior of the user, such as the stage of the purchase process or the items in the user's cart.

The following table lists the variables and properties that you can use to access information about shopping behavior:

| Expression                                 |                         | Example                     |                                                                                                |
| ------------------------------------------ | ----------------------- | --------------------------- | ---------------------------------------------------------------------------------------------- |
| `cart`                                     | *Integration required.* | `["total": 599.00, ...]`    | ([Read more about this property.](data-types/shopping/cart))                                   |
| `cart's stage`                             | *Integration required.* | `"checkout"`                | ([Read more about this property.](data-types/shopping/cart#cart-stage-prop))                   |
| `cart's items`                             | *Integration required.* | `[[...], [...], ...]`       | ([Read more about this property.](data-types/shopping/cart#cart-items-prop))                   |
| `property index of cart.item[1st]`         | *Integration required.* | `0`                         | ([Read more about this property.](data-types/shopping/cart-item#cart-item-index-prop))         |
| `property id of cart.item[1st]`            | *Integration required.* | `"12345"`                   | ([Read more about this property.](data-types/shopping/cart-item#cart-item-id-prop))            |
| `property name of cart.item[1st]`          | *Integration required.* | `"iPhone"`                  | ([Read more about this property.](data-types/shopping/cart-item#cart-item-name-prop))          |
| `property sku of cart.item[1st]`           | *Integration required.* | `"IP-512GB-BLACK"`          | ([Read more about this property.](data-types/shopping/cart-item#cart-item-sku-prop))           |
| `property category of cart.item[1st]`      | *Integration required.* | `"Electronics"`             | ([Read more about this property.](data-types/shopping/cart-item#cart-item-category-prop))      |
| `property brand of cart.item[1st]`         | *Integration required.* | `"Apple"`                   | ([Read more about this property.](data-types/shopping/cart-item#cart-item-brand-prop))         |
| `property variant of cart.item[1st]`       | *Integration required.* | `"512GB Black"`             | ([Read more about this property.](data-types/shopping/cart-item#cart-item-variant-prop))       |
| `property displayPrice of cart.item[1st]`  | *Integration required.* | `"599.00"`                  | ([Read more about this property.](data-types/shopping/cart-item#cart-item-displayprice-prop))  |
| `property originalPrice of cart.item[1st]` | *Integration required.* | `"699.00"`                  | ([Read more about this property.](data-types/shopping/cart-item#cart-item-originalprice-prop)) |
| `property url of cart.item[1st]`           | *Integration required.* | `https://ex.com`            | ([Read more about this property.](data-types/shopping/cart-item#cart-item-url-prop))           |
| `property image of cart.item[1st]`         | *Integration required.* | `https://ex.com/iphone.png` | ([Read more about this property.](data-types/shopping/cart-item#cart-item-image-prop))         |
| `property quantity of cart.item[1st]`      | *Integration required.* | `1`                         | ([Read more about this property.](data-types/shopping/cart-item#cart-item-quantity-prop))      |
| `property coupon of cart.item[1st]`        | *Integration required.* | `"10OFF"`                   | ([Read more about this property.](data-types/shopping/cart-item#cart-item-coupon-prop))        |
| `property discount of cart.item[1st]`      | *Integration required.* | `100.00`                    | ([Read more about this property.](data-types/shopping/cart-item#cart-item-discount-prop))      |
| `property total of cart.item[1st]`         | *Integration required.* | `599.00`                    | ([Read more about this property.](data-types/shopping/cart-item#cart-item-total-prop))         |
| `cart's currency`                          | *Integration required.* | `"usd"`                     | ([Read more about this property.](data-types/shopping/cart#cart-currency-prop))                |
| `cart's shippingPrice`                     | *Integration required.* | `9.99`                      | ([Read more about this property.](data-types/shopping/cart#cart-shippingprice-prop))           |
| `cart's coupon`                            | *Integration required.* | `"FREE-SHIPPING"`           | ([Read more about this property.](data-types/shopping/cart#cart-coupon-prop))                  |
| `cart's discount`                          | *Integration required.* | `9.99`                      | ([Read more about this property.](data-types/shopping/cart#cart-discount-prop))                |
| `cart's costs`                             | *Integration required.* | `["shipping": 9.99, ...]`   | ([Read more about this property.](data-types/shopping/cart#cart-costs-prop))                   |
| `cart's taxes`                             | *Integration required.* | `["tax": 0.00, ...]`        | ([Read more about this property.](data-types/shopping/cart#cart-taxes-prop))                   |
| `cart's subtotal`                          | *Integration required.* | `609.98`                    | ([Read more about this property.](data-types/shopping/cart#cart-subtotal-prop))                |
| `cart's total`                             | *Integration required.* | `599.00`                    | ([Read more about this property.](data-types/shopping/cart#cart-total-prop))                   |
| `cart's lastUpdate`                        | *Integration required.* | `2026-08-04T13:01`          | ([Read more about this property.](data-types/shopping/cart#cart-lastupdate-prop))              |
