2021-06-16 03:10:17 +02:00
|
|
|
{
|
2021-11-04 15:15:51 +01:00
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
"type": "object",
|
|
|
|
"required": [
|
2022-07-12 11:55:02 +02:00
|
|
|
"verified",
|
|
|
|
"pubkey"
|
2021-11-04 15:15:51 +01:00
|
|
|
],
|
2022-07-12 11:55:02 +02:00
|
|
|
"additionalProperties": false,
|
2021-11-04 15:15:51 +01:00
|
|
|
"properties": {
|
|
|
|
"verified": {
|
|
|
|
"type": "boolean",
|
2022-07-12 11:55:02 +02:00
|
|
|
"enum": [
|
|
|
|
true
|
|
|
|
],
|
|
|
|
"description": "whether the signature was valid"
|
2021-06-16 03:10:17 +02:00
|
|
|
},
|
2022-07-12 11:55:02 +02:00
|
|
|
"pubkey": {
|
|
|
|
"type": "pubkey",
|
|
|
|
"description": "the *pubkey* parameter, or the pubkey found by looking for known nodes"
|
2021-11-04 15:15:51 +01:00
|
|
|
}
|
2022-07-12 11:55:02 +02:00
|
|
|
}
|
2021-06-16 03:10:17 +02:00
|
|
|
}
|