Microsoft Intune · Schema

deviceComplianceScheduledActionForRule

Scheduled action for a compliance rule.

App ProtectionAzureComplianceDevice ConfigurationEndpoint ManagementEnrollmentMAMMDMMicrosoft GraphMobile Application ManagementMobile Device ManagementSecurity

Properties

Name Type Description
@odata.type string
id string Key of the entity.
ruleName string Name of the rule which this scheduled action applies to.
scheduledActionConfigurations array The list of scheduled action configurations for this compliance policy.
View JSON Schema on GitHub

JSON Schema

microsoft-intune-devicecompliancescheduledactionforrule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/deviceComplianceScheduledActionForRule",
  "title": "deviceComplianceScheduledActionForRule",
  "type": "object",
  "description": "Scheduled action for a compliance rule.",
  "properties": {
    "@odata.type": {
      "type": "string",
      "default": "#microsoft.graph.deviceComplianceScheduledActionForRule"
    },
    "id": {
      "type": "string",
      "description": "Key of the entity."
    },
    "ruleName": {
      "type": "string",
      "description": "Name of the rule which this scheduled action applies to."
    },
    "scheduledActionConfigurations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/deviceComplianceActionItem"
      },
      "description": "The list of scheduled action configurations for this compliance policy."
    }
  }
}