{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ConnectionPasskeyOptions",
"title": "ConnectionPasskeyOptions",
"type": [
"object",
"null"
],
"description": "Options for the passkey authentication method",
"additionalProperties": false,
"properties": {
"challenge_ui": {
"$ref": "#/components/schemas/ConnectionPasskeyChallengeUIEnum"
},
"progressive_enrollment_enabled": {
"type": "boolean",
"description": "Enables or disables progressive enrollment of passkeys for the connection."
},
"local_enrollment_enabled": {
"type": "boolean",
"description": "Enables or disables enrollment prompt for local passkey when user authenticates using a cross-device passkey for the connection."
}
}
}