Microsoft Graph · Schema

microsoft.graph.userExperienceAnalyticsAppHealthDevicePerformance

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphuserexperienceanalyticsapphealthdeviceperforma-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.userExperienceAnalyticsAppHealthDevicePerformance",
  "title": "microsoft.graph.userExperienceAnalyticsAppHealthDevicePerformance",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "userExperienceAnalyticsAppHealthDevicePerformance",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "appCrashCount": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "The number of application crashes for the device. Valid values 0 to 2147483647. Supports: $filter, $select, $OrderBy. Read-only. Valid values -2147483648 to 2147483647",
          "format": "int32"
        },
        "appHangCount": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "The number of application hangs for the device. Valid values 0 to 2147483647. Supports: $select, $OrderBy. Read-only. Valid values -2147483648 to 2147483647",
          "format": "int32"
        },
        "crashedAppCount": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "The number of distinct application crashes for the device. Valid values 0 to 2147483647. Supports: $select, $OrderBy. Read-only. Valid values -2147483648 to 2147483647",
          "format": "int32"
        },
        "deviceAppHealthScore": {
          "oneOf": [
            {
              "type": "number",
              "format": "double",
              "nullable": true
            },
            {
              "type": "string",
              "nullable": true
            },
            {
              "$ref": "#/components/schemas/ReferenceNumeric"
            }
          ],
          "description": "The application health score of the device. Valid values 0 to 100. Supports: $filter, $select, $OrderBy. Read-only. Valid values -1.79769313486232E+308 to 1.79769313486232E+308"
        },
        "deviceDisplayName": {
          "type": "string",
          "description": "The name of the device. Supports: $select, $OrderBy. Read-only.",
          "nullable": true
        },
        "deviceId": {
          "type": "string",
          "description": "The Intune device id of the device. Supports: $select, $OrderBy. Read-only.",
          "nullable": true
        },
        "deviceManufacturer": {
          "type": "string",
          "description": "The manufacturer name of the device. Supports: $select, $OrderBy. Read-only.",
          "nullable": true
        },
        "deviceModel": {
          "type": "string",
          "description": "The model name of the device. Supports: $select, $OrderBy. Read-only.",
          "nullable": true
        },
        "healthStatus": {
          "$ref": "#/components/schemas/microsoft.graph.userExperienceAnalyticsHealthState"
        },
        "meanTimeToFailureInMinutes": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "The mean time to failure for the application in minutes. Valid values 0 to 2147483647. Supports: $filter, $select, $OrderBy. Read-only. Valid values -2147483648 to 2147483647",
          "format": "int32"
        },
        "processedDateTime": {
          "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
          "type": "string",
          "description": "The date and time when the statistics were last computed. The value cannot be modified and is automatically populated when the statistics are computed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2022 would look like this: '2022-01-01T00:00:00Z'. Returned by default. Read-only.",
          "format": "date-time"
        },
        "@odata.type": {
          "type": "string"
        }
      },
      "description": "The user experience analytics device performance entity contains device performance details."
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.userExperienceAnalyticsAppHealthDevicePerformance"
}