Configure SNS Subscription policy
Learn how to configure the SNS subscription policy before installing recipes.
SFDC|TRG|Real Time Sync from Reltio to Salesforce - Organization recipe:{
  "object": {
    "type": [
      "configuration/entityTypes/Organization"
    ]
  },
  "$or": [
    {
      "type": [
        "ENTITY_CREATED"
      ],
      "object": {
        "createdBy": [
          {
            "anything-but": "serviceaccount"
          }
        ]
      }
    },
    {
      "type": [
        "ENTITY_CHANGED",
        "ENTITY_REMOVED",
        "ENTITY_LOST_MERGE"
      ],
      "object": {
        "updatedBy": [
          {
            "anything-but": "serviceaccount"
          }
        ]
      }
    }
  ]
}