{
    "title": "abstract executable",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.sign.model.job.Executable",
    "type": "object",
    "required": [
        "TYPE"
    ],
    "properties": {
        "TYPE": {
            "javaType": "com.sos.inventory.model.job.ExecutableType",
            "type": "string",
            "enum": [
                "ShellScriptExecutable",
                "ScriptExecutable",
                "InternalExecutable"
            ],
            "javaEnumNames": [
                "ShellScriptExecutable",
                "ScriptExecutable",
                "InternalExecutable"
            ]
        }
    },
    "additionalProperties": false
}