{
    "title": "delete FileOrderSource",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.controller.model.fileordersource.DeleteFileOrderSource",
    "type": "object",
    "javaInterfaces": [
        "com.sos.joc.model.common.IDeleteObject"
    ],
    "required": [
        "path"
    ],
    "propertyOrder": [
        "TYPE",
        "path"
    ],
    "description": "delete object with fixed property 'TYPE':'FileWatchPath'",
    "properties": {
        "TYPE": {
            "javaType": "com.sos.inventory.model.deploy.DeleteType",
            "type": "string",
            "enum": [
                "WorkflowPath",
                "LockPath",
                "JobClassPath",
                "JobResourcePath",
                "BoardPath",
                "FileWatchPath"
            ],
            "default": "WorkflowPath"
        },
        "path": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        }
    },
    "additionalProperties": false
}