core-lightning/doc/schemas/withdraw.request.json
2022-04-02 09:46:01 +10:30

28 lines
425 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": [
"destination"
],
"properties": {
"destination": {
"type": "pubkey"
},
"satoshi": {
"type": "msat|all"
},
"feerate": {
"type": "feerate"
},
"minconf": {
"type": "u16"
},
"utxos": {
"type": "array",
"items": {
"type": "utxo"
}
}
}
}