core-lightning/doc/schemas/getroute.request.json
Christian Decker 241a891190 cln-rpc: Yet more RPC methods being mapped
- disconnect
 - feerates
 - getroute
 - listforwards
 - listpays
 - ping
 - signmessage
2022-04-02 09:46:01 +10:30

47 lines
779 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": [
"id",
"msatoshi",
"riskfactor"
],
"properties": {
"id": {
"type": "pubkey",
"description": ""
},
"msatoshi": {
"type": "msat",
"description": ""
},
"riskfactor": {
"type": "u64",
"description": ""
},
"cltv": {
"type": "number",
"description": ""
},
"fromid": {
"type": "pubkey",
"description": ""
},
"fuzzpercent": {
"type": "u32",
"description": ""
},
"exclude": {
"type": "array",
"description": "",
"items": {
"type": "string"
}
},
"maxhops": {
"type": "u32",
"description": ""
}
}
}