{
    "title": "collection of daily plan dates",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "",
    "javaType": "com.sos.joc.model.dailyplan.history.SubmissionsOrdersResponse",
    "type": "object",
    "required": [
        "deliveryDate"
    ],
    "properties": {
        "deliveryDate": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "orders": {
            "type": "array",
            "items": {
                "javaType": "com.sos.joc.model.dailyplan.history.items.OrderItem",
                "type": "object",
                "required": [
                    "orderId",
                    "permitted"
                ],
                "properties": {
                    "scheduledFor": {
                        "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
                        "type": "string",
                        "format": "date-time"
                    },
                    "workflowPath": {
                        "type": "string",
                        "pattern": "^[^<>]*$",
                        "maxLength": 255
                    },
                    "orderId": {
                        "type": "string",
                        "pattern": "^[^<>]*$",
                        "maxLength": 255
                    },
                    "submitted": {
                        "type": "boolean"
                    },
                    "permitted": {
                        "type": "boolean"
                    }
                }
            }
        },
        "warnMessages": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "errorMessages": {
            "type": "array",
            "items": {
                "type": "string"
            }
        }
    }
}