mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-12-29 10:04:41 +01:00
55 lines
932 B
JSON
55 lines
932 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"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"
|
||
|
}
|
||
|
}
|
||
|
}
|