Microsoft Graph · Schema

deviceMetadata

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
deviceType string Optional. The general type of the device (for example, 'Managed', 'Unmanaged').
ipAddress string The Internet Protocol (IP) address of the device.
operatingSystemSpecifications object Details about the operating system platform and version.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdevicemetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.deviceMetadata",
  "title": "deviceMetadata",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "deviceType": {
      "type": "string",
      "description": "Optional. The general type of the device (for example, 'Managed', 'Unmanaged').",
      "nullable": true
    },
    "ipAddress": {
      "type": "string",
      "description": "The Internet Protocol (IP) address of the device.",
      "nullable": true
    },
    "operatingSystemSpecifications": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.operatingSystemSpecifications"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Details about the operating system platform and version."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}