Microsoft Graph · Schema

requiredResourceAccess

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
resourceAccess array The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource.
resourceAppId string The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphrequiredresourceaccess-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.requiredResourceAccess",
  "title": "requiredResourceAccess",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "resourceAccess": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.resourceAccess"
      },
      "description": "The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource."
    },
    "resourceAppId": {
      "type": "string",
      "description": "The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}