core-lightning/doc/schemas/openchannel_update.request.json
ShahanaFarooqui e8c8c8887b doc: Adding missing *.request.json
Some rpc commands did not have their corresponding *.request.json files to generate the consolidated json
2024-03-19 14:58:59 +10:30

19 lines
475 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"channel_id",
"psbt"
],
"properties": {
"channel_id": {
"type": "hash",
"description": "id of the channel"
},
"psbt": {
"type": "string",
"description": "updated PSBT to be sent to the peer. May be identical to the PSBT last returned by either `openchannel_init` or `openchannel_update`"
}
}
}