Microsoft Outlook · Schema

EmailAddress

Represents an email address entity.

CalendarContactsEmailEnterpriseMicrosoftOffice 365Productivity

Properties

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

JSON Schema

microsoft-graph-mail-email-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EmailAddress",
  "type": "object",
  "description": "Represents an email address entity.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The display name of the person or entity."
    },
    "address": {
      "type": "string",
      "description": "The email address of the person or entity."
    }
  }
}