{
    "title": "Reset JobStream",
    "id": "schemas/jobstreams/resetjobstream",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "Reset Workflow, unconsume expressions",
    "javaType": "com.sos.joc.model.jobstreams.ResetJobStream",
    "type": "object",
    "required": [
        "deliveryDate"
    ],
    "properties": {
        "deliveryDate": {
            "id": "schemas/common/deliveryDate",
            "description": "Current date of the JOC server/REST service. Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ",
            "type": "string",
            "format": "date-time"
        },
        "jobschedulerId": {
            "type": "string"
        },
        "job": {
            "id": "schemas/common/path",
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "/([^/]+/)*[^/]+"
        },
        "jobStream": {
            "type": "string"
        }
    }
}