mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-23 15:00:34 +01:00
31 lines
562 B
JSON
31 lines
562 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"payment_hash",
|
||
|
"status"
|
||
|
],
|
||
|
"additionalProperties": false,
|
||
|
"properties": {
|
||
|
"payment_hash": {
|
||
|
"type": "hex",
|
||
|
"description": "the hash of the *payment_preimage* which will prove payment",
|
||
|
"maxLength": 64,
|
||
|
"minLength": 64
|
||
|
},
|
||
|
"status": {
|
||
|
"type": "string",
|
||
|
"enum": [
|
||
|
"complete",
|
||
|
"failed"
|
||
|
]
|
||
|
},
|
||
|
"partid": {
|
||
|
"type": "u64"
|
||
|
},
|
||
|
"groupid": {
|
||
|
"type": "u64"
|
||
|
}
|
||
|
}
|
||
|
}
|