mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
24 lines
519 B
JSON
24 lines
519 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"required": [
|
||
|
"message",
|
||
|
"zbase"
|
||
|
],
|
||
|
"properties": {
|
||
|
"message": {
|
||
|
"type": "string",
|
||
|
"description": "Message to be checked against the signature."
|
||
|
},
|
||
|
"zbase": {
|
||
|
"type": "string",
|
||
|
"description": "The Zbase32 encoded signature to verify."
|
||
|
},
|
||
|
"pubkey": {
|
||
|
"type": "pubkey",
|
||
|
"description": "The Zbase32 encoded signature to verify."
|
||
|
}
|
||
|
}
|
||
|
}
|