mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
bd3c0ef85c
Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
54 lines
1.0 KiB
JSON
54 lines
1.0 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"required": [
|
|
"type"
|
|
],
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"mutual",
|
|
"unilateral",
|
|
"unopened"
|
|
],
|
|
"description": "Whether we successfully negotiated a mutual close, closed without them, or discarded not-yet-opened channel"
|
|
}
|
|
},
|
|
"if": {
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"mutual",
|
|
"unilateral"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"then": {
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"tx",
|
|
"txid"
|
|
],
|
|
"properties": {
|
|
"type": {},
|
|
"tx": {
|
|
"type": "hex",
|
|
"description": "the raw bitcoin transaction used to close the channel (if it was open)"
|
|
},
|
|
"txid": {
|
|
"type": "txid",
|
|
"description": "the transaction id of the *tx* field"
|
|
}
|
|
}
|
|
},
|
|
"else": {
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"type": {}
|
|
}
|
|
}
|
|
}
|