{
    "title": "controllerIds",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.jobscheduler.ControllerIds",
    "type": "object",
    "required": [
        "deliveryDate",
        "controllerIds",
        "selected"
    ],
    "properties": {
        "deliveryDate": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "controllerIds": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "selected": {
            "description": "The Id from the 'controllerIds' collection which is specified in the selected field will be used for all further calls",
            "type": "string"
        },
        "precedence": {
            "type": "integer",
            "minimum": 0
        }
    }
}