Microsoft Graph · Schema

fido2KeyRestrictions

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
aaGuids array A collection of Authenticator Attestation GUIDs. AADGUIDs define key types and manufacturers.
enforcementType object Enforcement type. The possible values are: allow, block.
isEnforced boolean Determines if the configured key enforcement is enabled.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphfido2keyrestrictions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.fido2KeyRestrictions",
  "title": "fido2KeyRestrictions",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "aaGuids": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "A collection of Authenticator Attestation GUIDs. AADGUIDs define key types and manufacturers."
    },
    "enforcementType": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.fido2RestrictionEnforcementType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Enforcement type. The possible values are: allow, block."
    },
    "isEnforced": {
      "type": "boolean",
      "description": "Determines if the configured key enforcement is enabled.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}