{
    "title": "order object in history collection",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.monitoring.MonitorItem",
    "type": "object",
    "required": [
        "type",
        "name",
        "configuration",
        "message",
        "error",
        "created"
    ],
    "properties": {
        "type": {
            "javaType": "com.sos.joc.model.common.MonitoringMonitorTypeText",
            "type": "string",
            "enum": [
                "COMMAND",
                "MAIL",
                "NSCA",
                "JMS"
            ]
        },
        "name": {
            "type": "string"
        },
        "configuration": {
            "type": "string"
        },
        "message": {
            "type": "string"
        },
        "error": {
            "type": "string"
        },
        "created": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        }
    }
}