{
    "title": "jobStreamStarter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "List of all jobStream starters",
    "javaType": "com.sos.joc.model.jobstreams.JobStreamStarterExist",
    "type": "object",
    "properties": {
        "state": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "jobStreamStarterId": {
            "type": "number",
            "format": "utc-millisec",
            "minimum": 0
        },
        "starterName": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "exist": {
            "type": "boolean"
        },
        "title": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "nextStart": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "endOfJobStream": {
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
            "maxLength": 255
        },
        "requiredJob": {
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
            "maxLength": 255
        }
    }
}