RangerValiditySchedule Data Type

Properties
name data type description
startTime string
endTime string
timeZone string
recurrences array of RangerValidityRecurrence

Example

{
  "startTime" : "...",
  "endTime" : "...",
  "timeZone" : "...",
  "recurrences" : [ {
    "interval" : {
      "minutes" : 12345,
      "hours" : 12345,
      "days" : 12345
    },
    "schedule" : {
      "dayOfMonth" : "...",
      "month" : "...",
      "hour" : "...",
      "dayOfWeek" : "...",
      "minute" : "...",
      "year" : "..."
    }
  }, {
    "interval" : {
      "minutes" : 12345,
      "hours" : 12345,
      "days" : 12345
    },
    "schedule" : {
      "dayOfMonth" : "...",
      "month" : "...",
      "hour" : "...",
      "dayOfWeek" : "...",
      "minute" : "...",
      "year" : "..."
    }
  } ]
}