A Windows Hello key credential
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/KeyCredential", "title": "KeyCredential", "type": "object", "description": "A Windows Hello key credential", "properties": { "accountId": { "type": "string", "description": "Account identifier" }, "publicKey": { "type": "string", "format": "byte", "description": "Base64-encoded public key (COSE format)" }, "status": { "type": "string", "enum": [ "Success", "UserCanceled", "NotFound", "UserPrefersPassword", "CredentialAlreadyExists" ], "description": "Credential operation status" }, "keyName": { "type": "string", "description": "Key name" } }, "required": [ "accountId", "status" ] }