mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-12-29 10:04:41 +01:00
57 lines
1.1 KiB
JSON
57 lines
1.1 KiB
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"required": [ "verified" ],
|
||
|
"additionalProperties": true,
|
||
|
"properties": {
|
||
|
"verified": {
|
||
|
"type": "boolean",
|
||
|
"description": "Whether the signature was valid"
|
||
|
}
|
||
|
},
|
||
|
"allOf": [
|
||
|
{
|
||
|
"if": {
|
||
|
"properties": {
|
||
|
"verified": {
|
||
|
"type": "boolean",
|
||
|
"enum": [ true ]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"then": {
|
||
|
"additionalProperties": false,
|
||
|
"required": [ "pubkey" ],
|
||
|
"properties": {
|
||
|
"verified": { },
|
||
|
"pubkey": {
|
||
|
"type": "pubkey",
|
||
|
"description": "the *pubkey* parameter, or the pubkey found by looking for known nodes"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"if": {
|
||
|
"properties": {
|
||
|
"verified": {
|
||
|
"type": "boolean",
|
||
|
"enum": [ false ]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"then": {
|
||
|
"additionalProperties": false,
|
||
|
"required": [ "pubkey" ],
|
||
|
"properties": {
|
||
|
"verified": { },
|
||
|
"pubkey": {
|
||
|
"type": "pubkey",
|
||
|
"description": "the *pubkey* (if any) which could have signed this; this is usually not useful!"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|