core-lightning/doc/schemas/setpsbtversion.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
364 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"psbt",
"version"
],
"properties": {
"psbt": {
"type": "string",
"description": "the PSBT to change versions"
},
"version": {
"type": "u32",
"description": "the version to set"
}
}
}