{
    "title": "Daily Plan Change Startime",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.dailyplan.DailyPlanModifyOrder",
    "type": "object",
    "description": "To change the starttime of given order",
    "properties": {
        "controllerId": {
            "type": "string"
        },
        "startTime": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "variables": {
            "type": "array",
            "items": {
                "javaType": "com.sos.webservices.order.initiator.model.NameValuePair",
                "type": "object",
                "required": [
                    "name",
                    "value"
                ],
                "properties": {
                    "name": {
                        "type": "string",
                        "minLength": 1
                    },
                    "value": {
                        "type": "string"
                    }
                }
            }
        },
        "orderIds": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "auditLog": {
            "javaType": "com.sos.joc.model.audit.AuditParams",
            "type": "object",
            "properties": {
                "comment": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 255
                },
                "timeSpent": {
                    "type": "integer",
                    "minimum": 0
                },
                "ticketLink": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 255
                }
            }
        }
    }
}