{
    "title": "daily plan history request",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.dailyplan.history.MainRequest",
    "type": "object",
    "properties": {
        "controllerId": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 100
        },
        "dateFrom": {
            "description": "0 or [number][dwMy] (where dwMy unit for day, week, etc) or ISO date in YYYY-MM-DD format",
            "type": "string",
            "pattern": "^([+-]?0|([+-]?[0-9]+[dwMy])+|\\d{4}-\\d{2}-\\d{2})$"
        },
        "dateTo": {
            "description": "0 or [number][dwMy] (where dwMy unit for day, week, etc) or ISO date in YYYY-MM-DD format",
            "type": "string",
            "pattern": "^([+-]?0|([+-]?[0-9]+[dwMy])+|\\d{4}-\\d{2}-\\d{2})$"
        },
        "submitted": {
            "type": "boolean"
        },
        "limit": {
            "type": "integer",
            "default": 5000
        }
    }
}