{
    "title": "List of deployables",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.joe.common.Deployables",
    "type": "object",
    "properties": {
        "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"
        },
        "deployables": {
            "type": "array",
            "items": {
                "javaType": "com.sos.joc.model.joe.common.Deployable",
                "type": "object",
                "description": "",
                "required": [
                    "jobschedulerId",
                    "path"
                ],
                "properties": {
                    "jobschedulerId": {
                        "type": "string"
                    },
                    "folder": {
                        "description": "absolute path based on live folder of a JobScheduler object.",
                        "type": "string",
                        "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
                        "maxLength": 255
                    },
                    "objectName": {
                        "type": "string"
                    },
                    "account": {
                        "type": "string"
                    },
                    "operation": {
                        "type": "string"
                    },
                    "objectType": {
                        "javaType": "com.sos.joc.model.common.JobSchedulerObjectType",
                        "type": "string",
                        "enum": [
                            "JOB",
                            "JOBCHAIN",
                            "ORDER",
                            "PROCESSCLASS",
                            "AGENTCLUSTER",
                            "LOCK",
                            "SCHEDULE",
                            "WORKINGDAYSCALENDAR",
                            "NONWORKINGDAYSCALENDAR",
                            "FOLDER",
                            "JOBSCHEDULER",
                            "DOCUMENTATION",
                            "MONITOR",
                            "NODEPARAMS",
                            "HOLIDAYS",
                            "JOE",
                            "OTHER"
                        ]
                    },
                    "modified": {
                        "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
                        "type": "string",
                        "format": "date-time"
                    }
                }
            },
            "uniqueItems": true
        }
    }
}