{
    "title": "path of copied, restored or renamed object/folder",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.inventory.common.ResponseNewPath",
    "type": "object",
    "description": "response of copy, rename, restore",
    "required": [
        "deliveryDate",
        "path",
        "objectType"
    ],
    "properties": {
        "deliveryDate": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "id": {
            "type": "number",
            "format": "utc-millisec",
            "minimum": 0
        },
        "path": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "objectType": {
            "javaType": "com.sos.joc.model.inventory.common.ConfigurationType",
            "type": "string",
            "enum": [
                "FOLDER",
                "WORKFLOW",
                "JOBCLASS",
                "JOBRESOURCE",
                "LOCK",
                "NOTICEBOARD",
                "FILEORDERSOURCE",
                "WORKINGDAYSCALENDAR",
                "NONWORKINGDAYSCALENDAR",
                "SCHEDULE",
                "INCLUDESCRIPT",
                "JOBTEMPLATE",
                "DEPLOYMENTDESCRIPTOR",
                "DESCRIPTORFOLDER"
            ]
        }
    }
}