Microsoft Exchange · Schema

Mailbox

Represents a user's mailbox

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
id string The mailbox unique identifier
mailboxType string The type of mailbox
displayName string Display name of the mailbox
primarySmtpAddress string The primary SMTP address of the mailbox
totalItemCount integer Total number of items in the mailbox
totalItemSize integer Total size of all items in bytes
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-mailbox-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Mailbox",
  "title": "Mailbox",
  "type": "object",
  "description": "Represents a user's mailbox",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true,
      "description": "The mailbox unique identifier"
    },
    "mailboxType": {
      "type": "string",
      "enum": [
        "primary",
        "archive"
      ],
      "description": "The type of mailbox"
    },
    "displayName": {
      "type": "string",
      "description": "Display name of the mailbox"
    },
    "primarySmtpAddress": {
      "type": "string",
      "format": "email",
      "description": "The primary SMTP address of the mailbox"
    },
    "totalItemCount": {
      "type": "integer",
      "description": "Total number of items in the mailbox"
    },
    "totalItemSize": {
      "type": "integer",
      "description": "Total size of all items in bytes"
    }
  }
}