Microsoft Graph · Schema

deviceEnrollmentPlatformRestriction

Platform specific enrollment restrictions

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
osMaximumVersion string Max OS version supported
osMinimumVersion string Min OS version supported
personalDeviceEnrollmentBlocked boolean Block personally owned devices from enrolling
platformBlocked boolean Block the platform from enrolling
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdeviceenrollmentplatformrestriction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.deviceEnrollmentPlatformRestriction",
  "title": "deviceEnrollmentPlatformRestriction",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "osMaximumVersion": {
      "type": "string",
      "description": "Max OS version supported",
      "nullable": true
    },
    "osMinimumVersion": {
      "type": "string",
      "description": "Min OS version supported",
      "nullable": true
    },
    "personalDeviceEnrollmentBlocked": {
      "type": "boolean",
      "description": "Block personally owned devices from enrolling"
    },
    "platformBlocked": {
      "type": "boolean",
      "description": "Block the platform from enrolling"
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "description": "Platform specific enrollment restrictions"
}