CreateCredentialRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
accountId string Unique account identifier
keyCreationOption string
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-createcredentialrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateCredentialRequest",
  "title": "CreateCredentialRequest",
  "type": "object",
  "properties": {
    "accountId": {
      "type": "string",
      "description": "Unique account identifier"
    },
    "keyCreationOption": {
      "type": "string",
      "enum": [
        "ReplaceExisting",
        "FailIfExists"
      ],
      "default": "ReplaceExisting"
    }
  },
  "required": [
    "accountId"
  ]
}