{
    "title": "JobStream Filter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "Job Stream filter",
    "javaType": "com.sos.joc.model.jobstreams.JobStreamFilter",
    "type": "object",
    "required": [
        "jobschedulerId"
    ],
    "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"
        },
        "jobschedulerId": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 100
        },
        "jobStream": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "limit": {
            "type": "integer",
            "default": 10000
        }
    }
}