Microsoft Graph · Schema

mimeContent

Contains properties for a generic mime content.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
type string Indicates the content mime type.
value string The byte array that contains the actual content.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphmimecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.mimeContent",
  "title": "mimeContent",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Indicates the content mime type.",
      "nullable": true
    },
    "value": {
      "type": "string",
      "description": "The byte array that contains the actual content.",
      "format": "base64url",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "description": "Contains properties for a generic mime content."
}