{
    "title": "daily plan history request",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.dailyplan.history.SubmissionsOrdersRequest",
    "type": "object",
    "required": [
        "controllerId",
        "date",
        "submissionTime"
    ],
    "properties": {
        "controllerId": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 100,
            "minLength": 1
        },
        "date": {
            "description": "ISO date YYYY-MM-DD",
            "type": "string",
            "format": "date"
        },
        "submissionTime": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "submitted": {
            "type": "boolean"
        },
        "limit": {
            "type": "integer",
            "default": 5000
        }
    }
}