Smelting recipe and shaped crafting recipes not working

I'm working on a small datapack to just add a few recipes to make resources renewable that otherwise aren't and to tweak the balance of the trapdoor craft. So far, I've been able to get shaped crafting recipes for red sand, gilded blackstone, and pottery sherd duplication to work, but I haven't been able to get my recipes for trapdoors or dead bushes to work, and I don't know why. I've copied in my .json files if anybody would like to check my work. Acacia trapdoors: { "type": "crafting_shaped", "group": "wooden_trapdoor", "pattern": [ "111", "111" ], "key": { "1": "minecraft:acacia_planks" }, "result": { "id": "minecraft:acacia_trapdoor", "count": 6 } } (file structure: crafting tweaks->data->more_trapdoors->recipe->acacia_trapdoor.json) Dead bushes: { "type": "smelting", "ingredient": { "item": "minecraft:bush" }, "experience": 0.15, "cookingtime": 200, "result": { "id": "minecraft:dead_bush" }, } (file structure: crafting tweaks->data->bush_drying->recipe->dead_bush.json) Any assistance will be greatly appreciated!
Continue to help post