{
    "title": "collections of objects which use documentation",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.docu.UsedBy",
    "type": "object",
    "required": [
        "deliveryDate"
    ],
    "properties": {
        "deliveryDate": {
            "description": "Date time. Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ",
            "type": "string",
            "format": "date-time"
        },
        "objects": {
            "type": "array",
            "items": {
                "javaType": "com.sos.joc.model.common.JobSchedulerObject",
                "type": "object",
                "properties": {
                    "type": {
                        "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"
                        ]
                    },
                    "path": {
                        "description": "absolute path based on live folder of a JobScheduler object.",
                        "type": "string",
                        "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
                        "maxLength": 255
                    }
                }
            }
        }
    }
}