Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

PublicKeyResponse

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PublicKeyResponse",
  "type": "array",
  "items": {
    "$ref": "#/$defs/PublicKeyResponseData"
  },
  "$defs": {
    "PublicKeyResponseData": {
      "type": "object",
      "properties": {
        "alg": {
          "$ref": "#/$defs/SignatureAlgorithm"
        },
        "pem": {
          "type": "string"
        }
      },
      "required": [
        "pem",
        "alg"
      ]
    },
    "SignatureAlgorithm": {
      "type": "string",
      "enum": [
        "Ed25519"
      ]
    }
  }
}