mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 14:42:40 +01:00
Some rpc commands did not have their corresponding *.request.json files to generate the consolidated json
19 lines
548 B
JSON
19 lines
548 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"channel_id",
|
|
"signed_psbt"
|
|
],
|
|
"properties": {
|
|
"channel_id": {
|
|
"type": "hash",
|
|
"description": "id of the channel"
|
|
},
|
|
"signed_psbt": {
|
|
"type": "string",
|
|
"description": "the PSBT returned from `openchannel_update` (where *commitments_secured* was true) with partial signatures or finalized witness stacks included for every input that we contributed to the PSBT"
|
|
}
|
|
}
|
|
}
|