{
    "title": "calendarId",
    "id": "schemas/calendar/calendarId",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.calendar.CalendarId",
    "type": "object",
    "oneOf": [
        {
            "required": [
                "jobschedulerId",
                "id"
            ]
        },
        {
            "required": [
                "jobschedulerId",
                "path"
            ]
        }
    ],
    "properties": {
        "jobschedulerId": {
            "type": "string"
        },
        "id": {
            "id": "schemas/common/nonNegativeLong",
            "type": "string",
            "format": "utc-millisec"
        },
        "path": {
            "id": "schemas/common/path",
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "/([^/]+/)*[^/]+"
        }
    }
}