Microsoft Graph · Schema

resourceAction

Set of allowed and not allowed actions for a resource.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
allowedResourceActions array Allowed Actions
notAllowedResourceActions array Not Allowed Actions.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphresourceaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.resourceAction",
  "title": "resourceAction",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "allowedResourceActions": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "Allowed Actions"
    },
    "notAllowedResourceActions": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "Not Allowed Actions."
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "description": "Set of allowed and not allowed actions for a resource."
}