Microsoft Graph · Schema

x509CertificateAuthenticationModeConfiguration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
rules array Rules are configured in addition to the authentication mode to bind a specific x509CertificateRuleType to an x509CertificateAuthenticationMode. For example, bind the policyOID with identifier 1.32.132
x509CertificateAuthenticationDefaultMode object The type of strong authentication mode. The possible values are: x509CertificateSingleFactor, x509CertificateMultiFactor, unknownFutureValue.
x509CertificateDefaultRequiredAffinityLevel object
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphx509certificateauthenticationmodeconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.x509CertificateAuthenticationModeConfiguration",
  "title": "x509CertificateAuthenticationModeConfiguration",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "rules": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.x509CertificateRule"
      },
      "description": "Rules are configured in addition to the authentication mode to bind a specific x509CertificateRuleType to an x509CertificateAuthenticationMode. For example, bind the policyOID with identifier 1.32.132.343 to x509CertificateMultiFactor authentication mode."
    },
    "x509CertificateAuthenticationDefaultMode": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.x509CertificateAuthenticationMode"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The type of strong authentication mode. The possible values are: x509CertificateSingleFactor, x509CertificateMultiFactor, unknownFutureValue."
    },
    "x509CertificateDefaultRequiredAffinityLevel": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.x509CertificateAffinityLevel"
        },
        {
          "type": "object",
          "nullable": true
        }
      ]
    },
    "@odata.type": {
      "type": "string"
    }
  }
}