SignRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
accountId string Account identifier for the credential
challenge string Base64-encoded challenge buffer to sign
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-signrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SignRequest",
  "title": "SignRequest",
  "type": "object",
  "properties": {
    "accountId": {
      "type": "string",
      "description": "Account identifier for the credential"
    },
    "challenge": {
      "type": "string",
      "format": "byte",
      "description": "Base64-encoded challenge buffer to sign"
    }
  },
  "required": [
    "accountId",
    "challenge"
  ]
}