Microsoft Exchange · Schema

Attachment

A file or item attached to an event

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
@odata.type string
id string
name string
contentType string
size integer
isInline boolean
lastModifiedDateTime string
contentBytes string
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-attachment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Attachment",
  "title": "Attachment",
  "type": "object",
  "description": "A file or item attached to an event",
  "properties": {
    "@odata.type": {
      "type": "string"
    },
    "id": {
      "type": "string",
      "readOnly": true
    },
    "name": {
      "type": "string"
    },
    "contentType": {
      "type": "string"
    },
    "size": {
      "type": "integer",
      "readOnly": true
    },
    "isInline": {
      "type": "boolean"
    },
    "lastModifiedDateTime": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "contentBytes": {
      "type": "string",
      "format": "byte"
    }
  }
}