rgb-cln/doc/schemas/withdraw.request.json

29 lines
465 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"destination"
],
"properties": {
"destination": {
"type": "string"
},
"satoshi": {
"type": "msat_or_all"
},
"feerate": {
"type": "feerate"
},
"minconf": {
"type": "u16"
},
"utxos": {
"type": "array",
"items": {
"type": "outpoint"
}
}
}
}