mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-10 00:09:04 +01:00
33 lines
535 B
JSON
33 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"
|
||
|
}
|
||
|
}
|
||
|
}
|