mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 22:45:27 +01:00
32 lines
535 B
JSON
32 lines
535 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"added": "v23.08",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"subsystem",
|
|
"indexname",
|
|
"nextvalue"
|
|
],
|
|
"properties": {
|
|
"subsystem": {
|
|
"type": "string",
|
|
"enum": [
|
|
"invoices",
|
|
"forwards",
|
|
"sendpays"
|
|
]
|
|
},
|
|
"indexname": {
|
|
"type": "string",
|
|
"enum": [
|
|
"created",
|
|
"updated",
|
|
"deleted"
|
|
]
|
|
},
|
|
"nextvalue": {
|
|
"type": "u64"
|
|
}
|
|
}
|
|
}
|