{
    "title": "has note",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.note.common.HasNote",
    "type": "object",
    "properties": {
        "severity": {
            "javaType": "com.sos.joc.model.note.common.Severity",
            "type": "string",
            "enum": [
                "CRITICAL",
                "HIGH",
                "NORMAL",
                "LOW",
                "INFO"
            ],
            "default": "NORMAL"
        },
        "notified": {
            "type": "boolean"
        }
    },
    "additionalProperties": false
}