Microsoft Graph · Schema

microsoft.graph.authenticationMethodsPolicy

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphauthenticationmethodspolicy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.authenticationMethodsPolicy",
  "title": "microsoft.graph.authenticationMethodsPolicy",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "authenticationMethodsPolicy",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "description": {
          "type": "string",
          "description": "A description of the policy. Read-only.",
          "nullable": true
        },
        "displayName": {
          "type": "string",
          "description": "The name of the policy. Read-only.",
          "nullable": true
        },
        "lastModifiedDateTime": {
          "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
          "type": "string",
          "description": "The date and time of the last update to the policy. Read-only.",
          "format": "date-time",
          "nullable": true
        },
        "policyMigrationState": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.authenticationMethodsPolicyMigrationState"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The state of migration of the authentication methods policy from the legacy multifactor authentication and self-service password reset (SSPR) policies. The possible values are: premigration - means the authentication methods policy is used for authentication only, legacy policies are respected. migrationInProgress - means the authentication methods policy is used for both authentication and SSPR, legacy policies are respected. migrationComplete - means the authentication methods policy is used for authentication and SSPR, legacy policies are ignored. unknownFutureValue - Evolvable enumeration sentinel value. Do not use."
        },
        "policyVersion": {
          "type": "string",
          "description": "The version of the policy in use. Read-only.",
          "nullable": true
        },
        "reconfirmationInDays": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "format": "int32",
          "nullable": true
        },
        "registrationEnforcement": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.registrationEnforcement"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Enforce registration at sign-in time. This property can be used to remind users to set up targeted authentication methods."
        },
        "authenticationMethodConfigurations": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.authenticationMethodConfiguration"
          },
          "description": "Represents the settings for each authentication method. Automatically expanded on GET /policies/authenticationMethodsPolicy.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.authenticationMethodsPolicy"
}