{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api.ilert.com/schemas/DeploymentEvent", "title": "DeploymentEvent", "type": "object", "required": [ "integrationKey", "summary" ], "properties": { "integrationKey": { "type": "string" }, "summary": { "type": "string" }, "timestamp": { "type": "integer", "format": "int64" }, "userEmail": { "description": "Optional email used to map the event to a specific user in ilert", "type": "string", "format": "email" }, "customDetails": { "type": "object", "additionalProperties": true }, "links": { "type": "array", "items": { "$ref": "#/components/schemas/EventLink" } } } }