Microsoft Graph · Schema

itemBody

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

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

JSON Schema

microsoft-graph-microsoftgraphitembody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.itemBody",
  "title": "itemBody",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "content": {
      "type": "string",
      "description": "The content of the item.",
      "nullable": true
    },
    "contentType": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.bodyType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The type of the content. Possible values are text and html."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}