{ "$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" } } }