# Entity NBT

About how entity NBTs and the different types there are.

# NBT

## <span style="color: rgb(230, 126, 35);">What is NBT</span>

**NBT** or **N**amed **B**inary **T**ag, is a tree-like structure that Minecraft uses to store entity data. This data can include `attributes`, `definitions`, and `identifier` information. This information can control things what the entity looks like, how it interacts with the world, and its behavior. Knowing how NBT works can give you insight on certain things you may encounter or want to achieve. NBT however is not the entity itself but instead a snapshot of its runtime components that we can load to make a copy of the entity. In bedrock all NBT is encoded in <span style="color: rgb(230, 126, 35);">[little-endian](https://en.wikipedia.org/wiki/Endianness)</span> which is important if you want to extract it into a stringified format like the one below.

# Entity NBT Format

## <span style="color: rgb(230, 126, 35);">NBT FORMAT (WIP)</span>

##### <span style="color: rgb(149, 165, 166);">**Legend**</span>

<table border="1" id="bkmrk-icon-meaning-string-" style="border-collapse: collapse; width: 29.6429%; height: 509px;"><colgroup><col style="width: 20.1726%;"></col><col style="width: 79.8274%;"></col></colgroup><tbody><tr style="height: 38.6667px;"><td style="height: 38.6667px;"><span style="color: rgb(230, 126, 35);">**Icon**</span></td><td style="height: 38.6667px;"><span style="color: rgb(230, 126, 35);">**Meaning**</span></td></tr><tr><td>[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)</td><td>String</td></tr><tr style="height: 38.6667px;"><td style="height: 38.6667px;">[![short.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/short.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/short.png)</td><td style="height: 38.6667px;">Short</td></tr><tr style="height: 38.6667px;"><td style="height: 38.6667px;">[![longArray.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/longarray.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/longarray.png)</td><td style="height: 38.6667px;">Long Array</td></tr><tr style="height: 38.6667px;"><td style="height: 38.6667px;">[![long.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/long.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/long.png)</td><td style="height: 38.6667px;">Long</td></tr><tr style="height: 38.6667px;"><td style="height: 38.6667px;">[![jsonObject.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/jsonobject.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/jsonobject.png)</td><td style="height: 38.6667px;">JSON Object</td></tr><tr style="height: 38.6667px;"><td style="height: 38.6667px;">[![integerArray.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integerarray.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integerarray.png)</td><td style="height: 38.6667px;">Integer Array</td></tr><tr style="height: 38.6667px;"><td style="height: 38.6667px;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 38.6667px;">Integer</td></tr><tr style="height: 38.6667px;"><td style="height: 38.6667px;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)</td><td style="height: 38.6667px;">Float</td></tr><tr style="height: 38.6667px;"><td style="height: 38.6667px;">[![double.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/double.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/double.png)</td><td style="height: 38.6667px;">Double</td></tr><tr style="height: 29.8px;"><td style="height: 29.8px;">[![byteArray.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/bytearray.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/bytearray.png)</td><td style="height: 29.8px;">Byte Array</td></tr><tr style="height: 29.8px;"><td style="height: 29.8px;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)</td><td style="height: 29.8px;">Byte</td></tr><tr style="height: 29.8px;"><td style="height: 29.8px;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 29.8px;">Boolean</td></tr><tr style="height: 38.6667px;"><td style="height: 38.6667px;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 38.6667px;">Array

</td></tr></tbody></table>

## <span style="color: rgb(230, 126, 35);">Format Tree</span>


<details id="bkmrk-root-label-%C2%A0"><summary>root label</summary>

<table border="1" style="border-collapse: collapse; width: 100%; height: 50.7px;"><colgroup><col style="width: 6.5513%;"></col><col style="width: 93.4487%;"></col></colgroup><tbody><tr style="height: 50.7px;"><td style="height: 50.7px;">[![jsonObject.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/jsonobject.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/jsonobject.png)  
</td><td style="height: 50.7px;">Where the NBT tree starts</td></tr></tbody></table>

<details><summary>identifier</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines entity type ID.   
  
Example: "**minecraft:pig**".</td></tr></tbody></table>

</details><details><summary>definitions</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Adds or removes components from the from the baseline entity components. These are entity mostly specific. **+** adds a component not on the base entity and **-** removes a component on the base entity.

  
Example: "**<span style="background-color: rgb(52, 179, 3); color: rgb(0, 117, 20);">+minecraft:can\_ride\_default</span>**"

</td></tr></tbody></table>

</details><details><summary>UniqueID</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![long.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/long.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/long.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unique numerical ID of the entity used to identify it from others of it type.

  
Example: "**-4294967289**".

</td></tr></tbody></table>

</details><details><summary>Pos</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Shows numerical values as to the position of the entity in 3D space.

</td></tr></tbody></table>

<details><summary>X</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Shows the X position of the entity.

</td></tr></tbody></table>

</details><details><summary>Y</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Shows the Y position of the entity.

</td></tr></tbody></table>

</details><details><summary>Z</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Shows the Z position of the entity.

</td></tr></tbody></table>

</details></details><details><summary>Rotation</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines the orientation angle of the entity.

</td></tr></tbody></table>

<details><summary>Yaw</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">The orientation of the entity rotating clockwise around the X axis. (No more than 360<span class="font3" id="bkmrk-%C2%B0">°</span>)

</td></tr></tbody></table>

</details><details><summary>Pitch</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">The orientation of the entity rotating up and down along the Y axis. (No more than ±90<span class="font3" id="bkmrk-%C2%B0-1">°</span>)

</td></tr></tbody></table>

</details></details><details><summary>Motion</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines the momentum assigned to a given entity.

</td></tr></tbody></table>

<details><summary>dX</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines momentum along the X axis.

</td></tr></tbody></table>

</details><details><summary>dY</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines momentum along the Y axis.

</td></tr></tbody></table>

</details><details><summary>dZ</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines momentum along the Z axis.

</td></tr></tbody></table>

</details></details><details><summary>CustomNameVisible</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Shows a custom name given to an entity regardless if you are looking directly at them or not.</td></tr></tbody></table>

</details><details><summary>LastDimensionId</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Last dimension visited by the entity. (Seemingly deprecated)</td></tr></tbody></table>

</details><details><summary>FallDistance</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Distance the entity has fallen.</td></tr></tbody></table>

</details><details><summary>Fire</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![short.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/short.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/short.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Number of ticks till the fire on the entity is extinguished.</td></tr></tbody></table>

</details><details><summary>OnGround</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines if an entity is in the state of being on the ground. (Not falling)</td></tr></tbody></table>

</details><details><summary>Invulnerable</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Makes the target entity unable to be harmed by any natural source. Entities with this tag cannot be moved by fishing rods. Creative players can deal damage regardless of the tag being applied to the target entity.</td></tr></tbody></table>

</details><details><summary>PortalCooldown</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Number of ticks before a given entity can use a nether portal again.</td></tr></tbody></table>

</details><details><summary>IsGlobal</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines if the entity can function in <span style="color: rgb(230, 126, 35);">[unloaded chunks](https://bedrockwiki.com/books/chunks/page/unloaded-chunks)</span>.</td></tr></tbody></table>

</details><details><summary>IsAutonomous</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Exact use is unknown.</td></tr></tbody></table>

</details><details><summary>LinksTag</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines a connection between a ride and a rider. </td></tr></tbody></table>

<details><summary>entityID</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![long.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/long.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/long.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unique numerical ID of the rider entity the ride entity has linked to.

  
Example: "**-3410204032983**".

</td></tr></tbody></table>

</details><details><summary>linkID</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Numerical value used to determine which rider is which on the ride entity. (Starts at 0 and increments by 1 for each passenger) </td></tr></tbody></table>

</details></details><details><summary>LootDropped</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines if an entity can or cannot drop loot. This is applied after the entity has received the Dead tag to ensure it doesn't drop loot more than once.</td></tr></tbody></table>

</details><details><summary>Color</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines an entities color type. For example the difference between a black cat and a siamese cat is this value.</td></tr></tbody></table>

</details><details><summary>Color2</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines an entities secondary color. Only tropical fish use this.</td></tr></tbody></table>

</details><details><summary>Strength</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines how much a llama can carry. ( 3 \* number = Items carriable ) </td></tr></tbody></table>

</details><details><summary>StrengthMax</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Does the same thing as "`Strength`" seemingly.</td></tr></tbody></table>

</details><details><summary>Sheared</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether a sheep is sheared. </td></tr></tbody></table>

</details><details><summary>IsIllagerCaptain</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether an entity is an Illager Captain.</td></tr></tbody></table>

</details><details><summary>OwnerNew</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![long.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/long.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/long.png)</td><td style="height: 50.7px; width: 93.8016%;">Shows new owner ID. This is often for projectiles.

Example: "**-4294967295**"

</td></tr></tbody></table>

</details><details><summary>OwnerID</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![long.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/long.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/long.png)</td><td style="height: 50.7px; width: 93.8016%;">Shows current owner ID. This is often for projectiles.

Example: "**-4294967295**"

</td></tr></tbody></table>

</details><details><summary>Sitting</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether an entity is sitting.

</td></tr></tbody></table>

</details><details><summary>IsBaby</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether an entity is in its baby variant.

</td></tr></tbody></table>

</details><details><summary>IsTamed</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether an entity is tame.

</td></tr></tbody></table>

</details><details><summary>IsTrusting</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether an entity is trusting of the player.

</td></tr></tbody></table>

</details><details><summary>IsOrphaned</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether an entity is spawned without parents.

</td></tr></tbody></table>

</details><details><summary>IsAngry</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether an entity is hostile when it is normally neutral.

</td></tr></tbody></table>

</details><details><summary>IsOutOfControl</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Is set to true when a player is controlling it and it is a ship.

</td></tr></tbody></table>

</details><details><summary>Variant</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines entity variant type.

</td></tr></tbody></table>

</details><details><summary>MarkVariant</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines the mark variant of an entity.

</td></tr></tbody></table>

</details><details><summary>Saddled</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Is set to true when a player has mounted it and it is a living entity.

</td></tr></tbody></table>

</details><details><summary>IsChested</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines if a working animal such as a horse carries a chest on its back.

</td></tr></tbody></table>

</details><details><summary>ShowBottom</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether an end crystal shows the bedrock slab below it. (Used in the end dimension's crystals)

</td></tr></tbody></table>

</details><details><summary>IsGliding</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether an entity is in the gliding state with an elytra.

</td></tr></tbody></table>

</details><details><summary>IsSwiming</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether an entity is in the swimming state.

</td></tr></tbody></table>

</details><details><summary>IsEating</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether an entity is eating something.

</td></tr></tbody></table>

</details><details><summary>IsScared</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether an entity is in the scared state.

</td></tr></tbody></table>

</details><details><summary>IsStunned</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether ravager is stunned.

</td></tr></tbody></table>

</details><details><summary>IsRoaring</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines whether ravager is roaring.

</td></tr></tbody></table>

</details><details><summary>SkinID</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines a villager/zombie villagers skin texture.

</td></tr></tbody></table>

</details><details><summary>Persistent</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines if an entity can or cannot despawn when out of the player's mob spawning radius.

</td></tr></tbody></table>

</details><details><summary>Tags</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Holds player applied tags that an entity has. (these are applied via /tag)

</td></tr></tbody></table>

<details><summary>tag (not a real namespace)</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)</td><td style="height: 50.7px; width: 93.8016%;">Tag identifier

Example: "CanopyAdmin"

</td></tr></tbody></table>

</details></details><details><summary>CustomDisplayTile</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Set to true when a minecart is displaying a custom block.

</td></tr></tbody></table>

</details><details><summary>DisplayBlock</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![jsonObject.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/jsonobject.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/jsonobject.png)</td><td style="height: 50.7px; width: 93.8016%;">Set to true when a minecart is displaying a custom block.

</td></tr></tbody></table>

<details><summary>block (not a real namespace)</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)</td><td style="height: 50.7px; width: 93.8016%;">Block ID of a block to be displayed within the minecart.

Example: "minecraft:dirt"

</td></tr></tbody></table>

</details></details><details><summary>DisplayOffset</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Number of pixels the display block of a minecart is offset along the Y axis.

</td></tr></tbody></table>

</details><details><summary>Willing</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines if a villager is willing to breed or not. This value is set to false for a period of time after breeding.

</td></tr></tbody></table>

</details><details><summary>SpawnedByNight</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines if a mob was spawned naturally by the night cycle or not.

</td></tr></tbody></table>

</details><details><summary>ItemInHand</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![jsonObject.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/jsonobject.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/jsonobject.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines what item an entity holding.

</td></tr></tbody></table>

<details><summary>Count</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Count of items in the hand.

</td></tr></tbody></table>

</details><details><summary>Name</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines the item type in the hand.

Example: "minecraft:crossbow"

</td></tr></tbody></table>

</details><details><summary>WasPickedUp</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines if the entity got the item by picking it up.

</td></tr></tbody></table>

</details><details><summary>Damage</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![short.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/short.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/short.png)</td><td style="height: 50.7px; width: 93.8016%;">This may say damage but it does not store the damage for the item.

</td></tr></tbody></table>

</details><details><summary>CanPlaceOn</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines what the item be placed on when the user is in Adventure mode.

</td></tr></tbody></table>

<details><summary>block (not real namespace)</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)</td><td style="height: 50.7px; width: 93.8016%;">Block ID it can be placed on.

Example: "minecraft:stone"

</td></tr></tbody></table>

</details></details><details><summary>CanDestroy</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines what the item can break when the user is in Adventure mode.

</td></tr></tbody></table>

<details><summary>block (Not real namespace)</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)</td><td style="height: 50.7px; width: 93.8016%;">Block ID it can destroy.

Example: "minecraft:stone"

</td></tr></tbody></table>

</details></details><details><summary>tag</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines additional properties.

</td></tr></tbody></table>

</details></details><details><summary>Mainhand</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines what item is in the entities mainhand.

</td></tr></tbody></table>

<details><summary>item (not a real namespace)</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![jsonObject.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/jsonobject.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/jsonobject.png)</td><td style="height: 50.7px; width: 93.8016%;">Item object.

</td></tr></tbody></table>

<details><summary>Count</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Count of items.

</td></tr></tbody></table>

</details><details><summary>Name</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines the item type.

Example: "minecraft:crossbow"

</td></tr></tbody></table>

</details><details><summary>WasPickedUp</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines if the entity got the item by picking it up.

</td></tr></tbody></table>

</details><details><summary>Damage</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![short.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/short.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/short.png)</td><td style="height: 50.7px; width: 93.8016%;">This may say damage but it does not store the damage for the item.

</td></tr></tbody></table>

</details><details><summary>CanPlaceOn</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines what the item be placed on when the user is in Adventure mode.

</td></tr></tbody></table>

<details><summary>block (not real namespace)</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)</td><td style="height: 50.7px; width: 93.8016%;">Block ID it can be placed on.

Example: "minecraft:stone"

</td></tr></tbody></table>

</details></details><details><summary>CanDestroy</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines what the item can break when the user is in Adventure mode.

</td></tr></tbody></table>

<details><summary>block (Not real namespace)</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)</td><td style="height: 50.7px; width: 93.8016%;">Block ID it can destroy.

Example: "minecraft:stone"

</td></tr></tbody></table>

</details></details><details><summary>tag</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines additional properties.

</td></tr></tbody></table>

</details></details></details><details><summary>Offhand</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines what item is in the entities offhand.

</td></tr></tbody></table>

<details><summary>item (not a real namespace)</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![jsonObject.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/jsonobject.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/jsonobject.png)</td><td style="height: 50.7px; width: 93.8016%;">Item object.

</td></tr></tbody></table>

<details><summary>Count</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Count of items.

</td></tr></tbody></table>

</details><details><summary>Name</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines the item type.

Example: "minecraft:crossbow"

</td></tr></tbody></table>

</details><details><summary>WasPickedUp</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines if the entity got the item by picking it up.

</td></tr></tbody></table>

</details><details><summary>Damage</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![short.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/short.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/short.png)</td><td style="height: 50.7px; width: 93.8016%;">This may say damage but it does not store the damage for the item.

</td></tr></tbody></table>

</details><details><summary>CanPlaceOn</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines what the item be placed on when the user is in Adventure mode.

</td></tr></tbody></table>

<details><summary>block (not real namespace)</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)</td><td style="height: 50.7px; width: 93.8016%;">Block ID it can be placed on.

Example: "minecraft:stone"

</td></tr></tbody></table>

</details></details><details><summary>CanDestroy</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines what the item can break when the user is in Adventure mode.

</td></tr></tbody></table>

<details><summary>block (Not real namespace)</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![string.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/string.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/string.png)</td><td style="height: 50.7px; width: 93.8016%;">Block ID it can destroy.

Example: "minecraft:stone"

</td></tr></tbody></table>

</details></details><details><summary>tag</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines additional properties.

</td></tr></tbody></table>

</details></details></details><details><summary>limitedLife</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![long.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/long.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/long.png)</td><td style="height: 50.7px; width: 93.8016%;">Sets a number of ticks before an entity is deleted.

</td></tr></tbody></table>

</details><details><summary>TradeTier</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines a villagers trading level.

</td></tr></tbody></table>

</details><details><summary>TradeExperience</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines a villagers experience progress to next level.

</td></tr></tbody></table>

</details><details><summary>canPickupItems</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines if an entity can pick up items.

</td></tr></tbody></table>

</details><details><summary>hasSetCanPickupItems</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Set to true if the canPickupItems component has been set by the game.

</td></tr></tbody></table>

</details><details><summary>HurtTime</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![short.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/short.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/short.png)</td><td style="height: 50.7px; width: 93.8016%;">Duration an entity has the invulnerable tag set to true after taking damage. This also controls the duration in which the entity is red after taking damage.

</td></tr></tbody></table>

</details><details><summary>DeathTime</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![short.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/short.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/short.png)</td><td style="height: 50.7px; width: 93.8016%;">Duration an entity executes its death animation to the player before deletion.

</td></tr></tbody></table>

</details><details><summary>Dead</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;"><span class="nowrap">Defines if the entity has died.</span>

</td></tr></tbody></table>

</details><details><summary>AttackTime</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![short.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/short.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/short.png)</td><td style="height: 50.7px; width: 93.8016%;"><span class="nowrap">Ticks before attack cooldown is complete.</span>

</td></tr></tbody></table>

</details><details><summary>Surface</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;"><span class="nowrap">True if the entity has spawned naturally on the surface. (IE, surface cap)</span>

</td></tr></tbody></table>

</details><details><summary>portal\_transition</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![jsonObject.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/jsonobject.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/jsonobject.png)</td><td style="height: 50.7px; width: 93.8016%;">Internally used entity NBT for transitioning entities between dimensions. This is used because when an entity enters the portal it's reference is destroyed, so it needs some way to know the conditions in which it entered the portal.

</td></tr></tbody></table>

<details><summary>axis</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Saves the the axis in which the portal the entity entered is facing. (1 = z, 2 = x)

</td></tr></tbody></table>

</details><details><summary>dimension</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines which dimension the entity is coming from (0 = overworld, 1 = nether, 2 = end)

</td></tr></tbody></table>

</details><details><summary>X</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Shows the X position the entity entered a portal at.

</td></tr></tbody></table>

</details><details><summary>Y</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Shows the Y position the entity entered a portal at.

</td></tr></tbody></table>

</details><details><summary>Z</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Shows the Z position the entity entered a portal at.

</td></tr></tbody></table>

</details></details><details><summary>NaturalSpawn</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;"><span class="nowrap">True if the entity has spawned naturally via cave or surface cap.</span>

</td></tr></tbody></table>

</details><details><summary>TargetID</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![long.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/long.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/long.png)</td><td style="height: 50.7px; width: 93.8016%;">Unique numerical ID of an entity that this entity is targeting for some purpose.

</td></tr></tbody></table>

</details><details><summary>ActiveEffects</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Lists the entities potion effects it has on it.

</td></tr></tbody></table>

<details><summary>Effect (Not A Real Namespace)</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![jsonObject.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/jsonobject.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/jsonobject.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Effect json object

</td></tr></tbody></table>

<details><summary>Ambient</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)  
</td><td style="height: 50.7px; width: 93.8016%;">True if the effect was applied by a beacon. This is to make the particles less invasive on the screen.

</td></tr></tbody></table>

</details><details><summary>Amplifier</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)</td><td style="height: 50.7px; width: 93.8016%;">The potion effect level. 0 is level 1.

</td></tr></tbody></table>

</details><details><summary>DisplayOnScreenTextureAnimation</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Displays a screen animation when an effect is applied. This is used in bad omen, totems, and the hero of the village to display the floating icon once you get the effect.</td></tr></tbody></table>

</details><details><summary>Duration</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Number of ticks before the effect wears off.</td></tr></tbody></table>

</details><details><summary>DurationEasy</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Number of ticks before the effect wears off for Easy mode.</td></tr></tbody></table>

</details><details><summary>DurationNormal</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Number of ticks before the effect wears off for Normal mode.</td></tr></tbody></table>

</details><details><summary>DurationNormal</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Number of ticks before the effect wears off for Hard mode.</td></tr></tbody></table>

</details><details><summary>Id</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)</td><td style="height: 50.7px; width: 93.8016%;">Numerical potion Id.

example: 28

</td></tr></tbody></table>

</details><details><summary>ShowParticles</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines if particles are shown or not.

</td></tr></tbody></table>

</details><details><summary>FactorCalculationData</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![jsonObject.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/jsonobject.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/jsonobject.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unknown usage

</td></tr></tbody></table>

<details><summary>change\_timestamp</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unknown

</td></tr></tbody></table>

</details><details><summary>factor\_current</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)</td><td style="height: 50.7px; width: 93.8016%;">Unknown

</td></tr></tbody></table>

</details><details><summary>factor\_previous</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)</td><td style="height: 50.7px; width: 93.8016%;">Unknown</td></tr></tbody></table>

</details><details><summary>factor\_start</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unknown</td></tr></tbody></table>

</details><details><summary>factor\_target</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unknown</td></tr></tbody></table>

</details><details><summary>had\_applied</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unknown</td></tr></tbody></table>

</details><details><summary>had\_last\_tick</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unknown</td></tr></tbody></table>

</details><details><summary>padding\_duration</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Unknown

</td></tr></tbody></table>

</details></details></details></details><details><summary>IsInRaid</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;"><span class="nowrap">Boolean only present in villagers that defines if the villager is currently in a raid.</span>

</td></tr></tbody></table>

</details><details><summary>ReactToBell</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;"><span class="nowrap">Defines if a villager will react to a bell ringing and go to its home or not.</span>

</td></tr></tbody></table>

</details><details><summary>TargetCaptainID</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![long.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/long.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/long.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unique numerical ID of the Illager captain of a patrol. Used by pillagers in patrols.

  
Example: "**-4294967289**".

</td></tr></tbody></table>

</details><details><summary>isCreative</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines if a given projectile was fired from a player in creative mode. (Only projectiles have this)

</td></tr></tbody></table>

</details><details><summary>enchantPower</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines the power level given to an arrow by the power enchantment on the shooters bow.

</td></tr></tbody></table>

</details><details><summary>enchantPunch</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines the punch level given to an arrow by the power enchantment on the shooters bow.

</td></tr></tbody></table>

</details><details><summary>enchantFlame</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines the flame level given to an arrow by the power enchantment on the shooters bow.

</td></tr></tbody></table>

</details><details><summary>enchantInfinity</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines the infinity level given to an arrow by the power enchantment on the shooters bow.

</td></tr></tbody></table>

</details><details><summary>MobEffects</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![array.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/array.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/array.png)  
</td><td style="height: 50.7px; width: 93.8016%;">List of effects that a given entity can pass onto others. This does not apply to itself. (Used in area effect clouds and tipped arrows)

</td></tr></tbody></table>

<details><summary>Effect (Not A Real Namespace)</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![jsonObject.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/jsonobject.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/jsonobject.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Effect json object

</td></tr></tbody></table>

<details><summary>Ambient</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)  
</td><td style="height: 50.7px; width: 93.8016%;">True if the effect was applied by a beacon. This is to make the particles less invasive on the screen.

</td></tr></tbody></table>

</details><details><summary>Amplifier</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)</td><td style="height: 50.7px; width: 93.8016%;">The potion effect level. 0 is level 1.

</td></tr></tbody></table>

</details><details><summary>DisplayOnScreenTextureAnimation</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Displays a screen animation when an effect is applied. This is used in bad omen, totems, and the hero of the village to display the floating icon once you get the effect.</td></tr></tbody></table>

</details><details><summary>Duration</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Number of ticks before the effect wears off.</td></tr></tbody></table>

</details><details><summary>DurationEasy</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Number of ticks before the effect wears off for Easy mode.</td></tr></tbody></table>

</details><details><summary>DurationNormal</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Number of ticks before the effect wears off for Normal mode.</td></tr></tbody></table>

</details><details><summary>DurationNormal</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Number of ticks before the effect wears off for Hard mode.</td></tr></tbody></table>

</details><details><summary>Id</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)</td><td style="height: 50.7px; width: 93.8016%;">Numerical potion Id.

example: 28

</td></tr></tbody></table>

</details><details><summary>ShowParticles</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines if particles are shown or not.

</td></tr></tbody></table>

</details><details><summary>FactorCalculationData</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![jsonObject.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/jsonobject.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/jsonobject.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unknown usage

</td></tr></tbody></table>

<details><summary>change\_timestamp</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unknown

</td></tr></tbody></table>

</details><details><summary>factor\_current</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)</td><td style="height: 50.7px; width: 93.8016%;">Unknown

</td></tr></tbody></table>

</details><details><summary>factor\_previous</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)</td><td style="height: 50.7px; width: 93.8016%;">Unknown</td></tr></tbody></table>

