Microsoft Exchange · Schema

ItemBody

Represents the body content of an event

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
contentType string The type of the content
content string The content of the item body
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-itembody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItemBody",
  "title": "ItemBody",
  "type": "object",
  "description": "Represents the body content of an event",
  "properties": {
    "contentType": {
      "type": "string",
      "enum": [
        "text",
        "html"
      ],
      "description": "The type of the content"
    },
    "content": {
      "type": "string",
      "description": "The content of the item body"
    }
  }
}