{
    "title": "fresh Order",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.jobscheduler.model.order.FreshOrder",
    "type": "object",
    "required": [
        "id",
        "workflowPath"
    ],
    "properties": {
        "id": {
            "type": "string"
        },
        "workflowPath": {
            "description": "absolute path of a JobScheduler object.",
            "type": "string",
            "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
            "maxLength": 255,
            "minLength": 1
        },
        "scheduledFor": {
            "type": "number",
            "format": "utc-millisec",
            "minimum": 0
        },
        "arguments": {
            "description": "a map for arbitrary key-value pairs",
            "javaType": "com.sos.jobscheduler.model.common.Variables",
            "type": "object",
            "returnCode": {
                "type": "integer"
            },
            "additionalProperties": {
                "type": "string"
            }
        }
    },
    "additionalProperties": false
}