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

32 lines
494 B
JSON

{
"$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"
}
}
}