Microsoft Exchange · Schema
RecurrenceRange
The duration of a recurrence
CalendarCollaborationContactsEmailEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| type | string | |
| startDate | string | The start date of the recurring series |
| endDate | string | The end date of the recurring series |
| recurrenceTimeZone | string | Time zone for the start and end dates |
| numberOfOccurrences | integer | Number of times to repeat the event |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RecurrenceRange",
"title": "RecurrenceRange",
"type": "object",
"description": "The duration of a recurrence",
"properties": {
"type": {
"type": "string",
"enum": [
"endDate",
"noEnd",
"numbered"
]
},
"startDate": {
"type": "string",
"format": "date",
"description": "The start date of the recurring series"
},
"endDate": {
"type": "string",
"format": "date",
"description": "The end date of the recurring series"
},
"recurrenceTimeZone": {
"type": "string",
"description": "Time zone for the start and end dates"
},
"numberOfOccurrences": {
"type": "integer",
"description": "Number of times to repeat the event"
}
}
}