{
    "title": "jobschedulerIds",
    "id": "schemas/jobscheduler/jobschedulerIds",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.jobscheduler.JobSchedulerIds",
    "type": "object",
    "required": [
        "deliveryDate",
        "jobschedulerIds",
        "selected"
    ],
    "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"
        },
        "jobschedulerIds": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "selected": {
            "description": "The Id from the 'jobschedulerIds' collection which is specified in the selected field will be used for all further calls",
            "type": "string"
        },
        "precedence": {
            "id": "schemas/common/nonNegativeInteger",
            "type": "integer",
            "minimum": 0
        }
    }
}