Microsoft Graph · Schema

payloadDetail

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
coachmarks array
content string Payload content details.
phishingUrl string The phishing URL used to target a user.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphpayloaddetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.payloadDetail",
  "title": "payloadDetail",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "coachmarks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.payloadCoachmark"
      }
    },
    "content": {
      "type": "string",
      "description": "Payload content details.",
      "nullable": true
    },
    "phishingUrl": {
      "type": "string",
      "description": "The phishing URL used to target a user.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "discriminator": {
    "propertyName": "@odata.type",
    "mapping": {
      "#microsoft.graph.emailPayloadDetail": "#/components/schemas/microsoft.graph.emailPayloadDetail"
    }
  }
}