Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 2.42 KB

File metadata and controls

48 lines (37 loc) · 2.42 KB
title plannerRecurrenceSchedule resource type
description Represents the schedule for recurrence of a Planner task in Microsoft 365.
author DaMoksha
ms.localizationpriority medium
ms.subservice planner
doc_type resourcePageType
ms.date 07/22/2024

plannerRecurrenceSchedule resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents the schedule for recurrence of a Planner task in Microsoft 365. Currently, plannerRecurrenceSchedule includes a recurrence pattern definition (pattern), a start date for that pattern (patternStartDateTime), and a system-generated property that indicates the next occurrence date (nextOccurrenceDateTime). To define a recurrence schedule, clients must specify the pattern and patternStartDateTime; the service calculates the nextOccurrenceDateTime.

For more details, see Configuring task recurrence in Planner.

Properties

Property Type Description
nextOccurrenceDateTime DateTimeOffset The next date for this schedule. When a new task is instantiated to continue the recurrence series, this date is used for the dueDateTime of the new plannerTask. Auto-generated by the service. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
pattern recurrencePattern The pattern for recurrence. Required.
patternStartDateTime DateTimeOffset The start date for the recurrence pattern. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Required.

Relationships

None.

JSON representation

The following JSON representation shows the resource type. For real-looking examples that include this resource, see Configuring task recurrence in Planner.

{
  "@odata.type": "#microsoft.graph.plannerRecurrenceSchedule",
  "nextOccurrenceDateTime": "String (timestamp)",
  "pattern": { "@odata.type": "#microsoft.graph.recurrencePattern" },
  "patternStartDateTime": "String (timestamp)"
}