mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-01 03:24:41 +01:00
dc924b8859
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
35 lines
541 B
JSON
35 lines
541 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"bolt11"
|
|
],
|
|
"properties": {
|
|
"bolt11": {
|
|
"type": "string"
|
|
},
|
|
"msatoshi": {
|
|
"type": "msat"
|
|
},
|
|
"label": {
|
|
"type": "string"
|
|
},
|
|
"riskfactor": {
|
|
"type": "float"
|
|
},
|
|
"maxfeepercent": {
|
|
"type": "f32"
|
|
},
|
|
"retry_for": {
|
|
"type": "u16"
|
|
},
|
|
"maxdelay": {
|
|
"type": "u16"
|
|
},
|
|
"exemptfee": {
|
|
"type": "f32"
|
|
}
|
|
}
|
|
}
|