> For the complete documentation index, see [llms.txt](https://developers.wiki.resourcefulbees.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.wiki.resourcefulbees.com/developers/spawn-data/spawn-data/y-level.md).

# Y Level

Y Level can be represented in a few ways, below are the listed ways they can be shown.

They can be listed as an object with a min and max like as such.

```json
"yLevel": {
    "min": 100,
    "max": 150
}
```

You can also format them as a list of 2 integers

```json
"yLevel": [100, 150]
```

And you can just format it as a single integer if you would like them to spawn at a single Y level.

```json
"yLevel": 100
```

{% hint style="info" %}
**Note:**

Y Level have a range from `-512` to `512`
{% endhint %}
