Microsoft Graph · Schema

subjectRightsRequestStageDetail

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
error object Describes the error, if any, for the current stage.
stage object The stage of the subject rights request.
status object Status of the current stage. The possible values are: notStarted, current, completed, failed, unknownFutureValue.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsubjectrightsrequeststagedetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.subjectRightsRequestStageDetail",
  "title": "subjectRightsRequestStageDetail",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "error": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.publicError"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Describes the error, if any, for the current stage."
    },
    "stage": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.subjectRightsRequestStage"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The stage of the subject rights request."
    },
    "status": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.subjectRightsRequestStageStatus"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Status of the current stage. The possible values are: notStarted, current, completed, failed, unknownFutureValue."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}