mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-12-29 10:04:41 +01:00
32 lines
494 B
JSON
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"
|
|
}
|
|
}
|
|
}
|