i am trying to design a rest api which accepts a query parameter specifying a date range.
For a simple time range i do it like
&st=1407772800000&et=1408432033709
representing the start time and end time in epoch milliseconds.
But now i have a requirement wherein i need to specify a fractured (split) time range,
eg: all mondays and tuesdays within the given start and end time.
what would be the best way to represent this case as a query parameter?
Edit: i would only need to specify days of the week and timezone is UTC.
i am basically trying to specify blackout dates in a range