Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Describes a credential that is already registered to a user. This information is used to prevent the user from registering the same authenticator multiple times. This complex type is the type for each item in the excludeCredentials collection of the webauthnPublicKeyCredentialCreationOptions resource.
Properties
| Property | Type | Description |
|---|---|---|
| id | String | The credential ID of the credential being described. This value is Base64URL-encoded without padding. |
| transports | String collection | A hint about the types of transport that the authenticator supports. Possible values include: usb, nfc, ble, internal. |
| type | String | The type of credential. Currently, the only supported value is public-key. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.webauthnPublicKeyCredentialDescriptor",
"type": "String",
"id": "String",
"transports": [
"String"
]
}