{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "eventType": { "type": "string" }, "payload": { "type": "object", "properties": { "sessionId": { "type": "string" }, "action": { "type": "string" }, "_pkc": { "type": "string" }, "user": { "type": "string" }, "tenant": { "type": "string" }, "data": { "type": "array", "items": { "type": "object", "properties": { "categoryName": { "type": "string" } }, "required": [ "categoryName" ] } }, "cvar": { "type": "array", "items": { "type": "object", "properties": { "5": { "type": "array", "items": { "type": "string" } } }, "required": [ "5" ] } } }, "required": [ "sessionId", "action", "_pkc", "user", "tenant", "data", "cvar" ] } }, "required": [ "eventType", "payload" ] }