Equipment IDs API

Hi,

When creating/updating keywords via API, what is the required layout for “requiredEquipment”? If I use this format, it always just changes the value of lighting, I can’t seem to find anything in the docs about this, as the examples have requiredequipment as null

“requiredEquipment“: [
{ “equipmentId“: 5, “amount“: 2}
],

Many Thanks

"requiredEquipment": [
    {
      "amount": 1,
      "equipment": 12
    },
    {
      "amount": 2,
      "equipment": 13
    }
]

This should be working. Equipment is referenced here.