Microsoft Exchange · Schema

EmailAddress

The name and email address of a person

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
name string The display name
address string The email address
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-emailaddress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmailAddress",
  "title": "EmailAddress",
  "type": "object",
  "description": "The name and email address of a person",
  "properties": {
    "name": {
      "type": "string",
      "description": "The display name"
    },
    "address": {
      "type": "string",
      "format": "email",
      "description": "The email address"
    }
  }
}