I am creating parts using a JSON file and cannot find the format for setting a many2many field. The many2many field I am trying to set is the "route_ids" field on the product.template model.
My create code below:
"create",
      [{
          "default_code": "ALEXTEST4",
          "name": "some_descriptioni1234",
          "uom_id": 32,
          "list_price": 0,
          "barcode": "ALEXTEST4",
		  
		  "categ_id": 5,
		  "type": "product",
		  "responsible_engineer": 574,
		  "route_ids ": [[5]]
}],
