mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
29 lines
587 B
JSON
29 lines
587 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"added": "v23.02",
|
|
"required": [
|
|
"destination",
|
|
"payment_hash",
|
|
"amount_msat"
|
|
],
|
|
"properties": {
|
|
"destination": {
|
|
"type": "pubkey",
|
|
"added": "v23.02"
|
|
},
|
|
"payment_hash": {
|
|
"type": "hex",
|
|
"added": "v23.02",
|
|
"description": "the hash of the *payment_preimage* which will prove payment",
|
|
"maxLength": 64,
|
|
"minLength": 64
|
|
},
|
|
"amount_msat": {
|
|
"type": "msat",
|
|
"added": "v23.02"
|
|
}
|
|
}
|
|
}
|