Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PublicKeyCredentialUserEntityJSON

Represents user account information in JSON format for WebAuthn registration. Contains identifiers and display information for the user being registered.

interface PublicKeyCredentialUserEntityJSON {
displayName: string;
id: string;
name: string;
}

§Properties

§
displayName: string
[src]

A human-friendly display name for the user (e.g., "John Doe").

§
id: string
[src]

A unique identifier for the user account (base64url encoded). Maximum 64 bytes. Should not contain PII.

§
name: string
[src]

A human-readable identifier for the account (e.g., email, username).