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

32 lines
494 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": [
"destination",
"msatoshi"
],
"properties": {
"destination": {
"type": "pubkey"
},
"msatoshi": {
"type": "msat"
},
"label": {
"type": "string"
},
"maxfeepercent": {
"type": "float"
},
"retry_for": {
"type": "number"
},
"maxdelay": {
"type": "number"
},
"exemptfee": {
"type": "msat"
}
}
}