webauthnPublicKeyCredentialDescriptor resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Properties describing an existing public key credential in a WebAuthn method. For more information, see Credential Descriptor.
Properties
Property | Type | Description |
---|---|---|
id | String | The unique identifier of the credential. |
transports | String collection | The transport method used by the WebAuthn authenticator to communicate with the client. For example, usb , nfc , ble . |
type | String | Type of public key credential. 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"
]
}