{
    "title": "controllerIds",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.controller.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",
            "uniqueItems": true,
            "items": {
                "type": "string",
                "pattern": "^[^/\\<>?:\"|*]*$",
                "maxLength": 100
            }
        },
        "selected": {
            "description": "The Id from the 'controllerIds' collection which is specified in the selected field will be used for all further calls",
            "type": "string"
        }
    }
}