{
    "title": "xmleditor deploy configuration in",
    "id": "schemas/xmleditor/deploy/deploy-configuration-schema",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.xmleditor.deploy.DeployConfiguration",
    "type": "object",
    "description": "",
    "required": [
        "jobschedulerId",
        "objectType",
        "configuration"
    ],
    "properties": {
        "jobschedulerId": {
            "type": "string"
        },
        "objectType": {
            "id": "schemas/xmleditor/common/object-type-schema",
            "javaType": "com.sos.joc.model.xmleditor.common.ObjectType",
            "type": "string",
            "enum": [
                "YADE",
                "NOTIFICATION",
                "OTHER"
            ]
        },
        "configuration": {
            "type": "string"
        },
        "auditLog": {
            "id": "schemas/common/auditParams",
            "javaType": "com.sos.joc.model.audit.AuditParams",
            "type": "object",
            "properties": {
                "comment": {
                    "type": "string"
                },
                "timeSpent": {
                    "id": "schemas/common/nonNegativeInteger",
                    "type": "integer",
                    "minimum": 0
                },
                "ticketLink": {
                    "type": "string"
                }
            }
        }
    }
}