Hello, I tried to create a custom block (a table) with the tutorial, but it is not working as it should. (See the picture)

Here is the yml:
info:
namespace: myfurniture
items:
testtisch:
display_name: "Test Tisch"
permission: myitems.furniture.testtisch
lore:
- lore-decorative-item
resource:
material: STONE
generate: false
model_path: testtisch
behaviours:
furniture:
light_level: 0
solid: true
small: true
placeable_on:
floor: true
ceiling: false
walls: false
hitbox:
height: 1
sound:
place:
name: block.metal.fall
break:
name: block.metal.break
and here the json file:
{
"credit": "Made with Blockbench",
"textures": {
"2": "myfurniture:testtisch",
"particle": "myfurniture:testtisch"
},
"elements": [
{
"from": [0, 0, 0],
"to": [2, 14, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [1.4142, 7, 1.4142], "rescale": true},
"faces": {
"north": {"uv": [0, 0, 2, 14], "texture": "#2"},
"east": {"uv": [0, 0, 2, 14], "texture": "#2"},
"south": {"uv": [0, 0, 2, 14], "texture": "#2"},
"west": {"uv": [0, 0, 2, 14], "texture": "#2"},
"up": {"uv": [0, 0, 2, 2], "texture": "#1"},
"down": {"uv": [0, 0, 2, 2], "texture": "#2"}
}
},
{
"from": [14, 0, 0],
"to": [16, 14, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [14.5585, 7, 0.97057], "rescale": true},
"faces": {
"north": {"uv": [0, 0, 2, 14], "texture": "#2"},
"east": {"uv": [0, 0, 2, 14], "texture": "#2"},
"south": {"uv": [0, 0, 2, 14], "texture": "#2"},
"west": {"uv": [0, 0, 2, 14], "texture": "#2"},
"up": {"uv": [0, 0, 2, 2], "texture": "#2"},
"down": {"uv": [0, 0, 2, 2], "texture": "#2"}
}
},
{
"from": [14, 0, 14],
"to": [16, 14, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [15, 7, 15], "rescale": true},
"faces": {
"north": {"uv": [0, 0, 2, 14], "texture": "#2"},
"east": {"uv": [0, 0, 2, 14], "texture": "#2"},
"south": {"uv": [0, 0, 2, 14], "texture": "#2"},
"west": {"uv": [0, 0, 2, 14], "texture": "#2"},
"up": {"uv": [0, 0, 2, 2], "texture": "#2"},
"down": {"uv": [0, 0, 2, 2], "texture": "#2"}
}
},
{
"from": [0, 0, 14],
"to": [2, 14, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [1.07106, 7, 16.06591], "rescale": true},
"faces": {
"north": {"uv": [0, 0, 2, 14], "texture": "#2"},
"east": {"uv": [0, 0, 2, 14], "texture": "#2"},
"south": {"uv": [0, 0, 2, 14], "texture": "#2"},
"west": {"uv": [0, 0, 2, 14], "texture": "#2"},
"up": {"uv": [0, 0, 2, 2], "texture": "#2"},
"down": {"uv": [0, 0, 2, 2], "texture": "#2"}
}
},
{
"from": [0, 14, 0],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8.56849, 15, 8.56849], "rescale": true},
"faces": {
"north": {"uv": [0, 0, 16, 2], "texture": "#2"},
"east": {"uv": [0, 0, 16, 2], "texture": "#2"},
"south": {"uv": [0, 0, 16, 2], "texture": "#2"},
"west": {"uv": [0, 0, 16, 2], "texture": "#2"},
"up": {"uv": [0, 0, 16, 16], "texture": "#2"},
"down": {"uv": [0, 0, 16, 16], "texture": "#2"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"thirdperson_lefthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"firstperson_righthand": {
"rotation": [0, 45, 0],
"scale": [0.4, 0.4, 0.4]
},
"firstperson_lefthand": {
"rotation": [0, 225, 0],
"scale": [0.4, 0.4, 0.4]
},
"ground": {
"translation": [0, 3, 0],
"scale": [0.25, 0.25, 0.25]
},
"gui": {
"rotation": [30, 225, 0],
"scale": [0.625, 0.625, 0.625]
},
"head": {
"translation": [0.25, -35.25, 0]
},
"fixed": {
"scale": [0.5, 0.5, 0.5]
}
}
}
maybe its a very simple and dump mistake but i cant figure out why it is not working...