Microsoft Graph · Schema

deviceManagementSettings

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
deviceComplianceCheckinThresholdDays number The number of days a device is allowed to go without checking in to remain compliant.
isScheduledActionEnabled boolean Is feature enabled or not for scheduled action for rule.
secureByDefault boolean Device should be noncompliant when there is no compliance policy targeted when this is true
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdevicemanagementsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.deviceManagementSettings",
  "title": "deviceManagementSettings",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "deviceComplianceCheckinThresholdDays": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The number of days a device is allowed to go without checking in to remain compliant.",
      "format": "int32"
    },
    "isScheduledActionEnabled": {
      "type": "boolean",
      "description": "Is feature enabled or not for scheduled action for rule."
    },
    "secureByDefault": {
      "type": "boolean",
      "description": "Device should be noncompliant when there is no compliance policy targeted when this is true"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}