Crafting Components not working

I am trying to make a a crafting recipe output a helmet with a custom name and properties, but i keep getting a malformed json error. Could someone tell me what i am doing wrong here:

    "type": "minecraft:crafting_shaped",
    "pattern": [
      "lcl",
      "ldl"
    ],
    "key": {
      "l": {
        "item": "minecraft:leather"
      },
      "d": {
        "item": "minecraft:diamond_block"
      },
      "c": {
        "item": "minecraft:clock"
      }
    },
    "result": {
      "id": "minecraft:leather_helmet",
      "components": {
        "minecraft:custom_name": "Vote For AFK Session",
        "minecraft:lore": [
          "Wear this to vote for an",
          "AFK Session"
        ],
        "minecraft:unbreakable": {
          "show_in_tooltip": true
        },
        "minecraft:fire_resistant": {},
        "minecraft:enchantment_glint_override": true
      }
    }
  }```
Continue to help post