schedules element
Type: |
schedules |
Namespace: |
(default namespace) |
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<schedules>
<schedule>
<target>...</target>
<subscriptionId>...</subscriptionId>
<applicationName>...</applicationName>
<tag>...</tag>
<type>...</type>
<executionTimes>...</executionTimes>
<executionTimes>...</executionTimes>
<!--...more "executionTimes" elements...-->
<daysOfMonth>...</daysOfMonth>
<daysOfMonth>...</daysOfMonth>
<!--...more "daysOfMonth" elements...-->
<daysOfWeek>...</daysOfWeek>
<daysOfWeek>
<!--...-->
</daysOfWeek>
<!--...more "daysOfWeek" elements...-->
<months>...</months>
<months>
<!--...-->
</months>
<!--...more "months" elements...-->
<startDate>...</startDate>
<endDate>...</endDate>
<hourlyStep>...</hourlyStep>
<weekOfMonth>...</weekOfMonth>
<skipHolidays>...</skipHolidays>
<hourlyType>...</hourlyType>
<dailyType>...</dailyType>
<monthlyType>...</monthlyType>
<metadata>
<links />
</metadata>
</schedule>
<schedule>
<!--...-->
</schedule>
<!--...more "schedule" elements...-->
</schedules>
Example JSON
{
"schedule" : [ {
"target" : "...",
"subscriptionId" : "...",
"applicationName" : "...",
"tag" : "...",
"type" : "ONCE",
"executionTimes" : [ "...", ... ],
"daysOfMonth" : [ ..., ... ],
"daysOfWeek" : [ "SUNDAY", ... ],
"months" : [ "JANUARY", ... ],
"startDate" : "...",
"endDate" : "...",
"hourlyStep" : ...,
"weekOfMonth" : "FIRST",
"skipHolidays" : false,
"hourlyType" : "PERHOURS",
"dailyType" : "EVERYDAY",
"monthlyType" : "EXACT",
"metadata" : {
"links" : {
}
}
}, ... ]
}