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

# Shipping Zones

Shipping zones allow you to divide the globe into geographical regions where the same shipping methods and rates apply for all addresses. Kibo eCommerce comes with default shipping zones. You can create other shipping zones with regular expressions, which are sequences of characters used for search patterns.

## Create a Shipping Zone

Kibo eCommerce recommends editing or duplicating existing zones as a starting place for creating your own custom zones, rather than making one from scratch. However, if you must create a new shipping zone:

1. Go to **System** > **Settings** > **Shipping** > **Zones**.
2. Select the site you want to specify options for from the top bar.
3. Expand the actions menu to edit or duplicate existing zones. If you do not want to edit or duplicate an existing zone, click **Create New Zone**.
4. Enter a **Name**.
5. Enter a **Description**.
6. Enter an **Expression**. The expression generally uses a format based on country codes, such as *CountryCode eq "AR"*.
7. Click **Save**.

## Shipping Zone Expressions

Expressions apply to a shipment's destination address. You can use the following properties in custom expressions:

* *CountryCode*
* *CityOrTown*
* *StateOrProvince*
* *PostalOrZipCode*
* *AddressType*
* *Address1*
* *Address2*
* *Address3*
* *Address4*

Regular expressions use comparison and Boolean operators. The following operators are supported for shipping zones:

| Operator | Definition   |
| -------- | ------------ |
| *CONT*   | Contains     |
| *EQ*     | Equals       |
| *GT*     | Greater Than |
| *IN*     | Contained In |
| *LT*     | Less Than    |
| *NE*     | Not Equals   |
| *SW*     | Starts With  |
| *OR*     | Boolean Or   |
| *AND*    | Boolean And  |

## Zone Example

For example, you want to create shipping zones for your sporting goods stores: one for the lower 48 US states and one for all countries in South America. You enter the following expression for the lower 48 US states zone:

<img src="https://mintcdn.com/kibocommerce-59e68a4a/Tt_xgrUgWofJH_Sj/img/shipping-zone-example.png?fit=max&auto=format&n=Tt_xgrUgWofJH_Sj&q=85&s=d54f1f3256a64bf002d1123aa32cb404" alt="Close-up of shipping zone configurations for an example United States zone" width="785" height="368" data-path="img/shipping-zone-example.png" />

### Expression:

```
CountryCode eq "US" and StateorProvince ne "HI" and StateorProvince ne "AK"
```

And you enter the following expression for the South American zone:

<img src="https://mintcdn.com/kibocommerce-59e68a4a/Tt_xgrUgWofJH_Sj/img/shipping-zone-example-2.png?fit=max&auto=format&n=Tt_xgrUgWofJH_Sj&q=85&s=b808967727aa3d4a8f7d9c27bc1e32a1" alt="Close-up of expression logic specifying country codes for an example South America zone" width="1380" height="404" data-path="img/shipping-zone-example-2.png" />

### Expression:

```
CountryCode eq "AR" or CountryCode eq "BO" or CountryCode eq "BR" or CountryCode eq "CL" or CountryCode eq "CO" or CountryCode eq "EC" or CountryCode eq "GF" or CountryCode eq "GY" or CountryCode eq "PY" or CountryCode eq "PE" or CountryCode eq "SR" or CountryCode eq "UY" or CountryCode eq "VE"
```
