{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "eventType": { "type": "string" }, "payload": { "type": "object", "properties": { "action": { "type": "string" }, "profileId": { "type": "string" }, "identityId": { "type": "string" }, "identityType": { "type": "string" } }, "required": [ "action", "profileId", "identityId", "identityType" ] } }, "required": [ "eventType", "payload" ] }