Microsoft Graph · Schema

retentionEventStatus

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
error object The error if the status isn't successful.
status object The status of the distribution. The possible values are: pending, error, success, notAvaliable.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecurityretentioneventstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.security.retentionEventStatus",
  "title": "retentionEventStatus",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "error": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.publicError"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The error if the status isn't successful."
    },
    "status": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.security.eventStatusType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The status of the distribution. The possible values are: pending, error, success, notAvaliable."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}