Microsoft Graph · Schema

account

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
actions array List of the type of action. The possible values are: disable, enable, forcePasswordReset, revokeAllSessions, requireUserToSignInAgain, markUserAsCompromised, unknownFutureValue.
identifier string The account ID.
identityProvider object
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecurityaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.security.account",
  "title": "account",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "actions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.security.action"
      },
      "description": "List of the type of action. The possible values are: disable, enable, forcePasswordReset, revokeAllSessions, requireUserToSignInAgain, markUserAsCompromised, unknownFutureValue."
    },
    "identifier": {
      "type": "string",
      "description": "The account ID."
    },
    "identityProvider": {
      "$ref": "#/components/schemas/microsoft.graph.security.identityProvider"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}