{
  "type": "object",
  "properties": {
    "actionType": {
      "type": "string",
      "enum": ["update"]
    },
    "entities": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "required": true
          },
          "type": {
            "type": "string",
            "required": true
          },
          "additionalProperties":{
            "type": "object",
            "properties": {
              "type":{
                "type": "string",
                "required": true
              },
              "value":{
                "type": "string",
                "required": true
              }
            }                
          }          
        }
      }
    }
  }
}