{
    "title": " store notification response",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.notification.StoreNotificationResponse",
    "type": "object",
    "description": "state,releases, hasReleases only for objectType=NOTIFICATION",
    "properties": {
        "name": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "objectType": {
            "javaType": "com.sos.joc.model.xmleditor.common.ObjectType",
            "type": "string",
            "enum": [
                "YADE",
                "NOTIFICATION",
                "OTHER"
            ]
        },
        "modified": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "state": {
            "javaType": "com.sos.joc.model.inventory.common.ItemStateEnum",
            "type": "string",
            "enum": [
                "DEPLOYMENT_IS_NEWER",
                "RELEASE_IS_NEWER",
                "DRAFT_IS_NEWER",
                "DEPLOYMENT_NOT_EXIST",
                "RELEASE_NOT_EXIST",
                "DRAFT_NOT_EXIST",
                "NO_CONFIGURATION_EXIST"
            ]
        },
        "released": {
            "type": "boolean"
        },
        "hasReleases": {
            "type": "boolean"
        }
    }
}