SignResult

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
status string Sign operation status
signature string Base64-encoded signed data
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-signresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SignResult",
  "title": "SignResult",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "Success",
        "UserCanceled",
        "NotFound",
        "UserPrefersPassword"
      ],
      "description": "Sign operation status"
    },
    "signature": {
      "type": "string",
      "format": "byte",
      "description": "Base64-encoded signed data"
    }
  }
}