core-lightning/doc/schemas/delforward.request.json

22 lines
357 B
JSON
Raw Normal View History

{
"$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"
]
}
}
}