{
    "title": "job",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.joe.wizard.Job",
    "type": "object",
    "required": [
        "docPath",
        "docName",
        "javaClass"
    ],
    "properties": {
        "deliveryDate": {
            "description": "Date time. Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ",
            "type": "string",
            "format": "date-time"
        },
        "docPath": {
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
            "maxLength": 255
        },
        "docName": {
            "type": "string"
        },
        "title": {
            "type": "string"
        },
        "javaClass": {
            "type": "string"
        },
        "params": {
            "type": "array",
            "items": {
                "type": "object",
                "javaType": "com.sos.joc.model.joe.wizard.Param",
                "properties": {
                    "name": {
                        "type": "string"
                    },
                    "required": {
                        "type": "boolean"
                    },
                    "defaultValue": {
                        "type": "string"
                    },
                    "description": {
                        "description": "string in html format",
                        "type": "string"
                    }
                }
            }
        }
    }
}