mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-01 03:24:41 +01:00
42 lines
1.1 KiB
JSON
42 lines
1.1 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": { }
|
||
|
}
|
||
|
}
|
||
|
}
|