Microsoft Graph · Schema

idleSessionSignOut

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isEnabled boolean Indicates whether the idle session sign-out policy is enabled.
signOutAfterInSeconds number Number of seconds of inactivity after which a user is signed out.
warnAfterInSeconds number Number of seconds of inactivity after which a user is notified that they'll be signed out.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphidlesessionsignout-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.idleSessionSignOut",
  "title": "idleSessionSignOut",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isEnabled": {
      "type": "boolean",
      "description": "Indicates whether the idle session sign-out policy is enabled.",
      "nullable": true
    },
    "signOutAfterInSeconds": {
      "type": "number",
      "description": "Number of seconds of inactivity after which a user is signed out.",
      "format": "int64",
      "nullable": true
    },
    "warnAfterInSeconds": {
      "type": "number",
      "description": "Number of seconds of inactivity after which a user is notified that they'll be signed out.",
      "format": "int64",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}