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>
56 lines
965 B
JSON
56 lines
965 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"route",
|
|
"payment_hash"
|
|
],
|
|
"properties": {
|
|
"route": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": [
|
|
"msatoshi",
|
|
"id",
|
|
"delay",
|
|
"channel"
|
|
],
|
|
"properties": {
|
|
"msatoshi": {
|
|
"type": "msat"
|
|
},
|
|
"id": {
|
|
"type": "pubkey"
|
|
},
|
|
"delay": {
|
|
"type": "u16"
|
|
},
|
|
"channel": {
|
|
"type": "short_channel_id"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"payment_hash": {
|
|
"type": "hex"
|
|
},
|
|
"label": {
|
|
"type": "string"
|
|
},
|
|
"msatoshi": {
|
|
"type": "msat"
|
|
},
|
|
"bolt11": {
|
|
"type": "string"
|
|
},
|
|
"payment_secret": {
|
|
"type": "hex"
|
|
},
|
|
"partid": {
|
|
"type": "u16"
|
|
}
|
|
}
|
|
}
|