mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-23 06:55:13 +01:00
22 lines
357 B
JSON
22 lines
357 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"required": [],
|
||
|
"properties": {
|
||
|
"in_channel": {
|
||
|
"type": "short_channel_id"
|
||
|
},
|
||
|
"in_htlc_id": {
|
||
|
"type": "u64"
|
||
|
},
|
||
|
"status": {
|
||
|
"type": "string",
|
||
|
"enum": [
|
||
|
"settled",
|
||
|
"local_failed",
|
||
|
"failed"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|