{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.authenticationMethodConfiguration", "title": "microsoft.graph.authenticationMethodConfiguration", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "authenticationMethodConfiguration", "required": [ "@odata.type" ], "type": "object", "properties": { "excludeTargets": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.excludeTarget" }, "description": "Groups of users that are excluded from a policy." }, "state": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.authenticationMethodState" }, { "type": "object", "nullable": true } ], "description": "The state of the policy. The possible values are: enabled, disabled." }, "@odata.type": { "type": "string" } }, "discriminator": { "propertyName": "@odata.type", "mapping": { "#microsoft.graph.emailAuthenticationMethodConfiguration": "#/components/schemas/microsoft.graph.emailAuthenticationMethodConfiguration", "#microsoft.graph.fido2AuthenticationMethodConfiguration": "#/components/schemas/microsoft.graph.fido2AuthenticationMethodConfiguration", "#microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration": "#/components/schemas/microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration", "#microsoft.graph.smsAuthenticationMethodConfiguration": "#/components/schemas/microsoft.graph.smsAuthenticationMethodConfiguration", "#microsoft.graph.softwareOathAuthenticationMethodConfiguration": "#/components/schemas/microsoft.graph.softwareOathAuthenticationMethodConfiguration", "#microsoft.graph.temporaryAccessPassAuthenticationMethodConfiguration": "#/components/schemas/microsoft.graph.temporaryAccessPassAuthenticationMethodConfiguration", "#microsoft.graph.voiceAuthenticationMethodConfiguration": "#/components/schemas/microsoft.graph.voiceAuthenticationMethodConfiguration", "#microsoft.graph.x509CertificateAuthenticationMethodConfiguration": "#/components/schemas/microsoft.graph.x509CertificateAuthenticationMethodConfiguration" } } } ] }