{
    "title": "workflow overview snapshot",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.workflow.WorkflowsSnapshot",
    "type": "object",
    "required": [
        "deliveryDate",
        "surveyDate"
    ],
    "properties": {
        "deliveryDate": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "surveyDate": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "workflows": {
            "javaType": "com.sos.joc.model.workflow.WorkflowsSummary",
            "type": "object",
            "properties": {
                "notSynchronized": {
                    "type": "integer",
                    "minimum": 0
                },
                "synchronized": {
                    "type": "integer",
                    "minimum": 0
                },
                "suspended": {
                    "type": "integer",
                    "minimum": 0
                },
                "outstanding": {
                    "type": "integer",
                    "minimum": 0
                }
            },
            "additionalProperties": false
        }
    }
}