Microsoft Graph · Schema

recommendedAction

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
actionWebUrl string Web URL to the recommended action.
potentialScoreImpact object Potential improvement in the tenant security score from the recommended action.
title string Title of the recommended action.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphrecommendedaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.recommendedAction",
  "title": "recommendedAction",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "actionWebUrl": {
      "type": "string",
      "description": "Web URL to the recommended action.",
      "nullable": true
    },
    "potentialScoreImpact": {
      "oneOf": [
        {
          "type": "number",
          "format": "double",
          "nullable": true
        },
        {
          "type": "string",
          "nullable": true
        },
        {
          "$ref": "#/components/schemas/ReferenceNumeric"
        }
      ],
      "description": "Potential improvement in the tenant security score from the recommended action."
    },
    "title": {
      "type": "string",
      "description": "Title of the recommended action.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}