{ "$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" } } }