Microsoft Graph · Schema

subjectRightsRequestDetail

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
excludedItemCount number Count of items that are excluded from the request.
insightCounts array Count of items per insight.
itemCount number Count of items found.
itemNeedReview number Count of item that need review.
productItemCounts array Count of items per product, such as Exchange, SharePoint, OneDrive, and Teams.
signedOffItemCount number Count of items signed off by the administrator.
totalItemSize number Total item size in bytes.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsubjectrightsrequestdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.subjectRightsRequestDetail",
  "title": "subjectRightsRequestDetail",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "excludedItemCount": {
      "type": "number",
      "description": "Count of items that are excluded from the request.",
      "format": "int64",
      "nullable": true
    },
    "insightCounts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.keyValuePair"
      },
      "description": "Count of items per insight."
    },
    "itemCount": {
      "type": "number",
      "description": "Count of items found.",
      "format": "int64",
      "nullable": true
    },
    "itemNeedReview": {
      "type": "number",
      "description": "Count of item that need review.",
      "format": "int64",
      "nullable": true
    },
    "productItemCounts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.keyValuePair"
      },
      "description": "Count of items per product, such as Exchange, SharePoint, OneDrive, and Teams."
    },
    "signedOffItemCount": {
      "type": "number",
      "description": "Count of items signed off by the administrator.",
      "format": "int64",
      "nullable": true
    },
    "totalItemSize": {
      "type": "number",
      "description": "Total item size in bytes.",
      "format": "int64",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}