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

29 lines
455 B
JSON
Raw Normal View History

2022-04-01 06:12:45 +02:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
2022-04-01 06:12:45 +02:00
"required": [
"outputs"
],
"properties": {
"outptus": {
"type": "array",
"items": {
"type": "OutputDesc"
}
},
"feerate": {
"type": "feerate"
},
"minconf": {
"type": "u32"
},
"utxos": {
"type": "array",
"items": {
"type": "utxo"
}
}
}
}