Microsoft Graph · Schema

implicitGrantSettings

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
enableAccessTokenIssuance boolean Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow.
enableIdTokenIssuance boolean Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphimplicitgrantsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.implicitGrantSettings",
  "title": "implicitGrantSettings",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "enableAccessTokenIssuance": {
      "type": "boolean",
      "description": "Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow.",
      "nullable": true
    },
    "enableIdTokenIssuance": {
      "type": "boolean",
      "description": "Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}