mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 14:42:40 +01:00
41 lines
716 B
JSON
41 lines
716 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"required": [],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"bolt11": {
|
|
"type": "string"
|
|
},
|
|
"payment_hash": {
|
|
"type": "hash"
|
|
},
|
|
"status": {
|
|
"type": "string",
|
|
"enum": [
|
|
"pending",
|
|
"complete",
|
|
"failed"
|
|
]
|
|
},
|
|
"index": {
|
|
"type": "string",
|
|
"added": "v23.11",
|
|
"enum": [
|
|
"created",
|
|
"updated"
|
|
],
|
|
"description": ""
|
|
},
|
|
"start": {
|
|
"type": "u64",
|
|
"added": "v23.11",
|
|
"description": ""
|
|
},
|
|
"limit": {
|
|
"type": "u32",
|
|
"added": "v23.11",
|
|
"description": ""
|
|
}
|
|
}
|
|
}
|