Files
lightning/doc/schemas/sendpay.request.json
Rusty Russell b2148d0eab docs: handle "added": "version" and "deprecated": "version" from schemas.
This means we will document deprecations and additions, rather than just
pretending they've always been that way!

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2023-01-11 12:51:18 +10:30

65 lines
1.1 KiB
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": [
"amount_msat",
"id",
"delay",
"channel"
],
"properties": {
"amount_msat": {
"type": "msat"
},
"msatoshi": {
"deprecated": true
},
"id": {
"type": "pubkey"
},
"delay": {
"type": "u16"
},
"channel": {
"type": "short_channel_id"
}
}
}
},
"payment_hash": {
"type": "hash"
},
"label": {
"type": "string"
},
"amount_msat": {
"type": "msat"
},
"bolt11": {
"type": "string"
},
"payment_secret": {
"type": "secret"
},
"partid": {
"type": "u16"
},
"localinvreqid": {
"type": "hex"
},
"groupid": {
"type": "u64"
}
}
}