</details><details><summary>factor\_start</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unknown</td></tr></tbody></table>

</details><details><summary>factor\_target</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![float.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/float.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/float.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unknown</td></tr></tbody></table>

</details><details><summary>had\_applied</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unknown</td></tr></tbody></table>

</details><details><summary>had\_last\_tick</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Unknown</td></tr></tbody></table>

</details><details><summary>padding\_duration</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Unknown

</td></tr></tbody></table>

</details></details></details></details><details><summary>auxValue</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![byte.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/byte.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/byte.png)  
</td><td style="height: 50.7px; width: 93.8016%;">Defines a numerical ID for what arrow type it is, whether it is tipped and with what potion.

example: 23 (Healing II)

</td></tr></tbody></table>

</details><details><summary>SelectedInventorySlot</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Numerical ID of a slot selected in a players inventory.</td></tr></tbody></table>

</details><details><summary>SelectedContainerId</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Numerical ID of a container selected by the player. </td></tr></tbody></table>

</details><details><summary>Sleeping</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![boolean.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/boolean.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/boolean.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines if the player is sleeping or not.</td></tr></tbody></table>

</details><details><summary>SleepTimer</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![short.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/short.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/short.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines for how long the player has been sleeping in a bed.</td></tr></tbody></table>

</details><details><summary>SpawnBlockPositionX</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines the X location for the players respawn block like a bed or respawn anchor.

</td></tr></tbody></table>

</details><details><summary>SpawnBlockPositionY</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines the Y location for the players respawn block like a bed or respawn anchor.

</td></tr></tbody></table>

</details><details><summary>SpawnBlockPositionZ</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines the Z location for the players respawn block like a bed or respawn anchor.

</td></tr></tbody></table>

</details><details><summary>SpawnDimension</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines what dimension the player's spawn point is located in.

</td></tr></tbody></table>

</details><details><summary>SpawnX</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines the X location for the players respawn point.

</td></tr></tbody></table>

</details><details><summary>SpawnY</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines the Y location for the players respawn point.

</td></tr></tbody></table>

</details><details><summary>SpawnZ</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Defines the Z location for the players respawn point.

</td></tr></tbody></table>

</details><details><summary>EnchantmentSeed</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">RNG seed for enchantment tables to deterministically give you the same enchantments.

</td></tr></tbody></table>

</details><details><summary>RideID</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![long.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/long.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/long.png)</td><td style="height: 50.7px; width: 93.8016%;">Unique numerical ID of an entity that the player is riding.

</td></tr></tbody></table>

</details><details><summary>LeftShoulderRiderID</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![long.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/long.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/long.png)</td><td style="height: 50.7px; width: 93.8016%;">Unique numerical ID of an entity that the player has on its left shoulder.

</td></tr></tbody></table>

</details><details><summary>RightShoulderRiderID</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![long.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/long.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/long.png)</td><td style="height: 50.7px; width: 93.8016%;">Unique numerical ID of an entity that the player has on its right shoulder.

</td></tr></tbody></table>

</details><details><summary>PlayerGameMode</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">Numerical ID of the gamemode the player is in currently.

</td></tr></tbody></table>

</details><details><summary>PlayerLevel</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">How many experience levels the player has.

</td></tr></tbody></table>

</details><details><summary>PlayerLevelProgress</summary>

<table border="1" style="border-collapse: collapse; width: 100.513%; height: 50.7px;"><tbody><tr style="height: 50.7px;"><td style="height: 50.7px; width: 6.19842%;">[![integer.png](https://bedrockwiki.com/uploads/images/gallery/2025-10/scaled-1680-/integer.png)](https://bedrockwiki.com/uploads/images/gallery/2025-10/integer.png)</td><td style="height: 50.7px; width: 93.8016%;">How much experience progress a player has to the next level.

</td></tr></tbody></table>

</details></details><p class="callout warning">Not all NBT tags are used in a standard entity, this just includes all known NBT labels and their known purpose.</p>

# NBT definitions