Microsoft Graph · Schema

deviceConfigurationSettingState

Device Configuration Setting State for a given device.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
currentValue string Current value of setting on device
errorCode number Error code for the setting
errorDescription string Error description
instanceDisplayName string Name of setting instance that is being reported.
setting string The setting that is being reported
settingName string Localized/user friendly setting name that is being reported
sources array Contributing policies
state object
userEmail string UserEmail
userId string UserId
userName string UserName
userPrincipalName string UserPrincipalName.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdeviceconfigurationsettingstate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.deviceConfigurationSettingState",
  "title": "deviceConfigurationSettingState",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "currentValue": {
      "type": "string",
      "description": "Current value of setting on device",
      "nullable": true
    },
    "errorCode": {
      "type": "number",
      "description": "Error code for the setting",
      "format": "int64"
    },
    "errorDescription": {
      "type": "string",
      "description": "Error description",
      "nullable": true
    },
    "instanceDisplayName": {
      "type": "string",
      "description": "Name of setting instance that is being reported.",
      "nullable": true
    },
    "setting": {
      "type": "string",
      "description": "The setting that is being reported",
      "nullable": true
    },
    "settingName": {
      "type": "string",
      "description": "Localized/user friendly setting name that is being reported",
      "nullable": true
    },
    "sources": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.settingSource"
      },
      "description": "Contributing policies"
    },
    "state": {
      "$ref": "#/components/schemas/microsoft.graph.complianceStatus"
    },
    "userEmail": {
      "type": "string",
      "description": "UserEmail",
      "nullable": true
    },
    "userId": {
      "type": "string",
      "description": "UserId",
      "nullable": true
    },
    "userName": {
      "type": "string",
      "description": "UserName",
      "nullable": true
    },
    "userPrincipalName": {
      "type": "string",
      "description": "UserPrincipalName.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "description": "Device Configuration Setting State for a given device."
}