core-lightning/doc/schemas/signpsbt.request.json

22 lines
397 B
JSON
Raw Normal View History

2022-04-01 14:42:45 +10:30
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
2022-04-01 14:42:45 +10:30
"required": [
"psbt"
],
"properties": {
"psbt": {
"type": "string",
"description": "the psbt to be signed"
},
"signonly": {
"type": "array",
"description": "input numbers to sign",
"items": {
"type": "u32"
}
2022-04-01 14:42:45 +10:30
}
}
}