{
    "title": "notification collection of monitors",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "",
    "javaType": "com.sos.joc.model.monitoring.NotificationAcknowledgeAnswer",
    "type": "object",
    "required": [
        "deliveryDate",
        "acknowledgement"
    ],
    "properties": {
        "deliveryDate": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "acknowledgement": {
            "javaType": "com.sos.joc.model.monitoring.NotificationItemAcknowledgementItem",
            "type": "object",
            "required": [
                "account",
                "created"
            ],
            "properties": {
                "account": {
                    "type": "string"
                },
                "comment": {
                    "type": "string"
                },
                "created": {
                    "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
                    "type": "string",
                    "format": "date-time"
                }
            }
        }
    }
}