mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 10:39:49 +01:00
7ae616ef60
Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
23 lines
468 B
JSON
23 lines
468 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"required": [
|
|
"verified",
|
|
"pubkey"
|
|
],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"verified": {
|
|
"type": "boolean",
|
|
"enum": [
|
|
true
|
|
],
|
|
"description": "whether the signature was valid"
|
|
},
|
|
"pubkey": {
|
|
"type": "pubkey",
|
|
"description": "the *pubkey* parameter, or the pubkey found by looking for known nodes"
|
|
}
|
|
}
|
|
}
|