{
    "title": "DaysOfMonth for MonthDays or Ultimos",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.calendar.MonthDays",
    "type": "object",
    "properties": {
        "from": {
            "description": "ISO date YYYY-MM-DD",
            "type": "string",
            "format": "date"
        },
        "to": {
            "description": "ISO date YYYY-MM-DD",
            "type": "string",
            "format": "date"
        },
        "days": {
            "type": "array",
            "items": {
                "description": "digit from 1-31",
                "type": "integer",
                "minimum": 1,
                "maximum": 31
            }
        },
        "weeklyDays": {
            "type": "array",
            "items": {
                "javaType": "com.sos.joc.model.calendar.WeeklyDay",
                "type": "object",
                "properties": {
                    "day": {
                        "description": "digit from 0-6, 0=Sunday, 1=Monday, ..., 6=Saturday, 7=Sunday (again)",
                        "type": "integer",
                        "minimum": 0,
                        "maximum": 7
                    },
                    "weekOfMonth": {
                        "type": "integer",
                        "minimum": 1,
                        "maximum": 5
                    }
                }
            }
        }
    }
}