Microsoft Graph · Schema

microsoft.graph.iosUpdateConfiguration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphiosupdateconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.iosUpdateConfiguration",
  "title": "microsoft.graph.iosUpdateConfiguration",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.deviceConfiguration"
    },
    {
      "title": "iosUpdateConfiguration",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "activeHoursEnd": {
          "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$",
          "type": "string",
          "description": "Active Hours End (active hours mean the time window when updates install should not happen)",
          "format": "time"
        },
        "activeHoursStart": {
          "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$",
          "type": "string",
          "description": "Active Hours Start (active hours mean the time window when updates install should not happen)",
          "format": "time"
        },
        "scheduledInstallDays": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.dayOfWeek"
          },
          "description": "Days in week for which active hours are configured. This collection can contain a maximum of 7 elements."
        },
        "utcTimeOffsetInMinutes": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "UTC Time Offset indicated in minutes",
          "format": "int32",
          "nullable": true
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.iosUpdateConfiguration"
        }
      },
      "description": "IOS Update Configuration, allows you to configure time window within week to install iOS updates"
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.iosUpdateConfiguration"
}