mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-04 04:54:47 +01:00
5d7203ed6b
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
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": { }
|
|
}
|
|
}
|
|
}
|