Microsoft Outlook · Schema

ItemBody

Represents the body content of a message.

CalendarContactsEmailEnterpriseMicrosoftOffice 365Productivity

Properties

Name Type Description
contentType string The type of the content. Possible values are text and html.
content string The content of the item body.
View JSON Schema on GitHub

JSON Schema

microsoft-graph-mail-item-body-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ItemBody",
  "type": "object",
  "description": "Represents the body content of a message.",
  "properties": {
    "contentType": {
      "type": "string",
      "description": "The type of the content. Possible values are text and html."
    },
    "content": {
      "type": "string",
      "description": "The content of the item body."
    }
  }
}