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"
]
}
}
}