> For the complete documentation index, see [llms.txt](https://thatgravyboat.gitbook.io/iron-chests-restocked-wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://thatgravyboat.gitbook.io/iron-chests-restocked-wiki/chests/item-predicate/int-bounds.md).

# Int Bounds

## Description

Int bounds are a check for something that is an int and check if it is in a set of bounds.

There is 2 ways to reference and int bounds and that is:

{% tabs %}
{% tab title="Constant" %}
You can first reference it as a constant so in JSON it will just be the number like such:

```json
{
    "intBounds": 15
}
```

{% endtab %}

{% tab title="Min Max" %}
You can first reference it as a min max value which will look like:

```json
{
    "intBounds": {
        "min": 3,
        "max": 10
    }
}
```

{% endtab %}
{% endtabs %}
