Microsoft Graph · Schema

image

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
height number Optional. Height of the image, in pixels. Read-only.
width number Optional. Width of the image, in pixels. Read-only.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphimage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.image",
  "title": "image",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "height": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Optional. Height of the image, in pixels. Read-only.",
      "format": "int32",
      "nullable": true
    },
    "width": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Optional. Width of the image, in pixels. Read-only.",
      "format": "int32",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}