how can i bind this ui inventory to my entity
{
"namespace": "jm",
"InventoryTest": {
"type": "grid",
"size": [162, 54],
"anchor_from": "top_left",
"anchor_to": "top_left",
"grid_dimensions": [6, 1],
"grid_item_template": "chest.chest_grid_item",
"collection_name": "container_items"
}
}```
Entity:
```js
{
"format_version": "1.20.80",
"minecraft:entity": {
"description": {
"identifier": "jm:test",
"is_spawnable": true,
"is_summonable": true,
"is_experimental": false
},
"component_groups": {},
"components": {
"minecraft:physics": {},
"minecraft:inventory": {
"container_type": "inventory",
"inventory_size": 6
},
"minecraft:health": {
"value": 20,
"max": 20
},
"minecraft:nameable": {
"always_show": true
}
},
"events": {}
}
}```