{
    "title": "configuration",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.common.Configuration200",
    "type": "object",
    "required": [
        "deliveryDate",
        "configuration"
    ],
    "properties": {
        "deliveryDate": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "configuration": {
            "javaType": "com.sos.joc.model.common.Configuration",
            "type": "object",
            "required": [
                "surveyDate",
                "path",
                "configurationDate",
                "content"
            ],
            "properties": {
                "surveyDate": {
                    "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
                    "type": "string",
                    "format": "date-time"
                },
                "path": {
                    "description": "absolute path of a JobScheduler object.",
                    "type": "string",
                    "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
                    "maxLength": 255,
                    "minLength": 1
                },
                "type": {
                    "javaType": "com.sos.joc.model.common.JobSchedulerObjectType",
                    "type": "string",
                    "enum": [
                        "INVENTORY",
                        "WORKFLOW",
                        "JOB",
                        "JOBCLASS",
                        "AGENTCLUSTER",
                        "LOCK",
                        "JUNCTION",
                        "ORDER",
                        "CALENDAR",
                        "CONTROLLER",
                        "DOCUMENTATION",
                        "FOLDER",
                        "WORKINGDAYSCALENDAR",
                        "NONWORKINGDAYSCALENDAR",
                        "OTHER"
                    ]
                },
                "configurationDate": {
                    "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
                    "type": "string",
                    "format": "date-time"
                },
                "content": {
                    "type": "string"
                }
            }
        }
    }
}