Microsoft Graph · Schema

patternedRecurrence

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
pattern object The frequency of an event. For access reviews: Do not specify this property for a one-time access review. Only interval, dayOfMonth, and type (weekly, absoluteMonthly) properties of recurrencePattern
range object The duration of an event.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphpatternedrecurrence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.patternedRecurrence",
  "title": "patternedRecurrence",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "pattern": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.recurrencePattern"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The frequency of an event.  For access reviews: Do not specify this property for a one-time access review.  Only interval, dayOfMonth, and type (weekly, absoluteMonthly) properties of recurrencePattern are supported."
    },
    "range": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.recurrenceRange"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The duration of an event."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}