{
    "title": "jobStreamFolders",
    "id": "schemas/jobstreams/jobStreams",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "List of all jobStreams and their folders",
    "javaType": "com.sos.joc.model.jobstreams.JobStreams",
    "type": "object",
    "required": [
        "deliveryDate"
    ],
    "properties": {
        "deliveryDate": {
            "id": "schemas/common/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"
        },
        "jobStreamFilter": {
            "type": "string"
        },
        "jobStreamFolders": {
            "type": "array",
            "items": {
                "id": "schemas/jobstreams/folders2Jobstream",
                "description": "List of all In Conditions",
                "javaType": "com.sos.joc.model.jobstreams.Folders2Jobstream",
                "type": "object",
                "properties": {
                    "jobStream": {
                        "type": "string"
                    },
                    "folders": {
                        "type": "array",
                        "items": {
                            "id": "schemas/common/path",
                            "description": "absolute path based on live folder of a JobScheduler object.",
                            "type": "string",
                            "pattern": "/([^/]+/)*[^/]+"
                        }
                    }
                }
            }
        }
    }
}