Polygon ID · Schema

CreateKeyRequest

IdentityVerifiable CredentialsZero-Knowledge ProofsSelf-Sovereign IdentityDecentralized IdentityBlockchainWeb3KYC

Properties

Name Type Description
keyType string
name string
View JSON Schema on GitHub

JSON Schema

create-key-request.json Raw ↑
{
  "type": "object",
  "required": [
    "keyType",
    "name"
  ],
  "properties": {
    "keyType": {
      "type": "string",
      "x-omitempty": false,
      "example": "babyjubJub",
      "enum": [
        "babyjubJub",
        "secp256k1",
        "ed25519"
      ]
    },
    "name": {
      "type": "string",
      "example": "my key"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreateKeyRequest"
}