Microsoft Graph · Schema

conditionalAccessPolicyDetail

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
conditions object
grantControls object Represents grant controls that must be fulfilled for the policy.
sessionControls object Represents a complex type of session controls that is enforced after sign-in.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphconditionalaccesspolicydetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.conditionalAccessPolicyDetail",
  "title": "conditionalAccessPolicyDetail",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "conditions": {
      "$ref": "#/components/schemas/microsoft.graph.conditionalAccessConditionSet"
    },
    "grantControls": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.conditionalAccessGrantControls"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Represents grant controls that must be fulfilled for the policy."
    },
    "sessionControls": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.conditionalAccessSessionControls"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Represents a complex type of session controls that is enforced after sign-in."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}