Microsoft Graph · Schema

emailAddress

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
address string The email address of the person or entity.
name string The display name of the person or entity.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphemailaddress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.emailAddress",
  "title": "emailAddress",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "The email address of the person or entity.",
      "nullable": true
    },
    "name": {
      "type": "string",
      "description": "The display name of the person or entity.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}